/* ========================================
   VIVOBEM - PLATAFORMA DE CANNABIS MEDICINAL
   Design System: Liquid Glassmorphism 2025
   Identidade Visual: Híbrida Profissional
   ======================================== */

:root {
    /* ============================================
       CORES OFICIAIS VIVOBEM (app.vivobem.com)
       VERDE LIMA - EXATO DO SITE OFICIAL!
       ============================================ */

    /* Verde Lima - Cor Principal (CORRIGIDO!) */
    --primary-lima: #85B834;          /* Verde lima principal */
    --lima-light: #9BC53D;            /* Verde lima claro */
    --lima-medium: #7BA428;           /* Verde lima médio */
    --lima-dark: #6FA428;             /* Verde lima escuro */
    --lima-darker: #5E8A22;           /* Verde lima muito escuro */
    --lima-pale: rgba(133, 184, 52, 0.1);   /* Lima 10% */
    --lima-soft: rgba(133, 184, 52, 0.2);   /* Lima 20% */

    /* Cinzas Neutros - Tailwind Official */
    --gray-50: #f9fafb;               /* Background claro */
    --gray-100: #f3f4f6;              /* Background alternativo */
    --gray-200: #e5e7eb;              /* Borders sutis */
    --gray-300: #d1d5db;              /* Borders médios */
    --gray-400: #666666;              /* Text disabled - Preto claro */
    --gray-500: #333333;              /* Text secondary - Preto */
    --gray-600: #000000;              /* Text normal - Preto */
    --gray-700: #85b932;              /* Text emphasis - Verde lima */
    --gray-800: #85b932;              /* Text strong - Verde lima */
    --gray-900: #85b932;              /* Text primary/títulos - Verde lima */

    /* Verde e Lima para fundos */
    --green-50: #f0fdf4;              /* Verde muito claro */
    --lime-50: #f7fee7;               /* Lima muito claro */

    /* Aliases para compatibilidade com código existente */
    --primary-green: var(--primary-lima);
    --primary-emerald: var(--primary-lima);
    --primary-emerald-light: var(--lima-light);
    --primary-emerald-dark: var(--lima-dark);
    --neutral-white: #FFFFFF;
    --light-bg: var(--gray-50);
    --dark-text: var(--gray-900);

    /* Glass Effects para Light Mode - Muito sutis */
    --glass-light: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(133, 184, 52, 0.15);
    --glass-hover: rgba(133, 184, 52, 0.05);
    --glass-shadow: rgba(0, 0, 0, 0.05);

    /* Glows Suaves para Light Mode */
    --glow-lima: rgba(133, 184, 52, 0.15);
    --glow-lima-strong: rgba(133, 184, 52, 0.25);
    --glow-emerald: var(--glow-lima);
    --glow-emerald-strong: var(--glow-lima-strong);

    /* Easing Functions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out-cubic: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ========================================
   RESET & BASE
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--gray-50);
    color: var(--gray-900);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    width: 100%;
    min-height: 100vh;
}

/* Prevent overflow and clipping globally */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* ========================================
   LIQUID CANVAS BACKGROUND
   ======================================== */

.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    opacity: 0.25;
    mix-blend-mode: multiply;
}

.grain-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.02'/%3E%3C/svg%3E");
    pointer-events: none;
    animation: grain 8s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -10%); }
    30% { transform: translate(3%, -5%); }
    50% { transform: translate(-1%, 5%); }
    70% { transform: translate(4%, -3%); }
    90% { transform: translate(-2%, 8%); }
}

/* ========================================
   FLOATING NAVIGATION
   ======================================== */

.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 16px 32px;
    background: var(--glass-light);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 4px 24px var(--glass-shadow);
    opacity: 0;
    animation: navFadeIn 1s var(--ease-out-expo) 0.5s forwards;
    max-width: calc(100vw - 40px);
    box-sizing: border-box;
}

@keyframes navFadeIn {
    to {
        opacity: 1;
    }
}

.nav-logo {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    white-space: nowrap;
    position: relative;
    z-index: 1001;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 8px rgba(133, 184, 52, 0.3));
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width 0.3s var(--ease-out-expo);
}

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

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

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--gray-500);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--gray-700);
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    color: var(--accent-yellow);
    background: rgba(255, 184, 0, 0.1);
    font-weight: 700;
}

