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

:root {
    /* Color Palette - Michelly Correa Brand */
    --preto-elegante: #0A0A0A;
    --dourado-champagne: #D4AF37;
    --nude-sofisticado: #EAD9C6;
    --off-white: #F8F5EF;
    --pure-white: #FFFFFF;
    --dark-grey: #1A1A1A;
    --light-grey: #F9F9F9;
    --text-color: #333333;
    
    /* Typography */
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Playfair Display', serif;

    /* Semantic Theme Variables - Light Mode (Default) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F9F9F9;
    --bg-card: #FFFFFF;
    --bg-card-subtle: #F9F9F9;
    --text-primary: #0A0A0A;
    --text-body: #333333;
    --text-secondary: #555555;
    --text-muted: #666666;
    --border-color: #EAEAEA;
    --border-subtle: rgba(0, 0, 0, 0.08);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.08);
    --about-img-shadow: -20px 20px 0px 0px #0A0A0A;
    --gallery-item-bg: #FCFCFC;
    
    /* Toggle Control Theme Variables */
    --toggle-bg: rgba(10, 10, 10, 0.6);
    --toggle-border: rgba(255, 255, 255, 0.2);
    --toggle-icon-color: #F8F5EF;
    --toggle-hover-border: var(--dourado-champagne);
    --toggle-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] {
    /* Semantic Theme Variables - Dark Mode */
    --bg-primary: #0C0C0C;
    --bg-secondary: #141414;
    --bg-card: #1A1A1A;
    --bg-card-subtle: #161616;
    --text-primary: #F8F5EF;
    --text-body: #E0E0E0;
    --text-secondary: #CCCCCC;
    --text-muted: #999999;
    --border-color: rgba(255, 255, 255, 0.1);
    --border-subtle: rgba(212, 175, 55, 0.15);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.4);
    --shadow-hover: 0 15px 40px rgba(212, 175, 55, 0.12);
    --about-img-shadow: -20px 20px 0px 0px var(--dourado-champagne);
    --gallery-item-bg: #161616;
    
    /* Toggle Control Theme Variables */
    --toggle-bg: rgba(255, 255, 255, 0.08);
    --toggle-border: rgba(212, 175, 55, 0.35);
    --toggle-icon-color: #D4AF37;
    --toggle-hover-border: #FFFFFF;
    --toggle-shadow: 0 2px 12px rgba(212, 175, 55, 0.2);
}

/* Global Theme Transitions */
body,
.header,
.about-section,
.services-section,
.cases-section,
.video-section,
.faq-section,
.gallery-section,
.service-card,
.case-card,
.faq-item,
.gallery-item,
.section-title,
.about-text p,
.service-title,
.service-desc,
.case-content h3,
.case-content p,
.faq-item summary,
.faq-item p,
.about-img {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

@media (prefers-reduced-motion: reduce) {
    body,
    .header,
    .about-section,
    .services-section,
    .cases-section,
    .video-section,
    .faq-section,
    .gallery-section,
    .service-card,
    .case-card,
    .faq-item,
    .gallery-item,
    .section-title,
    .about-text p,
    .service-title,
    .service-desc,
    .case-content h3,
    .case-content p,
    .faq-item summary,
    .faq-item p,
    .about-img,
    .theme-toggle,
    .theme-icon {
        transition: none !important;
        animation: none !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background-color: var(--bg-primary);
    line-height: 1.6;
}

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

/* Typography Overrides */
.section-subtitle {
    font-family: var(--font-main);
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--dourado-champagne);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 40px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.nav-logo {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--pure-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--dourado-champagne);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--pure-white);
    transition: all 0.3s ease;
}

.nav-social {
    display: flex;
    align-items: center;
}

.nav-social a {
    display: flex;
    align-items: center;
    color: var(--pure-white);
    transition: color 0.3s, transform 0.3s;
}

.nav-social a:hover {
    color: var(--dourado-champagne);
    transform: scale(1.1);
}

/* Header Controls & Theme Toggle Button */
.header-controls {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
}

.theme-toggle {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
    color: #0A0A0A;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    flex-shrink: 0;
}

