/* ============================================
   Rejane Borges - Massoterapeuta
   Stylesheet
   ============================================ */

/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores baseadas no cartão de visita */
    --primary-color: #C9A961;        /* Dourado do cartão */
    --primary-dark: #A68B4D;         /* Dourado mais escuro */
    --gradient-1: #EDE9E3;           /* Bege claro do fundo */
    --gradient-2: #D9D4CC;           /* Bege médio */
    --gradient-3: #B5D4CE;           /* Verde água do cartão */
    --bg-light: #F5F2ED;             /* Bege muito claro */
    --bg-light-alt: #EBE7E1;         /* Bege claro alternativo */
    --text-primary: #4A4A4A;         /* Cinza escuro */
    --text-secondary: #6B6B6B;       /* Cinza médio do cartão */
    --text-muted: #8A8A8A;           /* Cinza claro */
    --bg-card: #FAF8F5;              /* Fundo de cards */
    --footer-bg: #4A4A4A;            /* Rodapé cinza escuro */
    --white: #ffffff;
    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 5px 15px rgba(201, 169, 97, 0.25);  /* Sombra dourada */
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', serif;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 64px;
    background: transparent;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background: rgba(245, 242, 237, 0.97);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    backdrop-filter: blur(8px);
}

.nav-logo {
    font-size: 1em;
    color: var(--white);
    letter-spacing: 3px;
    text-decoration: none;
    font-family: 'Georgia', serif;
    transition: color 0.4s ease;
    white-space: nowrap;
}