.lang-divider {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 300;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero-section {
    min-height: 150vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 200px 40px 400px;
}

.hero-container {
    text-align: center;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(110, 231, 183, 0.12);
    border: 1px solid rgba(110, 231, 183, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--secondary-mint);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.3s forwards;
}

.hero-logo {
    margin-bottom: 30px;
    perspective: 1000px;
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 0.8s forwards;
}

.hero-logo-img {
    max-width: min(800px, 90vw);
    height: auto;
    filter: drop-shadow(0 20px 60px var(--glow-lima));
    transition: transform 0.3s var(--ease-out-expo);
}

.hero-logo-img:hover {
    transform: scale(1.02);
}

.word {
    display: block;
}

.word span {
    color: #85b932;
    background: linear-gradient(180deg,
        #85b932 0%,
        #9BC53D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 20px 60px var(--glow-lima));
}

/* Fallback para navegadores sem suporte */
@supports not (background-clip: text) {
    .word span {
        color: #85b932;
    }
}


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

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: var(--gray-600);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.2s forwards;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-mint), var(--primary-emerald));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 20px 48px;
    background: linear-gradient(135deg, #85b932, #9BC53D);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 10px 40px var(--glow-lima);
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 1.4s forwards;
    margin-bottom: 80px;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
}

.hero-cta:hover::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(133, 184, 52, 0.5);
    background: linear-gradient(135deg, #9BC53D, #85b932);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s var(--ease-out-expo);
}

.hero-cta:hover .cta-arrow {
    transform: translateX(6px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    opacity: 0;
    animation: fadeUp 1s var(--ease-out-expo) 2.8s forwards;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom,
        var(--secondary-mint),
        transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

.scroll-text {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-500);
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 80px;
    padding: 0 40px;
}

.section-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-teal);
    opacity: 0.6;
}