.theme-toggle svg {
    width: 20px;
    height: 20px;
    display: block;
    pointer-events: none;
}

.theme-toggle:hover {
    transform: scale(1.05);
}

.theme-toggle:focus-visible {
    outline: 2px solid var(--dourado-champagne);
    outline-offset: 2px;
}

html[data-theme="dark"] .theme-toggle {
    background: #1A1A1A;
    border-color: var(--dourado-champagne);
    color: var(--dourado-champagne);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('img/lifestyle parque.jpeg') center top/cover no-repeat;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(10, 10, 10, 0.4), rgba(10, 10, 10, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--pure-white);
    width: 100%;
    text-align: left;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    font-weight: 400;
}

.hero-content .subtitle {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--dourado-champagne);
    font-style: italic;
    margin-bottom: 25px;
}

.hero-content .hero-desc {
    font-size: 1.05rem;
    max-width: 700px;
    margin: 0;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: var(--pure-white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    z-index: 1000;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.1);
}
.wa-icon {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

/* Info Bar */
.info-bar {
    background-color: var(--preto-elegante);
    color: var(--dourado-champagne);
    padding: 20px 0;
    font-size: 0.85rem;
    letter-spacing: 2px;
}

.info-bar-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

/* About Section */
.about-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
}

.about-image-wrapper {
    flex: 1;
    position: relative;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    box-shadow: var(--about-img-shadow);
}

/* Services Section */
.services-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
}

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

.service-card {
    background: var(--bg-card);
    padding: 50px 40px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background-color 0.4s ease;
    border-top: 3px solid transparent;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-top: 3px solid var(--dourado-champagne);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.service-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.8;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--dourado-champagne);
    text-decoration: none;
    transition: color 0.3s;
}
.service-link:hover {
    color: var(--text-primary);
}

/* Cases Section */
.cases-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.case-card {
    background: var(--bg-secondary);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    transition: background-color 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.case-img-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
}

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

.case-content {
    padding: 30px;
}

.case-content h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.case-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Brands Section & Carousel */
.brands-section {
    padding: 100px 0;
    background-color: var(--preto-elegante);
    text-align: center;
}

.brands-section .section-title {
    color: var(--pure-white);
}

.carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.carousel-container::before,
.carousel-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.carousel-container::before {
    left: 0;
    background: linear-gradient(to right, var(--preto-elegante) 0%, transparent 100%);
}

.carousel-container::after {
    right: 0;
    background: linear-gradient(to left, var(--preto-elegante) 0%, transparent 100%);
}

.carousel-track {
    display: inline-block;
    animation: scroll 25s linear infinite;
}

.logo-item {
    display: inline-block;
    width: 150px;
    height: 80px;
    object-fit: contain;
    margin: 0 40px;
    vertical-align: middle;
    filter: grayscale(100%) brightness(0.8) opacity(0.6);
    transition: filter 0.4s ease;
}

.logo-item:hover {
    filter: grayscale(0%) brightness(1) opacity(1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Video Section */
.video-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
    text-align: center;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    background-color: #000;
}

.video-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.video-thumbnail {
    width: 100%;
    height: 500px;
    object-fit: cover;
    opacity: 0.85;
    transition: opacity 0.3s;
    display: block;
}

.video-link:hover .video-thumbnail {
    opacity: 0.6;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: var(--dourado-champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--preto-elegante);
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, background-color 0.3s;
}

.video-link:hover .play-button {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--pure-white);
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 4px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    overflow: hidden;
    transition: background-color 0.4s ease, border-color 0.4s ease;
}

.faq-item summary {
    padding: 25px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    border-left: 3px solid transparent;
    transition: border-color 0.3s, color 0.3s;
}

