/* ==========================================================================
   CSS Variables & Design Tokens
   ========================================================================== */
:root {
    /* Brand Colors based on PDF */
    --clr-primary: #1976D2;
    /* Confiança */
    --clr-primary-light: #42a5f5;
    --clr-primary-dark: #1565c0;

    --clr-secondary: #455A64;
    /* Seriedade */
    --clr-secondary-light: #718792;
    --clr-secondary-dark: #1c313a;

    /* Neutrals */
    --clr-bg: #f8fafc;
    --clr-surface: #ffffff;
    --clr-text: #334155;
    --clr-text-light: #64748b;
    --clr-border: #e2e8f0;

    /* Gradients */
    --grad-primary: linear-gradient(135deg, var(--clr-primary), var(--clr-primary-dark));
    --grad-secondary: linear-gradient(135deg, var(--clr-secondary), var(--clr-secondary-dark));
    --grad-mixed: linear-gradient(135deg, var(--clr-secondary), var(--clr-primary));

    /* UI Elements */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 10px 25px -5px rgba(25, 118, 210, 0.4);

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-blur: blur(12px);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    /* Offset for fixed navbar */
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--clr-text);
    background-color: var(--clr-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--clr-secondary-dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--clr-text-light);
}

a {
    text-decoration: none;
    color: var(--clr-primary);
    transition: var(--transition-fast);
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--clr-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--clr-secondary-light);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--clr-secondary);
}

::selection {
    background: var(--clr-primary-light);
    color: white;
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--grad-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: white;
}

.btn-outline {
    background: transparent;
    border-color: var(--clr-secondary);
    color: var(--clr-secondary);
}

.btn-outline:hover {
    background: var(--clr-secondary);
    color: white;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-t,
.logo-i,
.logo-text {
    display: none;
}

/* Kept as fallback if needed */
.logo img {
    height: 55px;
    width: auto;
    object-fit: contain;
}

/* Tags & Badges */
.badge {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: rgba(25, 118, 210, 0.1);
    color: var(--clr-primary);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(25, 118, 210, 0.2);
}

.tag {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    background: var(--clr-bg);
    border-radius: 4px;
    font-family: monospace;
    font-size: 0.85em;
    color: var(--clr-secondary);
    border: 1px solid var(--clr-border);
}

/* Cards & Glassmorphism */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.glass-card {
    background: var(--clr-surface);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--clr-border);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--grad-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-normal);
    z-index: -1;
}

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

.glass-card:hover::before {
    transform: scaleX(1);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.divider {
    height: 4px;
    width: 60px;
    background: var(--grad-primary);
    margin: 1rem auto;
    border-radius: 2px;
}

/* ==========================================================================
   Layout Sections
   ========================================================================== */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--clr-border);
    z-index: 1000;
    transition: var(--transition-normal);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a:not(.btn):not(.nav-whatsapp) {
    color: var(--clr-text);
    font-weight: 500;
    position: relative;
}

.nav-links a:not(.btn):not(.nav-whatsapp)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--clr-primary);
    transition: var(--transition-fast);
}

.nav-links a:not(.btn):not(.nav-whatsapp):hover::after,
.nav-links a:not(.btn):not(.nav-whatsapp).active::after {
    width: 100%;
}

.nav-whatsapp {
    font-size: 1.75rem;
    color: #25D366;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
}

.nav-whatsapp:hover {
    transform: scale(1.1);
    color: #128C7E;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--clr-secondary);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 10s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--clr-primary);
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--clr-secondary);
    bottom: 50px;
    left: -100px;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 30px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 span {
    color: transparent;
    background: var(--grad-primary);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-text p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    position: relative;
    padding: 1rem;
    border-radius: var(--radius-lg);
}

.hero-image img {
    border-radius: calc(var(--radius-lg) - 0.5rem);
    width: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
}

.floating-card {
    position: absolute;
    background: var(--clr-surface);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: bounce 3s infinite ease-in-out alternate;
}