.section-title-main {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #85b932;
    background: linear-gradient(135deg,
        #85b932,
        #9BC53D);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Fallback para navegadores que não suportam background-clip */
@supports not (background-clip: text) {
    .section-title-main {
        color: #85b932;
    }
}

/* ========================================
   SORTEIO SECTION
   ======================================== */

.sorteio-section {
    padding: 100px 0;
    background: linear-gradient(135deg,
        rgba(133, 184, 52, 0.05) 0%,
        rgba(155, 197, 61, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.sorteio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sorteio-content {
    position: relative;
    z-index: 2;
}

.sorteio-badge {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(133, 184, 52, 0.1);
    border: 1px solid rgba(133, 184, 52, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #85b932;
    margin-bottom: 24px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.sorteio-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: #85b932;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sorteio-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 32px;
}

.sorteio-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.sorteio-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--gray-600);
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.sorteio-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #85b932, #9BC53D);
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 30px rgba(133, 184, 52, 0.3);
}

.sorteio-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(133, 184, 52, 0.4);
    background: linear-gradient(135deg, #9BC53D, #85b932);
}

.sorteio-cta .cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s var(--ease-out-expo);
}

.sorteio-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.sorteio-disclaimer {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
}

.sorteio-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.tshirt-mockup {
    font-size: 20rem;
    position: relative;
    z-index: 2;
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(133, 184, 52, 0.3));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.sorteio-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
        rgba(133, 184, 52, 0.2) 0%,
        rgba(133, 184, 52, 0.1) 40%,
        transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Responsive - Tablet */
@media (max-width: 899px) {
    .sorteio-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .sorteio-content {
        order: 2;
    }

    .sorteio-image {
        order: 1;
        height: 350px;
    }

    .tshirt-mockup {
        font-size: 15rem;
    }

    .sorteio-badge {
        margin: 0 auto 24px;
    }

    .sorteio-features {
        align-items: center;
    }
}

/* Responsive - Mobile */
@media (max-width: 599px) {
    .sorteio-section {
        padding: 60px 0;
    }

    .sorteio-title {
        font-size: 2rem;
    }

    .sorteio-description {
        font-size: 1rem;
    }

    .sorteio-image {
        height: 250px;
    }

    .tshirt-mockup {
        font-size: 10rem;
    }

    .sorteio-cta {
        padding: 16px 32px;
        font-size: 1rem;
        width: 100%;
        justify-content: center;
    }

    .sorteio-glow {
        width: 250px;
        height: 250px;
    }
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0;
}

.about-content {
    padding: 0 40px;
}

.about-glass-panel {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--glass-light);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.about-glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(110, 231, 183, 0.4),
        transparent);
}

.panel-inner {
    padding: 80px;
    width: 100%;
    box-sizing: border-box;
}

.about-text-block {
    margin-bottom: 60px;
}

.about-heading {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #85b932;
}

.about-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--gray-600);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-paragraph strong {
    color: var(--secondary-mint);
    font-weight: 600;
    word-break: keep-all;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(133, 184, 52, 0.2);
    border: 1px solid rgba(133, 184, 52, 0.4);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.feature-pill:hover {
    background: rgba(133, 184, 52, 0.3);
    border-color: var(--primary-emerald);
    transform: translateX(8px);
    box-shadow: 0 4px 20px var(--glow-emerald);
}

.pill-icon {
    width: 24px;
    height: 24px;
    background: var(--secondary-mint);
    color: var(--neutral-900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.pill-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neutral-white);
    word-break: break-word;
    line-height: 1.4;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */

.products-section {
    min-height: 100vh;
    padding: 120px 0;
    display: flex;
    flex-direction: column;
}

.products-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    padding: 0 40px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.product-glass-card {
    background: var(--glass-light);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.product-glass-card.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.product-glass-card[data-product="1"] { transition-delay: 0.1s; }
.product-glass-card[data-product="2"] { transition-delay: 0.2s; }
.product-glass-card[data-product="3"] { transition-delay: 0.3s; }

.product-glass-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(110, 231, 183, 0.3),
        transparent,
        rgba(20, 184, 166, 0.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.product-glass-card:hover::before {
    opacity: 1;
}

.product-glass-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 80px rgba(133, 184, 52, 0.4);
}

.product-corner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--accent-teal), var(--accent-blue-light));
    color: var(--neutral-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 20px;
    z-index: 10;
}

.product-icon-wrapper {
    margin-bottom: 24px;
}

.product-icon {
    font-size: 3.5rem;
    filter: drop-shadow(0 8px 16px var(--glow-yellow));
    display: inline-block;
    transition: transform 0.5s var(--ease-out-expo);
}

.product-glass-card:hover .product-icon {
    transform: scale(1.1) rotate(-5deg);
}

.product-image-wrapper {
    width: 100%;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(133, 184, 52, 0.05), rgba(255, 184, 0, 0.05));
}

.product-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.5s var(--ease-out-expo);
    position: relative;
    z-index: 1;
}

.product-glass-card:hover .product-image {
    transform: scale(1.05);
}

.product-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #85b932;
    word-break: break-word;
    hyphens: auto;
}

.product-subtitle {
    font-size: 1rem;
    color: #85b932;
    font-weight: 600;
    margin-bottom: 12px;
    word-break: break-word;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-description {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 32px;
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-row.highlight {
    background: rgba(255, 184, 0, 0.05);
    padding: 16px;
    margin: 8px -16px 0;
    border-radius: 12px;
    border: 1px solid rgba(255, 184, 0, 0.2);
    border-bottom: 1px solid rgba(255, 184, 0, 0.2);
}

.spec-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    word-break: break-word;
}

.spec-value {
    font-size: 1.1rem;
    color: var(--secondary-mint);
    font-weight: 700;
    word-break: break-word;
    line-height: 1.4;
}

.spec-row.highlight .spec-value {
    font-size: 1.1rem;
}

/* ========================================
   CANNABINOIDS BENEFITS SECTION
   ======================================== */

.cannabinoids-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0;
}

.cannabinoids-content {
    padding: 0 40px;
}

.cannabinoids-glass-panel {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--glass-light);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.cannabinoids-glass-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(133, 184, 52, 0.5),
        transparent);
}

.cannabinoids-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s var(--ease-out-expo);
}

.cannabinoids-glass-panel.in-view .cannabinoids-text {
    opacity: 1;
    transform: translateX(0);
}

.cannabinoids-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 24px;
    color: #85b932;
}

