/* ===================================
   POLITICA DE PRIVACIDADE
   =================================== */

.politica-page {
    background-color: #EEF7F8;
}

.privacy-gradient-wrapper {
    position: relative;
    overflow: visible;
    isolation: isolate;
    background: linear-gradient(180deg, #C6EBF6 0%, #EEF7F8 58%, #EEF7F8 100%);
}

.privacy-banner-wrapper {
    position: relative;
    z-index: auto;
}

.privacy-banner {
    position: relative;
    top: -90px;
    width: 100%;
    overflow: visible !important;
}

.privacy-banner-img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}

.privacy-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 30%;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.97) 0%, rgba(11, 11, 11, 0) 100%);
}

.privacy-banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.privacy-banner-text {
    width: min(520px, 36vw);
    margin-left: 420px;
    margin-top: 40px;
    margin-bottom: 32px;
    text-align: left;
}

.privacy-banner-text h1 {
    margin: 0 0 18px;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 400;
    font-size: 45px;
    line-height: 54px;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    text-transform: uppercase;
}

.privacy-banner-text p {
    max-width: 430px;
    margin: 0;
    font-family: 'Exo', sans-serif !important;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.92);
}

.privacy-banner-linha {
    position: absolute;
    right: 0;
    bottom: -186px;
    z-index: 115;
    width: auto;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    animation: privacyClipRevealTopBottom 3.5s cubic-bezier(0.22, 1, 0.36, 1.5) 0.3s forwards;
}

@keyframes privacyClipRevealTopBottom {
    0% { clip-path: inset(0 0 100% 0); }
    100% { clip-path: inset(0 0 0% 0); }
}

.privacy-nuvens {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 100%;
    overflow: visible;
    pointer-events: none;
}

.privacy-nuvens .nuvem-float {
    position: absolute;
    height: auto;
    will-change: transform;
}

.privacy-nuvens .nuvem1 {
    top: 11%;
    width: 918px;
    animation: privacyNuvemDrift1 160s linear infinite;
    animation-delay: -110s;
}

.privacy-nuvens .nuvem2 {
    top: 8%;
    width: 683px;
    animation: privacyNuvemDrift2 180s linear infinite;
    animation-delay: -70s;
}

@keyframes privacyNuvemDrift1 {
    0% { transform: translateX(-45vw); }
    100% { transform: translateX(105vw); }
}

@keyframes privacyNuvemDrift2 {
    0% { transform: translateX(80vw); }
    100% { transform: translateX(-50vw); }
}

.privacy-content {
    position: relative;
    z-index: 4;
    margin-top: -158px;
    padding: 52px 0 120px;
    background: transparent;
}

.privacy-layout {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 820px);
    gap: 88px;
    align-items: start;
    justify-content: center;
}

.privacy-aside {
    position: sticky;
    top: 34px;
    padding-top: 12px;
}

.privacy-aside h2 {
    margin: 0 0 24px;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 400;
    font-size: 50px;
    line-height: 1.04;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #279BB1;
}

.privacy-aside p {
    margin: 0 0 30px;
    font-family: 'Exo', sans-serif !important;
    font-weight: 400;
    font-size: 17px;
    line-height: 27px;
    letter-spacing: 0;
    color: #094F71;
}

.privacy-contact-btn {
    position: relative;
    z-index: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 190px;
    height: 48px;
    overflow: hidden;
    border: none;
    border-radius: 64px;
    background: linear-gradient(180deg, #279BB1 0.15%, #005284 100.15%);
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    color: #FFFFFF;
    transition: box-shadow 0.4s ease;
}

.privacy-contact-btn span {
    position: relative;
    z-index: 1;
    display: block;
    transition: transform 0.5s var(--ease-animation, cubic-bezier(0.22, 1, 0.36, 1));
}

.privacy-contact-btn::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    transform: translateY(0%);
    transition: transform 0.5s var(--ease-animation, cubic-bezier(0.22, 1, 0.36, 1));
}

.privacy-contact-btn::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    border-radius: 64px;
    background: linear-gradient(180deg, #F29120 0%, #EC6608 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.privacy-contact-btn:hover {
    color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(60, 60, 60, 0.15);
}

.privacy-contact-btn:hover span {
    transform: translateY(-250%);
}

.privacy-contact-btn:hover::before {
    transform: translateY(-100%);
}

.privacy-contact-btn:hover::after {
    opacity: 1;
}

.privacy-article {
    min-width: 0;
    margin-top: 30px;
}

.privacy-section {
    padding: 0 0 34px;
    margin: 0 0 34px;
    
}

.privacy-section:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.privacy-section h2 {
    margin: 0 0 18px;
    max-width: 620px;
    font-family: 'ClashDisplay', sans-serif !important;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #EC6608;
}

.privacy-section p,
.privacy-section li {
    font-family: 'Exo', sans-serif !important;
    font-weight: 400;
    font-size: 16px;
    line-height: 27px;
    letter-spacing: 0;
    color: #5D7580;
}