.faq-item summary:hover {
    border-left: 3px solid var(--dourado-champagne);
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 30px;
    font-size: 1.5rem;
    color: var(--dourado-champagne);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    padding: 0 30px 25px 30px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Gallery Section (Por Aí) */
.gallery-section {
    padding: 120px 0;
    background-color: var(--bg-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    width: 100%;
    aspect-ratio: 1 / 1; /* Quadrado perfeito */
    object-fit: contain; /* Mostra a foto inteira sem cortar */
    border-radius: 8px;
    background-color: var(--gallery-item-bg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-subtle);
    transition: transform 0.4s, background-color 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
}

/* Footer / Contato */
.footer {
    background-color: var(--preto-elegante);
    color: var(--pure-white);
    padding: 100px 0 30px 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 60px;
}

.footer-info {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    height: 110px;
    margin-bottom: 25px;
}

.footer-info p {
    color: #999;
    margin-bottom: 30px;
}

.social-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-links a {
    text-decoration: none;
    transition: transform 0.3s;
    display: inline-block;
}

.social-links a.icon-instagram {
    color: #E1306C;
}

.social-links a.icon-facebook {
    color: #1877F2;
}

.social-links a.icon-youtube {
    color: #FF0000;
}

.social-links a:hover {
    transform: scale(1.15); /* Efeito de dar um 'pulinho' ao passar o mouse */
}

.footer-contact {
    text-align: right;
}

.footer-contact h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--dourado-champagne);
    color: var(--preto-elegante);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 30px; /* Bordas arredondadas */
    transition: background-color 0.3s, transform 0.3s;
}

.btn-primary:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

.footer-email {
    display: block;
    margin-top: 20px;
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--dourado-champagne);
}

.footer-bottom {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.developer-credits {
    color: #6088ba;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.developer-credits a {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.developer-credits img,
.developer-credits .conexus-logo,
.conexus-logo {
    height: 20px !important;
    width: auto !important;
    max-width: 90px !important;
    vertical-align: middle;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.developer-credits a:hover .conexus-logo,
.developer-credits .conexus-logo:hover {
    opacity: 0.8;
}

.footer-legal-link {
    color: #999;
    font-size: 0.85rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-legal-link:hover,
.footer-legal-link:focus-visible {
    color: var(--dourado-champagne);
    text-decoration: underline;
}

/* Privacy Policy Page Specific Styles */
.policy-section {
    padding: 160px 0 100px 0;
    background-color: var(--bg-primary);
    min-height: 80vh;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 400;
}

.policy-last-updated {
    font-size: 0.9rem;
    color: var(--dourado-champagne);
    margin-bottom: 40px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

.policy-block {
    margin-bottom: 35px;
}

.policy-block h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 400;
    border-bottom: 1px solid var(--border-subtle);
    padding-bottom: 8px;
}

.policy-block p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-block ul {
    margin-left: 25px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.policy-block li {
    font-size: 0.98rem;
    line-height: 1.8;
    margin-bottom: 8px;
}

.policy-block a {
    color: var(--dourado-champagne);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.policy-block a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .policy-section {
        padding: 130px 0 60px 0;
    }
    .policy-content h1 {
        font-size: 2.2rem;
    }
    .policy-block h2 {
        font-size: 1.35rem;
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .about-container { flex-direction: column; }
    .hero-content h1 { font-size: 3rem; }
    .footer-container { flex-direction: column; text-align: center; align-items: center; }
    .footer-contact { text-align: center; }
    .social-links { justify-content: center; margin-top: 10px; }
    
    /* Remove hover requirement for mobile logos */
    .logo-item {
        filter: grayscale(0%) brightness(1) opacity(1);
    }
    
    /* Mobile Menu CSS */
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease;
    }
    
    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .nav-menu a {
        font-size: 1.2rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    /* Hamburger Animation */
    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    animation: zoomIn 0.3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

@keyframes zoomIn {
    from {transform: scale(0.9)}
    to {transform: scale(1)}
}

/* Cookie Banner (LGPD) */
.cookie-banner {
    position: fixed;
    bottom: -200px; /* Escondido */
    left: 20px;
    width: calc(100% - 40px);
    max-width: 350px;
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    color: var(--pure-white);
    padding: 20px;
    z-index: 10000;
    transition: bottom 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.cookie-content p {
    font-size: 0.85rem;
    margin: 0;
    color: #ccc;
    line-height: 1.5;
}

.cookie-content button {
    width: 100%;
}