.cannabinoids-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--gray-600);
    margin-bottom: 40px;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.cannabinoids-highlights {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: rgba(133, 184, 52, 0.1);
    border: 1px solid rgba(133, 184, 52, 0.3);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.highlight-item:hover {
    background: rgba(133, 184, 52, 0.2);
    border-color: var(--primary-green);
    transform: translateX(10px);
    box-shadow: 0 8px 24px var(--glow-green);
}

.highlight-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 4px 12px var(--glow-mint));
    flex-shrink: 0;
}

.highlight-content {
    flex: 1;
    min-width: 0;
}

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #85b932;
    margin-bottom: 8px;
    word-break: break-word;
}

.highlight-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    word-break: break-word;
}

.cannabinoids-chart {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    transition: all 1s var(--ease-out-expo) 0.2s;
}

.cannabinoids-glass-panel.in-view .cannabinoids-chart {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.chart-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 16px;
    filter: drop-shadow(0 20px 40px rgba(133, 184, 52, 0.4));
    transition: transform 0.5s var(--ease-out-expo);
}

.cannabinoids-chart:hover .chart-image {
    transform: scale(1.05) rotate(2deg);
}

.chart-caption {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   DIFFERENTIALS - BENTO GRID
   ======================================== */

.differentials-section {
    min-height: 100vh;
    padding: 120px 40px;
    display: flex;
    flex-direction: column;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.bento-card {
    background: var(--glass-light);
    backdrop-filter: blur(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.9);
    width: 100%;
    box-sizing: border-box;
}

.bento-card.in-view {
    opacity: 1;
    transform: scale(1);
}

.bento-card.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(110, 231, 183, 0.12),
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bento-card:hover::after {
    opacity: 1;
}

.bento-card:hover {
    border-color: rgba(110, 231, 183, 0.4);
    box-shadow: 0 16px 48px var(--glow-emerald);
    transform: scale(1.02);
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px var(--glow-mint));
    transition: transform 0.4s var(--ease-out-expo), filter 0.4s var(--ease-out-expo);
    display: inline-block;
}

.bento-icon.large-icon {
    font-size: 5rem;
}

.bento-card:hover .bento-icon {
    transform: scale(1.08) rotate(-3deg);
    filter: drop-shadow(0 6px 16px var(--glow-teal));
}

.bento-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #85b932;
    word-break: break-word;
    hyphens: auto;
}

.bento-card.large .bento-title {
    font-size: 2rem;
}

.bento-text {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    word-break: break-word;
    overflow-wrap: break-word;
}

.bento-card.large .bento-text {
    font-size: 1.1rem;
}

/* ========================================
   FOOTER
   ======================================== */

.footer-section {
    padding: 80px 40px 40px;
}

.footer-glass {
    max-width: 1600px;
    margin: 0 auto;
    background: var(--glass-light);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    height: 72px;
    width: auto;
    display: block;
    filter: drop-shadow(0 4px 12px rgba(133, 184, 52, 0.4));
}

.footer-slogan {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 300;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: #85b932;
    margin-bottom: 20px;
}

.footer-address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--gray-600);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(133, 184, 52, 0.05);
    border: 1px solid rgba(133, 184, 52, 0.15);
    border-radius: 12px;
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out-expo);
}

.contact-link:hover {
    background: rgba(133, 184, 52, 0.1);
    border-color: #85b932;
    transform: translateX(8px);
}

.contact-icon {
    font-size: 1.2rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-500);
    font-size: 0.9rem;
}

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

.footer-link {
    color: var(--gray-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--secondary-mint);
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Extra Large Screens (1920px+) */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
    }

    .hero-logo-img {
        max-width: 700px;
    }

    .products-carousel {
        max-width: 1800px;
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-grid {
        max-width: 1800px;
    }
}

