/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --mint: #B9CEC5;
    --white: #FFFFFF;
    --green: #3A6E5E;
    --green-dark: #2D5C4E;
    --green-mid: #3A6E5E;
    --green-light: #5A9A8A;
    --mint-light: #e8f0ec;
    --text: #2a3a34;
    --text-light: #5e7a6e;
    --shadow: 0 4px 24px rgba(45, 92, 78, 0.10);
    --shadow-lg: 0 12px 40px rgba(45, 92, 78, 0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-light);
    margin-bottom: 8px;
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.4rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.section-desc {
    color: var(--text-light);
    font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(58, 110, 94, 0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(58, 110, 94, 0.4);
}

.btn-primary:disabled {
    background: #a8c4b8;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

.btn-whatsapp {
    background: #25D366;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover:not(:disabled) {
    background: #1da851;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:disabled {
    background: #a8e4c0;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(185, 206, 197, 0.3);
    transition: all var(--transition);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-dark);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--green-light);
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    transition: color var(--transition);
}

.nav-list a:hover {
    color: var(--green);
}

.btn-nav {
    background: var(--green);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all var(--transition) !important;
}

.btn-nav:hover {
    background: var(--green-dark) !important;
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--mint) 100%);
    padding-top: 72px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    min-height: calc(100vh - 72px);
    padding: 60px 0 120px;
}

.hero-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--green-light);
    margin-bottom: 16px;
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--green-dark);
    margin-bottom: 24px;
}

.highlight {
    color: var(--green-light);
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-img-wrapper {
    width: 380px;
    height: 380px;
    border-radius: 50%;
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    right: 0;
    background: var(--white);
    padding: 16px 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
    z-index: 3;
}

.badge-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--green);
}

.badge-text {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== ABOUT ===== */
.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
}

.about-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--mint);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-text h2 {
    font-size: 2.4rem;
    color: var(--green-dark);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    font-size: 1.02rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    background: var(--mint-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--green-light);
}

.stat-icon {
    font-size: 1.4rem;
}

.stat-label {
    font-weight: 500;
    color: var(--green-dark);
    font-size: 0.95rem;
}

/* ===== TERAPIA OCUPACIONAL ===== */
.to-section {
    background: var(--mint-light);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.4rem;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.2rem;
    color: var(--green-dark);
    margin-bottom: 10px;
}

.card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===== AUTISMO ===== */
.autism-section {
    background: var(--white);
}

.autism-text {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: center;
}

.autism-text p {
    color: var(--text-light);
    font-size: 1.02rem;
    margin-bottom: 16px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit {
    display: flex;
    gap: 16px;
    padding: 24px;
    background: var(--mint-light);
    border-radius: var(--radius);
    transition: all var(--transition);
}

.benefit:hover {
    background: var(--mint);
    transform: translateX(4px);
}

.benefit-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.benefit h4 {
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.benefit p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== BOOKING ===== */
.booking-section {
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--mint) 50%, var(--mint-light) 100%);
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

.booking-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.booking-step {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    margin-top: 32px;
}

.booking-step:first-child {
    margin-top: 0;
}

.step-number {
    width: 32px;
    height: 32px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.booking-step h3 {
    font-size: 1.15rem;
    color: var(--green-dark);
}

/* Calendar */
.calendar {
    margin-bottom: 12px;
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.cal-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--mint);
    background: var(--white);
    color: var(--green);
    font-size: 1.4rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.cal-nav:hover {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.cal-month {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-dark);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
    margin-bottom: 8px;
}

.calendar-weekdays span {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    padding: 8px 0;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    background: none;
    color: var(--text);
}

.cal-day:hover:not(.disabled):not(.empty) {
    background: var(--mint);
    color: var(--green-dark);
}

.cal-day.selected {
    background: var(--green);
    color: var(--white);
    font-weight: 700;
}

.cal-day.today {
    border: 2px solid var(--green-light);
}

.cal-day.disabled {
    color: #ccc;
    cursor: default;
}

.cal-day.empty {
    cursor: default;
}

/* Time slots */
.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 12px;
}

.time-placeholder {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 20px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    border: 2px solid var(--mint);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    background: var(--white);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

.time-slot:hover {
    border-color: var(--green-light);
    background: var(--mint-light);
}

.time-slot.selected {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

/* Form */
.booking-form {
    margin-top: 8px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--mint);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-light);
}

.form-group textarea {
    resize: vertical;
}

.booking-summary {
    background: var(--mint-light);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--green);
}

