html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    color: #fff;
    font-family: Inter, "Segoe UI", sans-serif;
    background: #050505;
}

* {
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top right, rgba(216,162,77,.12), transparent 25%), radial-gradient(circle at bottom left, rgba(216,162,77,.08), transparent 20%), linear-gradient(135deg,#050505 0%,#0d0d0d 50%,#161616 100%);
}

.privacy-page {
    min-height: 100vh;
    overflow-x: hidden;
}

/* HERO */

.hero-section {
    max-width: 1400px;
    min-height: 850px;
    margin: 0 auto;
    padding: 100px 30px 60px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 999px;
    background: rgba(216,162,77,.12);
    border: 1px solid rgba(216,162,77,.2);
    color: #d8a24d;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-content h1 {
    margin: 0;
    font-size: 72px;
    line-height: 1.05;
    letter-spacing: -2px;
    font-weight: 800;
}

.hero-description {
    margin-top: 28px;
    max-width: 620px;
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255,255,255,.75);
}

.last-update {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    color: rgba(255,255,255,.85);
    backdrop-filter: blur(10px);
}

/* IMAGEM */

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .hero-image::before {
        content: "";
        position: absolute;
        width: 520px;
        height: 520px;
        border-radius: 50%;
        background: rgba(216,162,77,.08);
        filter: blur(80px);
        z-index: 0;
    }

.privacy-barber {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    object-fit: contain;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,.5));
}

/* CARD SEGURANÇA */

.security-badge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 270px;
    padding: 30px;
    border-radius: 26px;
    background: rgba(10,10,10,.92);
    border: 1px solid rgba(216,162,77,.15);
    backdrop-filter: blur(20px);
    z-index: 5;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
}

    .security-badge h3 {
        margin: 0 0 10px;
        font-size: 32px;
        line-height: 1.15;
        font-weight: 700;
    }

    .security-badge p {
        margin: 0;
        color: rgba(255,255,255,.75);
        line-height: 1.7;
    }

.security-icon,
.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(216,162,77,.08);
    border: 1px solid rgba(216,162,77,.15);
    margin-bottom: 20px;
}

    .security-icon i,
    .card-icon i {
        font-size: 30px;
        color: #d8a24d;
    }

/* GRID */

.terms-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.term-card {
    padding: 35px;
    border-radius: 28px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    transition: .3s ease;
    backdrop-filter: blur(10px);
}

    .term-card:hover {
        transform: translateY(-6px);
        border-color: rgba(216,162,77,.25);
        box-shadow: 0 20px 40px rgba(0,0,0,.25);
    }

    .term-card h3 {
        margin: 0 0 15px;
        font-size: 24px;
    }

    .term-card p {
        margin: 0;
        color: rgba(255,255,255,.72);
        line-height: 1.8;
    }

/* CONTEÚDO LEGAL */

.legal-content {
    max-width: 1200px;
    margin: 40px auto 100px;
    padding: 50px;
    border-radius: 32px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

    .legal-content h2 {
        margin-top: 0;
        font-size: 38px;
    }

    .legal-content p {
        color: rgba(255,255,255,.75);
        line-height: 1.9;
    }

/* RESPONSIVO */

/* =========================
   TABLETS
========================= */

@media (max-width: 992px) {

    .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
        text-align: center;
        gap: 30px;
        padding: 60px 25px 40px;
    }

    .hero-content {
        order: 1;
    }

    .hero-image {
        order: 2;
        flex-direction: column;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .last-update {
        justify-content: center;
    }

    .security-badge {
        position: relative;
        top: auto;
        right: auto;
        transform: none;
        margin: 20px auto 0;
        width: 100%;
        max-width: 300px;
    }

    .terms-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   CELULARES
========================= */

@media (max-width: 768px) {

    .hero-section {
        padding: 40px 20px;
        gap: 25px;
    }

    .hero-content h1 {
        font-size: 42px;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-description {
        font-size: 15px;
        line-height: 1.8;
    }

    .last-update {
        margin-top: 25px;
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero-image::before {
        width: 280px;
        height: 280px;
        filter: blur(60px);
    }

    .privacy-barber {
        max-width: 260px;
        width: 100%;
        margin: 0 auto;
    }

    .security-badge {
        max-width: 260px;
        padding: 22px;
    }

    .security-icon {
        width: 60px;
        height: 60px;
    }

        .security-icon i {
            font-size: 24px;
        }

    .security-badge h3 {
        font-size: 24px;
    }

    .security-badge p {
        font-size: 14px;
    }

    .terms-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .term-card {
        padding: 25px;
    }

    .legal-content {
        margin: 20px;
        padding: 30px;
    }

        .legal-content h2 {
            font-size: 30px;
        }
}

/* =========================
   IPHONE SE / XR
========================= */

@media (max-width: 480px) {

    .hero-section {
        padding: 30px 15px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 10px 16px;
    }

    .hero-content h1 {
        font-size: 30px;
        line-height: 1.15;
    }

    .hero-description {
        font-size: 14px;
    }

    .last-update {
        font-size: 13px;
        padding: 12px 16px;
    }

    .privacy-barber {
        max-width: 220px;
    }

    .security-badge {
        max-width: 220px;
        padding: 18px;
    }

    .security-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 15px;
    }

        .security-icon i {
            font-size: 20px;
        }

    .security-badge h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .security-badge p {
        font-size: 13px;
        line-height: 1.5;
    }

    .legal-content {
        margin: 15px;
        padding: 22px;
    }

        .legal-content h2 {
            font-size: 26px;
        }
}