/* ========================================================================
   LGPD COMPLIANCE PAGE
   All classes prefixed with lgpd- to avoid collisions.
   Font: Quicksand only.
   Aesthetic: Institutional authority meets modern tech — trustworthy,
   clean, authoritative. Left-border accents for legal gravitas.
   ======================================================================== */

:root {
    --lgpd-font: 'Quicksand', sans-serif;
    --lgpd-dark: #0f172a;
    --lgpd-dark-lighter: #1e293b;
    --lgpd-light-blue: #dbeafe;
    --lgpd-surface: #f6f7fc;
    --lgpd-white: #ffffff;
    --lgpd-ink: #1e1e2f;
    --lgpd-muted: #94a3b8;
    --lgpd-accent: #6366f1;
    --lgpd-accent-light: #818cf8;
    --lgpd-accent-deep: #4f46e5;
    --lgpd-border-accent: rgba(99, 102, 241, 0.25);
    --lgpd-icon-bg: rgba(99, 102, 241, 0.08);
    --lgpd-icon-bg-dark: rgba(129, 140, 248, 0.12);
}

body {
    background: var(--lgpd-dark);
}

.header-nav-link,
.mobile-menu-btn {
    color: #ffffff;
}

.mobile-nav {
    background: var(--lgpd-dark);
}

.mobile-nav-link {
    color: rgba(255, 255, 255, 0.7);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
    color: #ffffff;
}


/* GRADIENT TEXT */

.lgpd-gradient-text {
    background: linear-gradient(135deg, var(--lgpd-accent-light), var(--lgpd-accent-deep), #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ========================================================================
   HERO SECTION
   ======================================================================== */

.lgpd-hero {
    background: linear-gradient(135deg, var(--lgpd-dark) 0%, #1a1a3e 50%, var(--lgpd-dark) 100%);
    padding: 100px 25px 50px 25px;
    text-align: center;
    font-family: var(--lgpd-font);
    position: relative;
    overflow: hidden;
}

.lgpd-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.lgpd-hero .lgpd-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.lgpd-hero .lgpd-hero__inner .lgpd-hero__badge {
    display: inline-block;
    padding: 6px 25px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    border-radius: 50px;
    color: var(--lgpd-accent-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: rgba(99, 102, 241, 0.06);
}

.lgpd-hero .lgpd-hero__inner .lgpd-hero__headline {
    font-size: 36px;
    font-weight: 700;
    color: var(--lgpd-white);
    line-height: 1.15;
    margin: 0 0 25px 0;
}

.lgpd-hero .lgpd-hero__inner .lgpd-hero__subheadline {
    font-size: 17px;
    font-weight: 400;
    color: var(--lgpd-muted);
    line-height: 1.7;
    margin: 0;
}

.lgpd-hero .lgpd-hero__inner .lgpd-hero__extractable {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ========================================================================
   CONTENT SECTIONS
   ======================================================================== */

.lgpd-section {
    padding: 50px 25px;
    font-family: var(--lgpd-font);
    position: relative;
    z-index: 1;
}

.lgpd-section .lgpd-section__inner {
    max-width: 700px;
    margin: 0 auto;
    border-left: 3px solid var(--lgpd-border-accent);
    padding-left: 25px;
}

.lgpd-section .lgpd-section__inner .lgpd-section__icon {
    width: 50px;
    height: 50px;
    color: var(--lgpd-accent);
    background: var(--lgpd-icon-bg);
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lgpd-section .lgpd-section__inner .lgpd-section__icon svg {
    width: 100%;
    height: 100%;
}

.lgpd-section .lgpd-section__inner .lgpd-section__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--lgpd-ink);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.lgpd-section .lgpd-section__inner .lgpd-section__subtitle {
    font-size: 15px;
    font-weight: 600;
    color: var(--lgpd-accent);
    margin: 0 0 25px 0;
    letter-spacing: 0.3px;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body p {
    margin: 0 0 25px 0;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body p:last-child {
    margin-bottom: 0;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body strong {
    color: var(--lgpd-ink);
    font-weight: 700;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body ul:last-child {
    margin-bottom: 0;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body ul li {
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
}

.lgpd-section .lgpd-section__inner .lgpd-section__body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lgpd-accent);
    opacity: 0.6;
}


/* SECTION BACKGROUND ALTERNATION */

.lgpd-section.lgpd-section--0 {
    background: var(--lgpd-light-blue);
}

.lgpd-section.lgpd-section--1 {
    background: var(--lgpd-white);
}

.lgpd-section.lgpd-section--2 {
    background: var(--lgpd-surface);
}

.lgpd-section.lgpd-section--3 {
    background: var(--lgpd-white);
}

.lgpd-section.lgpd-section--4 {
    background: var(--lgpd-light-blue);
}


/* ========================================================================
   CONTACT BANNER
   ======================================================================== */

.lgpd-contact {
    background: var(--lgpd-dark);
    padding: 50px 25px;
    font-family: var(--lgpd-font);
    position: relative;
    z-index: 1;
    text-align: center;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lgpd-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 50% 80% at 50% 100%, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lgpd-contact .lgpd-contact__inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.lgpd-contact .lgpd-contact__inner .lgpd-contact__icon {
    width: 50px;
    height: 50px;
    color: var(--lgpd-accent-light);
    background: var(--lgpd-icon-bg-dark);
    border-radius: 50%;
    padding: 10px;
    margin: 0 auto 25px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(129, 140, 248, 0.2);
}

.lgpd-contact .lgpd-contact__inner .lgpd-contact__icon svg {
    width: 100%;
    height: 100%;
}

.lgpd-contact .lgpd-contact__inner .lgpd-contact__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--lgpd-white);
    margin: 0 0 10px 0;
}

.lgpd-contact .lgpd-contact__inner .lgpd-contact__description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--lgpd-muted);
    margin: 0 0 25px 0;
}

.lgpd-contact .lgpd-contact__inner .lgpd-contact__email {
    display: inline-block;
    padding: 10px 50px;
    background: transparent;
    color: var(--lgpd-accent-light);
    font-family: var(--lgpd-font);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 10px;
    border: 1px solid rgba(99, 102, 241, 0.4);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.lgpd-contact .lgpd-contact__inner .lgpd-contact__email:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--lgpd-accent-light);
    transform: translateY(-2px);
}


/* ========================================================================
   SCROLL ANIMATIONS
   ======================================================================== */

.lgpd-reveal {
    opacity: 0;
    transform: translateY(25px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lgpd-reveal--visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================================================
   RESPONSIVE — TABLET (768px)
   ======================================================================== */

@media (min-width: 768px) {

    .lgpd-hero {
        padding: 120px 25px 50px 25px;
    }

    .lgpd-hero .lgpd-hero__inner .lgpd-hero__headline {
        font-size: 48px;
    }

    .lgpd-section .lgpd-section__inner .lgpd-section__title {
        font-size: 28px;
    }

    .lgpd-contact .lgpd-contact__inner .lgpd-contact__title {
        font-size: 28px;
    }

}


/* ========================================================================
   RESPONSIVE — DESKTOP (1024px)
   ======================================================================== */

@media (min-width: 1024px) {

    .lgpd-hero {
        padding: 150px 50px 50px 50px;
    }

    .lgpd-hero .lgpd-hero__inner .lgpd-hero__headline {
        font-size: 56px;
    }

    .lgpd-section {
        padding: 50px 50px;
    }

    .lgpd-contact {
        padding: 50px 50px;
    }

}