.booking-summary p {
    font-size: 0.92rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

/* Info cards */
.booking-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.info-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.info-card h4 {
    font-size: 1rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.info-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    background: var(--mint-light);
    transition: all var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-card.whatsapp:hover {
    border-color: #25D366;
    background: #f0faf4;
}

.contact-card.instagram:hover {
    border-color: #E1306C;
    background: #fdf0f4;
}

.contact-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.whatsapp .contact-icon {
    background: #25D366;
}

.instagram .contact-icon {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.contact-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 16px;
}

.contact-cta {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--green);
    transition: color var(--transition);
}

.whatsapp:hover .contact-cta {
    color: #25D366;
}

.instagram:hover .contact-cta {
    color: #E1306C;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-card {
        padding: 32px 24px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--green-dark);
    color: var(--white);
    padding: 48px 0 24px;
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-brand span:first-child {
    font-size: 1.5rem;
}

.footer-brand > span:nth-child(2) {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-brand p {
    width: 100%;
    font-size: 0.85rem;
    opacity: 0.7;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity var(--transition);
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
}

.footer-bottom p {
    font-size: 0.82rem;
    opacity: 0.6;
}

/* ===== MODAL ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 420px;
    width: 90%;
    transform: scale(0.9);
    transition: transform var(--transition);
}

.modal-overlay.active .modal {
    transform: scale(1);
}

.modal-icon {
    width: 64px;
    height: 64px;
    background: var(--green);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.modal h3 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.modal p {
    color: var(--text-light);
    margin-bottom: 28px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-img-wrapper {
        width: 320px;
        height: 320px;
    }

    .about-grid {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        transition: transform var(--transition);
    }

    .nav-list.active {
        transform: translateY(0);
    }

    .btn-nav {
        text-align: center;
        display: block;
        width: 100%;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 0 100px;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-desc {
        margin: 0 auto 32px;
    }

    .hero-image {
        order: -1;
    }

    .hero-img-wrapper {
        width: 260px;
        height: 260px;
    }

    .hero-badge {
        right: 50%;
        transform: translateX(120px);
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        max-width: 400px;
        margin: 0 auto;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 1.9rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .booking-card {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .time-slots {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-img-wrapper {
        width: 220px;
        height: 220px;
    }

    .hero-badge {
        transform: translateX(90px);
        padding: 12px 16px;
    }

    .badge-number {
        font-size: 1.4rem;
    }

    .booking-card {
        padding: 24px 16px;
    }

    .section-header h2,
    .about-text h2 {
        font-size: 1.6rem;
    }

    .modal {
        padding: 32px 24px;
    }
}

/* ===== PRIVACY PAGE ===== */
.privacy-hero {
    background: linear-gradient(135deg, var(--mint-light) 0%, var(--mint) 100%);
    padding: 140px 0 60px;
    text-align: center;
}

.privacy-hero h1 {
    font-size: 2.6rem;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.privacy-updated {
    color: var(--text-light);
    font-size: 0.95rem;
}

.privacy-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 60px;
    align-items: start;
}

.privacy-nav {
    position: sticky;
    top: 90px;
}

.privacy-nav h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--green-light);
    margin-bottom: 16px;
}

.privacy-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.privacy-nav a {
    display: block;
    padding: 8px 14px;
    font-size: 0.88rem;
    color: var(--text-light);
    border-left: 3px solid transparent;
    border-radius: 0 6px 6px 0;
    transition: all var(--transition);
}

.privacy-nav a:hover,
.privacy-nav a.active {
    color: var(--green-dark);
    background: var(--mint-light);
    border-left-color: var(--green);
}

.privacy-body {
    max-width: 800px;
}

.privacy-article {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--mint);
}