.privacy-section p {
    max-width: 620px;
    margin: 0 0 16px;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-section ul {
    display: grid;
    gap: 10px;
    max-width: 620px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.privacy-section li {
    position: relative;
    padding-left: 24px;
}

.privacy-section li::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #279BB1;
}

@media only screen and (max-width: 1440px) {
    .privacy-banner-text {
        width: min(420px, 36vw);
        margin-left: 368px;
        margin-top: 42px;
        margin-bottom: 22px;
    }

    .privacy-banner-text h1 {
        font-size: 34px;
        line-height: 41px;
    }

    .privacy-banner-text p {
        max-width: 340px;
        font-size: 15px;
        line-height: 22px;
    }

    .privacy-banner-linha {
        bottom: -98px;
        width: 318px;
        height: 321px;
    }

    .privacy-content {
        margin-top: -132px;
        padding: 40px 0 92px;
    }

    .privacy-layout {
        grid-template-columns: minmax(250px, 320px) minmax(0, 720px);
        gap: 64px;
    }

    .privacy-aside h2 {
        font-size: 40px;
    }

    .privacy-aside p {
        font-size: 15px;
        line-height: 24px;
    }

    .privacy-section h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 1024px) {
    .privacy-banner {
        top: 0;
    }

    .privacy-banner-img {
        min-height: 430px;
        object-fit: cover;
    }

    .privacy-banner-text {
        width: min(440px, calc(100% - 90px));
        margin: 88px 0 0 210px;
    }

    .privacy-banner-text h1 {
        font-size: 32px;
        line-height: 38px;
    }

    .privacy-banner-linha {
        bottom: -75px;
        width: 245px;
        height: auto;
    }

    .privacy-content {
        margin-top: -34px;
        padding: 42px 0 82px;
    }

    .privacy-layout {
        grid-template-columns: 1fr;
        gap: 46px;
        max-width: 760px;
        margin: 0 auto;
    }

    .privacy-aside {
        position: static;
        padding-top: 0;
    }

    .privacy-aside h2 {
        max-width: 540px;
    }
}

@media only screen and (max-width: 768px) {
    body.politica-page {
        --home-mobile-side-gap: clamp(23.111px, 5.9259vw, 32px);
        --home-mobile-content-width: min(476px, calc(100vw - (var(--home-mobile-side-gap) * 2)));
        --home-mobile-footer-width: clamp(277.667px, 88.1481vw, 476px);
        --home-mobile-footer-map-btn-width: clamp(109.083px, 34.6296vw, 187px);
        --home-mobile-footer-map-btn-height: clamp(28px, 8.8889vw, 48px);
        --home-mobile-partner-slot-width: clamp(104.333px, 26.7407vw, 144.406px);
        --home-mobile-partner-logo-width: clamp(57.778px, 14.8148vw, 80px);
        --home-mobile-partner-logo-height: clamp(47.667px, 12.2222vw, 66px);
        --home-mobile-cta-control-width: min(369px, calc(68.3333vw));
        --home-mobile-lines-width: clamp(144.444px, 37.037vw, 200px);
        --home-mobile-lines-height: clamp(145.574px, 37.3055vw, 201.4499px);
    }

    .footer-redesign br.home-mobile-break {
        display: block;
    }

    .privacy-nuvens {
        display: none;
    }

    .privacy-banner {
        min-height: 0;
        padding: 0 !important;
    }

    .privacy-banner picture {
        display: block;
        line-height: 0;
    }

    .privacy-banner-img {
        width: 100%;
        height: auto;
        min-height: 0;
        object-fit: contain;
        object-position: center top;
    }

    .privacy-banner-overlay {
        align-items: flex-start;
        justify-content: center;
        padding: 106px var(--home-mobile-side-gap) 0;
    }

    .privacy-banner-text {
        width: 100%;
        max-width: 330px;
        margin: 0 auto;
        text-align: center;
    }

    .privacy-banner-text h1 {
        margin: 28px auto 0;
        font-size: 31px;
        line-height: 36px;
        text-align: center;
    }

    .privacy-banner-text p {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
        line-height: 21px;
    }

    .privacy-banner-linha {
        right: 0;
        bottom: -109px;
        width: var(--home-mobile-lines-width, 200px);
        height: var(--home-mobile-lines-height, 201px);
        z-index: 2;
        object-fit: contain;
    }

    .privacy-content {
        margin-top: -48px;
        padding: 84px 0 68px;
    }

    .privacy-content .wrap.wide {
        width: 100%;
        max-width: 540px;
        margin: 0 auto;
        padding-left: var(--home-mobile-side-gap) !important;
        padding-right: var(--home-mobile-side-gap) !important;
        box-sizing: border-box;
    }

    .privacy-layout {
        width: 100%;
        max-width: var(--home-mobile-content-width);
        margin: 0 auto;
    }

    .privacy-layout {
        gap: 38px;
    }

    .privacy-aside-label {
        margin-bottom: 18px;
    }

    .privacy-aside h2 {
        max-width: 330px;
        font-size: 34px;
        line-height: 1.08;
    }

    .privacy-aside p {
        font-size: 15px;
        line-height: 24px;
    }

    .privacy-section {
        padding-bottom: 28px;
        margin-bottom: 28px;
    }

    .privacy-section h2 {
        font-size: 21px;
        line-height: 1.25;
    }

    .privacy-section p,
    .privacy-section li {
        font-size: 15px;
        line-height: 25px;
    }
}

@media only screen and (max-width: 420px) {
    .privacy-banner-overlay {
        padding-left: 30px;
        padding-right: 30px;
    }
    .privacy-banner-linha {

        bottom: -99px;
    }
    .privacy-banner-text h1 {
        font-size: 28px;
        line-height: 34px;
    }

    .privacy-contact-btn {
        width: 100%;
    }

    
}

/* =====================================================================
   RESPONSIVIDADE FLUIDA · 1280 → 1920 — linha abaixo do banner (ondas-4)
   ===================================================================== */
@media only screen and (min-width: 1281px) and (max-width: 1920px) {
    .privacy-banner-linha {
        bottom: clamp(-186px, calc(-98px - (100vw - 1280px) * 0.1375), -98px);
        width: clamp(318px, calc(318px + (100vw - 1280px) * 0.19375), 442px);
        height: clamp(321px, calc(321px + (100vw - 1280px) * 0.165625), 427px);
    }
}