.floating-card .icon-wrapper {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(25, 118, 210, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.floating-card h4 {
    margin-bottom: 0;
    font-size: 1rem;
}

.floating-card span {
    font-size: 0.85rem;
    color: var(--clr-text-light);
}

.card-1 {
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: 10%;
    right: -10%;
    animation-delay: 1.5s;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-15px);
    }
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.about-card {
    background: var(--clr-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    height: 100%;
    transition: var(--transition-normal);
}

.about-card:hover {
    box-shadow: var(--shadow-md);
}

.color-swatch {
    width: 60px;
    height: 6px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
}

.bg-serious {
    background-color: var(--clr-secondary);
}

.bg-trust {
    background-color: var(--clr-primary);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.concept-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    font-size: 6rem;
    font-weight: 800;
}

.concept-visual .letter-t {
    color: var(--clr-secondary);
    text-shadow: 4px 4px 0px rgba(69, 90, 100, 0.1);
}

.concept-visual .letter-i {
    color: var(--clr-primary);
    text-shadow: 4px 4px 0px rgba(25, 118, 210, 0.1);
}

.concept-visual .connector {
    width: 80px;
    height: 80px;
    background: var(--grad-mixed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(25, 118, 210, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(25, 118, 210, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(25, 118, 210, 0);
    }
}

.bg-light {
    background-color: var(--clr-bg);
}

.quem-somos-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.quem-somos-content p {
    margin-bottom: 1.5rem;
    color: var(--clr-text);
    text-align: justify;
}

.quem-somos-content p:last-child {
    margin-bottom: 0;
}

.founders-section {
    margin: 3rem 0;
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--clr-border);
}

.founders-intro {
    text-align: center !important;
    font-size: 1.25rem;
    color: var(--clr-secondary-dark) !important;
    font-weight: 600;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.founder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.founder-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: top;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    border: 4px solid var(--clr-bg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.founder-card:hover .founder-img {
    transform: scale(1.05);
    border-color: var(--clr-primary-light);
}

.founder-info strong {
    display: block;
    font-size: 1.4rem;
    color: var(--clr-secondary-dark);
    margin-bottom: 0.5rem;
}

.founder-info span {
    font-size: 0.95rem;
    color: var(--clr-text-light);
    line-height: 1.5;
    display: block;
}

/* Services Section */
.services {
    padding: 6rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.service-card h3 {
    text-align: center;
}

.service-card p {
    text-align: justify;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(25, 118, 210, 0.1);
    color: var(--clr-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-normal);
}

.glass-card:hover .service-icon {
    background: var(--clr-primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-weight: 600;
}

.learn-more i {
    transition: var(--transition-fast);
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Banner / Stats */
.banner {
    position: relative;
    padding: 5rem 0;
    background-image: url('https://images.unsplash.com/photo-1551076805-e1869033e561?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-secondary);
    opacity: 0.9;
}

.banner-content {
    position: relative;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    z-index: 1;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    color: var(--clr-primary-light);
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: white;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-items {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background: var(--clr-bg);
    color: var(--clr-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-item h4 {
    margin-bottom: 0.25rem;
}

.info-item p {
    margin-bottom: 0;
    color: var(--clr-text);
}

.contact-form-wrapper {
    padding: 3rem;
    background: var(--clr-bg);
    border: 1px solid var(--clr-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--clr-secondary-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: white;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-primary);
    box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1);
}

/* Footer */
footer {
    background: var(--clr-secondary-dark);
    color: white;
    padding: 4rem 0 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--clr-secondary-light);
    margin-top: 1rem;
}

.footer-brand h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--clr-secondary-light);
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
}

.social-icons a:hover {
    background: var(--clr-primary);
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 1.5rem 0;
}

.footer-bottom p {
    margin: 0;
    color: var(--clr-secondary-light);
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations & Interactivity Classes
   ========================================================================== */
.animate-on-load {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-left {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-right {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-left.visible,
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Design (Media Queries)
   ========================================================================== */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text p {
        margin: 0 auto 2.5rem auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .card-1,
    .card-2 {
        display: none;
        /* Simplify on mobile */
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .concept-visual {
        margin: 3rem 0;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        /* Can implement hamburger menu logic in JS if needed */
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .stat-item {
        width: 100%;
        margin-bottom: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 800px;
    margin: 0 auto;
    background: var(--clr-surface);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--clr-text);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* ==========================================================================
   Cookie Preferences Modal
   ========================================================================== */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: #000;
    color: #fff;
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    font-family: 'Outfit', sans-serif;
}

.cookie-modal-content h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.cookie-modal-content>p {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cookie-modal-content a {
    color: #fff;
    text-decoration: underline;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.cookie-option-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #fff;
    cursor: pointer;
    background: transparent;
    border: 1px solid #4a5568;
}

.cookie-option-header input[type="checkbox"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-option-header label {
    font-weight: 400;
    font-size: 1.05rem;
    cursor: pointer;
    color: #e2e8f0;
}

.cookie-option p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-left: 2.1rem;
    line-height: 1.5;
    margin-top: 0.2rem;
}

#btn-save-preferences {
    background: #fff;
    color: #000;
    margin-top: 1.5rem;
    border: none;
    padding: 1rem;
    border-radius: 2rem;
    font-weight: 500;
    font-size: 1rem;
    width: 100%;
    cursor: pointer;
    transition: background 0.2s;
}

#btn-save-preferences:hover {
    background: #e2e8f0;
}