.privacy-article:last-child {
    border-bottom: none;
}

.privacy-article h2 {
    font-size: 1.5rem;
    color: var(--green-dark);
    margin-bottom: 16px;
}

.privacy-article p {
    color: var(--text-light);
    font-size: 0.98rem;
    margin-bottom: 14px;
    line-height: 1.7;
}

.privacy-article ul {
    margin: 12px 0 16px 20px;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.7;
}

.privacy-article li {
    margin-bottom: 8px;
}

.privacy-table {
    border-radius: var(--radius);
    overflow: hidden;
    margin: 20px 0;
    border: 1px solid var(--mint);
    position: relative;
    z-index: 0;
}

.privacy-table-row {
    display: grid;
    grid-template-columns: 1fr 0.6fr 1.4fr;
    gap: 0;
}

.privacy-table-row span {
    padding: 12px 16px;
    font-size: 0.9rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--mint);
    border-right: 1px solid var(--mint);
}

.privacy-table-row span:last-child {
    border-right: none;
}

.privacy-table-row.table-head span {
    background: var(--green);
    color: var(--white);
    font-weight: 600;
    border-bottom-color: rgba(255,255,255,0.2);
    border-right-color: rgba(255,255,255,0.2);
    position: static;
}

.privacy-table-row:last-child span {
    border-bottom: none;
}

.privacy-table-row:not(.table-head):hover span {
    background: var(--mint-light);
}

.privacy-note {
    background: #fff8e1;
    border-left: 4px solid #f9a825;
    padding: 16px 20px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 20px 0;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.6;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 24px 0;
}

.right-item {
    padding: 20px;
    background: var(--mint-light);
    border-radius: var(--radius);
    text-align: center;
    transition: all var(--transition);
}

.right-item:hover {
    background: var(--mint);
    transform: translateY(-3px);
}

.right-icon {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.right-item h4 {
    font-size: 0.95rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}

.right-item p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.contact-dpo {
    background: var(--mint-light);
    padding: 28px;
    border-radius: var(--radius-lg);
    margin-top: 16px;
}

.contact-dpo > p {
    margin-bottom: 16px;
    color: var(--green-dark);
}

.dpo-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dpo-channel {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--green);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition);
}

.dpo-channel:hover {
    color: var(--green-dark);
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 1.9rem;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .privacy-nav {
        position: static;
        background: var(--mint-light);
        padding: 20px;
        border-radius: var(--radius);
    }

    .privacy-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 4px;
    }

    .privacy-nav a {
        border-left: none;
        border-bottom: 2px solid transparent;
        border-radius: 6px;
        padding: 6px 12px;
        font-size: 0.82rem;
    }

    .privacy-nav a:hover,
    .privacy-nav a.active {
        border-left-color: transparent;
        border-bottom-color: var(--green);
    }

    .rights-grid {
        grid-template-columns: 1fr 1fr;
    }

    .privacy-table-row {
        grid-template-columns: 1fr;
    }

    .privacy-table-row.table-head {
        display: none;
    }

    .privacy-table-row span {
        border-right: none;
        padding: 8px 16px;
    }

    .privacy-table-row span:first-child {
        font-weight: 600;
        background: var(--mint-light);
        padding-top: 14px;
    }

    .privacy-table-row span:last-child {
        padding-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .rights-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== COOKIE BANNER (LGPD) ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3000;
    background: var(--white);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.12);
    padding: 20px 24px;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
    pointer-events: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text p:first-child {
    color: var(--green-dark);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cookie-text p:last-child {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.5;
}

.cookie-link {
    color: var(--green);
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: var(--green-dark);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 24px;
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
}

.btn-cookie-accept {
    background: var(--green);
    color: var(--white);
    border-color: var(--green);
}

.btn-cookie-accept:hover {
    background: var(--green-dark);
    border-color: var(--green-dark);
}

.btn-cookie-decline {
    background: transparent;
    color: var(--text-light);
    border-color: var(--mint);
}

.btn-cookie-decline:hover {
    border-color: var(--green-light);
    color: var(--green-dark);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}