/* Large Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .products-carousel {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Standard Desktop (1200px - 1439px) */
@media (min-width: 1200px) and (max-width: 1439px) {
    .container {
        max-width: 1200px;
    }

    .products-carousel {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        max-width: 1200px;
    }

    .cannabinoids-glass-panel {
        max-width: 1200px;
        padding: 70px;
        gap: 50px;
    }

    .bento-grid {
        max-width: 1200px;
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Laptop / Small Desktop (1024px - 1199px) */
@media (min-width: 1024px) and (max-width: 1199px) {
    .container {
        padding: 0 30px;
    }

    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .cannabinoids-glass-panel {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px;
    }

    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bento-card.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .bento-card.wide {
        grid-column: span 2;
    }
}

/* Tablet Landscape (900px - 1023px) */
@media (min-width: 900px) and (max-width: 1023px) {
    .floating-nav {
        padding: 14px 24px;
        gap: 24px;
    }

    .hero-section {
        padding: 180px 30px 350px;
        min-height: 140vh;
    }

    .section-header {
        padding: 0 30px;
        margin-bottom: 60px;
    }

    .about-glass-panel {
        max-width: 100%;
    }

    .panel-inner {
        padding: 60px 50px;
    }

    .products-carousel {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
        gap: 24px;
    }

    .cannabinoids-glass-panel {
        grid-template-columns: 1fr;
        padding: 50px;
        gap: 40px;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 30px;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 2;
    }

    .differentials-section {
        padding: 100px 30px;
    }
}

/* Tablet Portrait (768px - 899px) */
@media (min-width: 768px) and (max-width: 899px) {
    .floating-nav {
        top: 20px;
        padding: 12px 20px;
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        justify-content: center;
    }

    .nav-logo-img {
        height: 42px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .language-switcher {
        margin-top: 4px;
    }

    /* Força textos claros no tablet portrait */
    .nav-logo {
        color: #FFB800 !important;
        -webkit-text-fill-color: #FFB800 !important;
    }

    .section-title-main {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .word span {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .hero-logo-img {
        max-width: 600px;
    }

    .hero-section {
        padding: 160px 24px 320px;
        min-height: 130vh;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .section-header {
        padding: 0 24px;
        margin-bottom: 50px;
    }

    .about-content,
    .cannabinoids-content {
        padding: 0 24px;
    }

    .panel-inner {
        padding: 50px 40px;
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .products-carousel {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 24px;
    }

    .product-image-wrapper {
        height: 240px;
    }

    .cannabinoids-glass-panel {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 40px;
    }

    .cannabinoids-text {
        order: 1;
    }

    .cannabinoids-chart {
        order: 2;
    }

    .cannabinoids-heading {
        font-size: 2rem;
    }

    .highlight-item {
        padding: 20px;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 24px;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }

    .differentials-section {
        padding: 100px 24px;
    }

    .footer-glass {
        padding: 50px 40px;
    }
}

/* Mobile Landscape / Large Phone (640px - 767px) */
@media (min-width: 640px) and (max-width: 767px) {
    .floating-nav {
        top: 16px;
        padding: 12px 16px;
        gap: 12px;
        width: 90%;
        max-width: 600px;
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        justify-content: center;
    }

    .nav-logo-img {
        height: 26px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 12px;
    }

    .nav-link {
        font-size: 0.85rem;
    }

    .language-switcher {
        margin-top: 4px;
    }

    /* Força textos claros no mobile landscape */
    .nav-logo {
        color: #FFB800 !important;
        -webkit-text-fill-color: #FFB800 !important;
    }

    .section-title-main {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .word span {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .hero-section {
        padding: 150px 20px 300px;
        min-height: 120vh;
    }

    .hero-badge {
        font-size: 0.75rem;
        margin-bottom: 30px;
        margin-top: 20px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 100px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .section-number {
        font-size: 0.9rem;
    }

    .panel-inner {
        padding: 40px 32px;
    }

    .about-heading {
        font-size: 1.8rem;
    }

    .about-paragraph {
        font-size: 1rem;
    }

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

    .products-carousel {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .product-glass-card {
        padding: 32px 28px;
    }

    .product-image-wrapper {
        height: 220px;
    }

    .cannabinoids-glass-panel {
        padding: 40px 28px;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cannabinoids-text {
        opacity: 1;
        transform: none;
        order: 1;
    }

    .cannabinoids-chart {
        opacity: 1;
        transform: none;
        order: 2;
    }

    .bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
        gap: 16px;
        padding: 0 20px;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }

    .bento-card {
        min-height: 180px;
        padding: 32px;
    }

    .bento-icon {
        font-size: 2.5rem;
    }

    .bento-icon.large-icon {
        font-size: 4rem;
    }

    .differentials-section {
        padding: 80px 20px;
    }

    .footer-glass {
        padding: 40px 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}

/* Mobile Portrait / Standard Phone (480px - 639px) */
@media (min-width: 480px) and (max-width: 639px) {
    .floating-nav {
        top: 12px;
        padding: 10px 16px;
        gap: 10px;
        width: 92%;
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        justify-content: center;
    }

    .nav-logo-img {
        height: 24px;
    }

    .nav-links {
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    .nav-link {
        font-size: 0.8rem;
    }

    .language-switcher {
        margin-top: 4px;
    }

    /* Força textos claros no mobile portrait */
    .nav-logo {
        color: #FFB800 !important;
        -webkit-text-fill-color: #FFB800 !important;
    }

    .section-title-main {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .word span {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .hero-logo-img {
        max-width: 500px;
    }

    .hero-section {
        padding: 140px 20px 280px;
        min-height: 120vh;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        margin-top: 20px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .hero-cta {
        padding: 16px 32px;
        font-size: 1rem;
        margin-bottom: 60px;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-line {
        height: 50px;
    }

    section {
        padding: 80px 0;
    }

    .section-header {
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .panel-inner {
        padding: 32px 24px;
    }

    .about-heading {
        font-size: 1.6rem;
    }

    .about-paragraph {
        font-size: 0.95rem;
    }

    .products-carousel {
        padding: 0 20px;
        gap: 20px;
    }

    .product-glass-card {
        padding: 28px 24px;
    }

    .product-image-wrapper {
        height: 200px;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .cannabinoids-section {
        padding: 80px 0;
    }

    .cannabinoids-glass-panel {
        padding: 32px 24px;
        gap: 35px;
        grid-template-columns: 1fr;
    }

    .cannabinoids-text {
        order: 1;
    }

    .cannabinoids-chart {
        order: 2;
    }

    .cannabinoids-heading {
        font-size: 1.6rem;
    }

    .cannabinoids-description {
        font-size: 0.95rem;
    }

    .highlight-item {
        padding: 16px;
        gap: 12px;
    }

    .highlight-icon {
        font-size: 2rem;
    }

    .highlight-content h4 {
        font-size: 1rem;
    }

    .highlight-content p {
        font-size: 0.85rem;
    }

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

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }

    .bento-card {
        padding: 28px 24px;
        min-height: 160px;
    }

    .differentials-section {
        padding: 80px 20px;
    }

    .footer-glass {
        padding: 36px 24px;
    }

    .footer-logo-img {
        height: 54px;
    }
}

/* Small Mobile (320px - 479px) */
@media (max-width: 479px) {
    html {
        font-size: 14px;
    }

    .hero-logo-img {
        max-width: 400px;
    }

    .floating-nav {
        top: 10px;
        padding: 10px 12px;
        gap: 8px;
        width: 95%;
        flex-direction: column;
        align-items: center;
        max-height: none;
        overflow: visible;
    }

    .nav-logo {
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        justify-content: center;
    }

    .nav-logo-img {
        height: 22px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        gap: 8px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .language-switcher {
        margin-top: 4px;
        padding: 4px 8px;
        gap: 6px;
    }

    .lang-btn {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    /* Força textos claros no mobile */
    .nav-logo {
        color: #FFB800 !important;
        -webkit-text-fill-color: #FFB800 !important;
    }

    .section-title-main {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .word span {
        color: #85b932 !important;
        -webkit-text-fill-color: #85b932 !important;
    }

    .hero-section {
        padding: 130px 16px 260px;
        min-height: 120vh;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
        margin-bottom: 24px;
        margin-top: 10px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .stat-divider {
        width: 30px;
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 0.9rem;
        margin-bottom: 50px;
    }

    .cta-arrow {
        width: 20px;
        height: 20px;
    }

    .scroll-indicator {
        bottom: 16px;
    }

    section {
        padding: 60px 0;
        min-height: auto;
    }

    .section-header {
        padding: 0 16px;
        margin-bottom: 32px;
    }

    .section-number {
        font-size: 0.85rem;
    }

    .about-section,
    .cannabinoids-section,
    .differentials-section {
        padding: 60px 0;
    }

    .about-content,
    .cannabinoids-content {
        padding: 0 16px;
    }

    .panel-inner {
        padding: 28px 20px;
    }

    .about-heading,
    .cannabinoids-heading {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }

    .about-paragraph,
    .cannabinoids-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .feature-pill {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .pill-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .products-section {
        padding: 60px 0;
    }

    .products-carousel {
        padding: 0 16px;
        gap: 16px;
    }

    .product-glass-card {
        padding: 24px 20px;
    }

    .product-image-wrapper {
        height: 180px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-subtitle {
        font-size: 0.85rem;
    }

    .product-description {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }

    .spec-label {
        font-size: 0.8rem;
    }

    .spec-value {
        font-size: 1rem;
    }

    .spec-row {
        padding: 14px 0;
    }

    .cannabinoids-glass-panel {
        padding: 28px 20px;
        gap: 30px;
        grid-template-columns: 1fr;
    }

    .cannabinoids-text {
        order: 1;
    }

    .cannabinoids-chart {
        order: 2;
    }

    .highlight-item {
        padding: 14px 12px;
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .highlight-icon {
        font-size: 1.8rem;
    }

    .highlight-content h4 {
        font-size: 0.95rem;
    }

    .highlight-content p {
        font-size: 0.8rem;
    }

    .chart-caption {
        font-size: 0.8rem;
    }

    .bento-grid {
        padding: 0 16px;
        gap: 12px;
        grid-template-columns: 1fr;
    }

    .bento-card.large,
    .bento-card.wide {
        grid-column: span 1;
    }

    .bento-card {
        padding: 24px 20px;
        min-height: 140px;
    }

    .bento-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .bento-icon.large-icon {
        font-size: 3rem;
    }

    .bento-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .bento-card.large .bento-title {
        font-size: 1.3rem;
    }

    .bento-text {
        font-size: 0.85rem;
    }

    .bento-card.large .bento-text {
        font-size: 0.95rem;
    }

    .footer-section {
        padding: 60px 16px 30px;
    }

    .footer-glass {
        padding: 32px 20px;
    }

    .footer-logo-img {
        height: 48px;
    }

    .footer-slogan {
        font-size: 0.85rem;
    }

    .footer-heading {
        font-size: 1rem;
    }

    .footer-address,
    .contact-link {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 24px;
        font-size: 0.8rem;
    }

    .footer-links {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   UTILITIES
   ======================================== */

.no-scroll {
    overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   MODAL SORTEIO
   ======================================== */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    margin: auto;
    background: #ffffff;
    border-radius: 24px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.4s var(--ease-out-expo);
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close svg {
    width: 20px;
    height: 20px;
    color: #666;
}

.modal-close:hover {
    background: rgba(133, 184, 52, 0.1);
    transform: rotate(90deg);
}

.modal-close:hover svg {
    color: #85b932;
}

.modal-header {
    text-align: center;
    margin-bottom: 32px;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 16px;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: #85b932;
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
}

.sorteio-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f9fafb;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #85b932;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(133, 184, 52, 0.1);
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #85b932;
}

.form-checkbox label {
    font-size: 0.85rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-checkbox label a {
    color: #85b932;
    text-decoration: underline;
}

.modal-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #85b932, #9BC53D);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 10px 30px rgba(133, 184, 52, 0.3);
    margin-top: 8px;
}

.modal-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(133, 184, 52, 0.4);
    background: linear-gradient(135deg, #9BC53D, #85b932);
}

.modal-submit .submit-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.modal-submit:hover .submit-arrow {
    transform: translateX(4px);
}

.modal-success {
    text-align: center;
    padding: 24px 0;
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 16px;
    animation: scaleIn 0.5s var(--ease-out-expo);
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.modal-success h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #85b932;
    margin-bottom: 12px;
}

.modal-success p {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 8px;
}

.success-detail {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px !important;
}

.success-btn {
    padding: 14px 32px;
    background: linear-gradient(135deg, #85b932, #9BC53D);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(133, 184, 52, 0.3);
}

/* Responsive Modal */
@media (max-width: 599px) {
    .modal-content {
        padding: 32px 24px;
        width: 95%;
    }

    .modal-title {
        font-size: 1.5rem;
    }

    .modal-icon {
        font-size: 3rem;
    }

    .form-group input,
    .form-group select {
        padding: 12px 14px;
        font-size: 0.95rem;
    }

    .modal-submit {
        width: 100%;
        padding: 14px 24px;
    }
}