.navbar.scrolled .nav-logo {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 0.9em;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.navbar.scrolled .nav-link {
    color: var(--text-secondary);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
    color: var(--primary-color);
}

.nav-link--home {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Hamburger — mobile */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 767px) {
    .navbar {
        justify-content: flex-end;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: var(--bg-light);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 40px;
        box-shadow: -4px 0 20px rgba(0,0,0,0.15);
        transition: right 0.35s ease;
        z-index: 100;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-link {
        color: var(--text-primary);
        display: block;
        padding: 16px 32px;
        font-size: 1.05em;
        border-bottom: 1px solid var(--gradient-2);
    }

    .nav-link::after {
        display: none;
    }

    /* Overlay quando menu aberto */
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 99;
    }

    .nav-overlay.open {
        display: block;
    }
}

/* Header */
.header {
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Hero Image */
.hero-image {
    position: absolute;
    inset: 0;
    background-image: url('../images/slide-1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.40) 0%, rgba(0,0,0,0.55) 100%);
}

/* Conteúdo do header fica por cima do carrossel */
.header .logo,
.header .subtitle,
.header .cta-button {
    position: relative;
    z-index: 2;
}

.header .logo::after {
    background: var(--primary-color);
}

/* SVG decorativo removido — substituído pelo carrossel */

.logo {
    font-size: 2.2em;
    color: var(--primary-color);
    letter-spacing: 3px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    font-weight: normal;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.logo::after {
    content: '';
    display: block;
    width: 150px;
    height: 2px;
    background: var(--primary-color);
    margin: 20px auto;
}

.subtitle {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 10px;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Services Section */
.services {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 40px;
    letter-spacing: 2px;
    font-weight: normal;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-light-alt) 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.service-card:active {
    transform: scale(0.98);
}

.service-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
    display: block;
}

.service-icon svg {
    width: 60px;
    height: 60px;
    color: var(--primary-color);
    stroke: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.3em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: normal;
}

.service-description {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95em;
}

/* Spaces Section */
.spaces {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.spaces-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
}

.space-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.space-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.space-image {
    width: 100%;
    height: 340px;
    overflow: hidden;
}

.space-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    transition: transform 0.4s ease;
}

.space-card:hover .space-image img {
    transform: scale(1.04);
}

.space-image--soon {
    background: linear-gradient(135deg, var(--gradient-1) 0%, var(--gradient-2) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.space-soon-placeholder {
    color: var(--primary-color);
    opacity: 0.4;
}

.space-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
}

.space-badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 0.8em;
    letter-spacing: 1px;
    align-self: flex-start;
}

.space-badge--active {
    background: rgba(181, 212, 206, 0.4);
    color: #3a7a70;
    border: 1px solid rgba(181, 212, 206, 0.8);
}

.space-badge--soon {
    background: rgba(201, 169, 97, 0.15);
    color: var(--primary-dark);
    border: 1px solid rgba(201, 169, 97, 0.4);
}

.space-name {
    font-size: 1.4em;
    color: var(--primary-color);
    font-weight: normal;
    letter-spacing: 1px;
}

.space-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.space-details li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.5;
}

.space-details li svg {
    stroke: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.space-soon-text {
    color: var(--text-secondary);
    font-size: 0.95em;
    line-height: 1.7;
    font-style: italic;
}

.space-soon-subtext {
    color: var(--text-muted);
    font-size: 0.88em;
}

.space-btn {
    display: inline-block;
    margin-top: auto;
    padding: 12px 28px;
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.95em;
    transition: all 0.3s ease;
    text-align: center;
    align-self: flex-start;
}

.space-btn:hover,
.space-btn:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.space-btn--outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.space-btn--outline:hover,
.space-btn--outline:focus {
    background: var(--primary-color);
    color: var(--white);
}

@media (min-width: 768px) {
    .spaces-grid {
        grid-template-columns: 1fr 1fr;
    }

    .space-image {
        height: 380px;
    }
}

@media (min-width: 1024px) {
    .spaces {
        padding: 80px 20px;
    }
}

/* About Section */
.about {
    background: linear-gradient(135deg, var(--gradient-3) 0%, var(--gradient-2) 100%);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 400"><path d="M 0 80 Q 150 60 300 85 Q 400 95 500 75 Q 550 68 600 80" stroke="%23C9A961" stroke-width="1.5" fill="none" opacity="0.3"/><path d="M 0 110 Q 140 88 280 115 Q 380 128 480 105 Q 540 95 600 110" stroke="%23B5D4CE" stroke-width="1.4" fill="none" opacity="0.28"/><path d="M 0 140 Q 160 118 320 145 Q 420 158 520 135 Q 570 125 620 140" stroke="%23EDE9E3" stroke-width="1.6" fill="none" opacity="0.35"/><path d="M 0 95 Q 145 75 290 100 Q 390 110 490 90 Q 545 83 600 95" stroke="%23C9A961" stroke-width="1.3" fill="none" opacity="0.27"/><path d="M 0 125 Q 155 105 310 130 Q 410 143 510 120 Q 560 113 610 125" stroke="%23B5D4CE" stroke-width="1.5" fill="none" opacity="0.26"/><path d="M 0 155 Q 165 133 330 160 Q 430 173 530 150 Q 580 143 630 155" stroke="%23EDE9E3" stroke-width="1.4" fill="none" opacity="0.32"/><path d="M 0 170 Q 150 148 300 175 Q 400 188 500 165 Q 555 158 610 170" stroke="%23C9A961" stroke-width="1.6" fill="none" opacity="0.29"/><path d="M 0 185 Q 145 163 290 190 Q 390 203 490 180 Q 545 173 600 185" stroke="%23B5D4CE" stroke-width="1.3" fill="none" opacity="0.25"/><path d="M 0 200 Q 155 180 310 205 Q 410 218 510 195 Q 565 188 620 200" stroke="%23EDE9E3" stroke-width="1.5" fill="none" opacity="0.31"/><path d="M 0 215 Q 160 195 320 220 Q 420 233 520 210 Q 575 203 630 215" stroke="%23C9A961" stroke-width="1.4" fill="none" opacity="0.28"/><path d="M 0 230 Q 150 210 300 235 Q 400 248 500 225 Q 555 218 610 230" stroke="%23B5D4CE" stroke-width="1.5" fill="none" opacity="0.27"/><path d="M 0 245 Q 145 225 290 250 Q 390 263 490 240 Q 545 233 600 245" stroke="%23EDE9E3" stroke-width="1.4" fill="none" opacity="0.3"/><path d="M 0 260 Q 155 240 310 265 Q 410 278 510 255 Q 565 248 620 260" stroke="%23C9A961" stroke-width="1.6" fill="none" opacity="0.29"/><path d="M 0 275 Q 165 255 330 280 Q 430 293 530 270 Q 585 263 640 275" stroke="%23B5D4CE" stroke-width="1.3" fill="none" opacity="0.26"/><path d="M 0 290 Q 150 270 300 295 Q 400 308 500 285 Q 555 278 610 290" stroke="%23EDE9E3" stroke-width="1.5" fill="none" opacity="0.32"/><circle cx="180" cy="145" r="3.5" fill="%23C9A961" opacity="0.3"/><circle cx="280" cy="215" r="3" fill="%23EDE9E3" opacity="0.35"/><circle cx="120" cy="185" r="3" fill="%23B5D4CE" opacity="0.28"/><circle cx="350" cy="255" r="3.5" fill="%23C9A961" opacity="0.3"/><circle cx="240" cy="275" r="3" fill="%23B5D4CE" opacity="0.26"/><circle cx="420" cy="165" r="3" fill="%23EDE9E3" opacity="0.32"/></svg>') no-repeat;
    background-size: cover;
    background-position: center left;
    opacity: 0.7;
    pointer-events: none;
}

.about-photo {
    width: 260px;
    height: 260px;
    margin: 0 auto 32px;
    position: relative;
    z-index: 1;
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 10%;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1em;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.about .section-title {
    color: var(--white);
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
}

.contact-card {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

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

.contact-icon {
    font-size: 2em;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    stroke: var(--primary-color);
    display: inline-block;
    vertical-align: middle;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: normal;
}

.contact-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-word;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* ── Link "Agendar" na navbar ───────────────────────────────────────────────── */
.nav-link--agendar {
    color: var(--primary-color) !important;
    font-weight: 600;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    padding: 4px 14px !important;
    transition: background 0.2s, color 0.2s;
}

.nav-link--agendar:hover,
.nav-link--agendar:focus {
    background: var(--primary-color);
    color: #fff !important;
}

.phone-link {
    display: inline-block;
    margin-top: auto;
    padding: 12px 30px;
    background: var(--primary-color);
    color: var(--white) !important;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1em;
    transition: all 0.3s ease;
    align-self: center;
}

.phone-link:hover,
.phone-link:focus {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
    text-decoration: none;
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Map */
.map-container {
    margin-top: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-container iframe {
    display: block;
    width: 100%;
}

/* Footer */
.footer {
    background: var(--footer-bg);
    color: var(--white);
    text-align: center;
    padding: 25px 20px;
    font-size: 0.9em;
}

.social-link {
    color: var(--gradient-1);
    text-decoration: none;
    font-size: 1em;
    transition: color 0.3s ease;
}

.social-link:hover,
.social-link:focus {
    color: var(--gradient-2);
    text-decoration: underline;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    outline: 2px solid #25D366;
    outline-offset: 3px;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: var(--white);
    color: var(--white);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

/* ===========================================
   TESTIMONIALS SECTION (Comentada - descoment quando tiver testemunhos)
   =========================================== */
/*
.testimonials {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    background: var(--gradient-1);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-xs);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars {
    color: var(--primary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    color: var(--primary-color);
    font-weight: bold;
    text-align: right;
    font-size: 0.95em;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
}

@media (min-width: 1024px) {
    .testimonials {
        padding: 80px 20px;
    }
}
*/

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus visible for better keyboard navigation */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .logo {
        font-size: 3em;
    }

    .section-title {
        font-size: 2.5em;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }

    .contact-info {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .service-card {
        padding: 40px 30px;
    }

    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-md);
    }
}

@media (min-width: 1024px) {
    .header {
        min-height: 620px;
    }

    .services {
        padding: 80px 20px;
    }

    .about {
        padding: 80px 20px;
    }

    .contact {
        padding: 80px 20px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--bg-card);
    border-top: 2px solid var(--primary-color);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 0.9em;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-link {
    color: var(--primary-color);
    text-decoration: underline;
    white-space: nowrap;
}

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

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

.cookie-btn {
    padding: 9px 22px;
    border-radius: 20px;
    font-size: 0.9em;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Georgia', serif;
}

.cookie-btn--primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.cookie-btn--primary:hover,
.cookie-btn--primary:focus {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.cookie-btn--outline {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid var(--gradient-2);
}

.cookie-btn--outline:hover,
.cookie-btn--outline:focus {
    border-color: var(--text-muted);
    color: var(--text-primary);
    outline: 2px solid var(--text-muted);
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
    }

    .cookie-actions {
        align-self: flex-end;
    }
}

/* Print Styles */
@media print {
    .whatsapp-float {
        display: none;
    }

    .cta-button {
        display: none;
    }

    body {
        background: white;
    }

    .header {
        background: white;
        color: black;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}
