/* ========================================
   ADMAIS HEMP - NOVA VERSÃO ÚNICA
   Design System: Liquid Glassmorphism
   ======================================== */

:root {
    --primary-green: #006B3F;
    --accent-yellow: #FFB800;
    --neutral-white: #FFFFFF;
    --neutral-gray: #6C757D;
    --dark-bg: #0a0a0a;

    --glass-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glow-green: rgba(0, 107, 63, 0.6);
    --glow-yellow: rgba(255, 184, 0, 0.5);

    --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(--dark-bg);
    color: var(--neutral-white);
    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%;
}

section.hero-section {
    overflow: visible;
}

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

.liquid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    opacity: 0.8;
}

.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.05'/%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(30px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    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;
    background: linear-gradient(135deg, #FFB800 0%, #006B3F 100%);
    -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) {
    .nav-logo {
        color: #FFB800;
    }
}

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

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    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(--neutral-white);
}

.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: rgba(255, 255, 255, 0.5);
    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: rgba(255, 255, 255, 0.8);
    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: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    font-weight: 300;
}

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

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

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

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

.hero-title {
    font-size: clamp(3rem, 12vw, 9rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.02em;
    margin-bottom: 30px;
    padding: 30px 0 50px;
    perspective: 1000px;
    position: relative;
    z-index: 1;
    overflow: visible;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.15em;
}

.word {
    display: block;
    text-align: center;
    overflow: visible;
    padding: 0;
    line-height: 1;
    margin: 0;
}

.word span {
    display: inline-block;
    color: var(--neutral-white);
    background: linear-gradient(180deg,
        var(--neutral-white) 0%,
        rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 20px 60px var(--glow-green));
    padding: 0.05em;
    margin: 0;
    line-height: 0.9;
    vertical-align: baseline;
    width: auto;
    height: auto;
    overflow: visible;
    box-sizing: content-box;
}

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


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

.hero-tagline {
    font-size: clamp(1.1rem, 2.5vw, 1.8rem);
    color: rgba(255, 255, 255, 0.6);
    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(--accent-yellow), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    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: var(--accent-yellow);
    color: var(--dark-bg);
    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-yellow);
    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 var(--glow-yellow);
}

.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(--accent-yellow),
        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: rgba(255, 255, 255, 0.4);
}

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

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

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

.section-title-main {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--neutral-white);
    background: linear-gradient(135deg,
        var(--neutral-white),
        rgba(255, 255, 255, 0.8));
    -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: var(--neutral-white);
    }
}

/* ========================================
   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(255, 184, 0, 0.5),
        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: var(--neutral-white);
}

.about-paragraph {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.about-paragraph strong {
    color: var(--accent-yellow);
    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(0, 107, 63, 0.2);
    border: 1px solid rgba(0, 107, 63, 0.4);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

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

.pill-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-yellow);
    color: var(--dark-bg);
    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(255, 184, 0, 0.3),
        transparent,
        rgba(0, 107, 63, 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(0, 107, 63, 0.4);
}

.product-corner-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: var(--accent-yellow);
    color: var(--dark-bg);
    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(0, 107, 63, 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: var(--neutral-white);
    word-break: break-word;
    hyphens: auto;
}

.product-subtitle {
    font-size: 1rem;
    color: var(--accent-yellow);
    font-weight: 600;
    margin-bottom: 12px;
    word-break: break-word;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.product-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    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: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    word-break: break-word;
}

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

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

/* ========================================
   COA BUTTON
   ======================================== */

.coa-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    margin-top: 24px;
    background: linear-gradient(135deg, var(--primary-green), rgba(0, 107, 63, 0.8));
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--neutral-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 107, 63, 0.3);
}

.coa-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coa-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 107, 63, 0.5);
    border-color: var(--accent-yellow);
}

.coa-button:hover::before {
    opacity: 1;
}

.coa-button:active {
    transform: translateY(0);
}

.coa-icon {
    font-size: 1.2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.coa-text {
    position: relative;
    z-index: 1;
}

/* ========================================
   COA EMBED
   ======================================== */

.coa-embed {
    width: 100%;
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
}

.coa-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent-yellow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    text-align: center;
}

.coa-iframe-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
}

.coa-iframe-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 184, 0, 0.2);
}

.coa-iframe {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.coa-pdf-canvas {
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.3);
    pointer-events: none;
    display: block;
}

.coa-click-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.coa-iframe-wrapper:hover .coa-click-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.3);
}

.coa-click-overlay::after {
    content: '🔍 ' attr(data-text);
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-yellow);
    background: rgba(0, 0, 0, 0.8);
    padding: 12px 24px;
    border-radius: 8px;
    border: 1px solid var(--accent-yellow);
}

/* ========================================
   COA MODAL
   ======================================== */

.coa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.coa-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.coa-modal-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 90vh;
    background: var(--glass-light);
    backdrop-filter: blur(40px) saturate(180%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s var(--ease-out-expo);
}

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

.coa-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.coa-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin: 0;
}

.coa-modal-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--neutral-white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.coa-modal-close:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.5);
    transform: rotate(90deg);
}

.coa-modal-close svg {
    width: 20px;
    height: 20px;
}

.coa-modal-body {
    flex: 1;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    position: relative;
}

.coa-pdf-viewer {
    width: 100%;
    height: 100%;
    border: none;
}

.coa-modal-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
}

.coa-download-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--primary-green);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--neutral-white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.coa-download-button:hover {
    background: var(--accent-yellow);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

.coa-download-icon {
    font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .coa-iframe-wrapper {
        height: 400px;
    }

    .coa-click-overlay::after {
        font-size: 0.85rem;
        padding: 10px 16px;
    }

    .coa-modal-content {
        height: 95vh;
        max-width: 100%;
        border-radius: 16px;
    }

    .coa-modal-header,
    .coa-modal-footer {
        padding: 16px 20px;
    }

    .coa-modal-title {
        font-size: 1.2rem;
    }
}

/* ========================================
   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(0, 107, 63, 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;
    background: linear-gradient(135deg, var(--neutral-white), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cannabinoids-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    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(0, 107, 63, 0.1);
    border: 1px solid rgba(0, 107, 63, 0.3);
    border-radius: 16px;
    transition: all 0.3s var(--ease-out-expo);
}

.highlight-item:hover {
    background: rgba(0, 107, 63, 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-yellow));
    flex-shrink: 0;
}

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

.highlight-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 8px;
    word-break: break-word;
}

.highlight-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    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(0, 107, 63, 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: rgba(255, 255, 255, 0.5);
    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: auto;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    align-items: start;
}

.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(255, 184, 0, 0.1),
        transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.bento-card:hover {
    border-color: rgba(255, 184, 0, 0.4);
    box-shadow: 0 16px 48px rgba(0, 107, 63, 0.3);
    transform: scale(1.02);
}

.bento-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 12px var(--glow-yellow));
    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-yellow));
}

.bento-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--neutral-white);
    word-break: break-word;
    hyphens: auto;
}

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

.bento-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    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;
    background: linear-gradient(135deg, var(--accent-yellow), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.footer-slogan {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--neutral-white);
    margin-bottom: 20px;
}

.footer-address {
    font-style: normal;
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

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

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: var(--neutral-white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s var(--ease-out-expo);
}

.contact-link:hover {
    background: rgba(255, 184, 0, 0.1);
    border-color: var(--accent-yellow);
    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: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-yellow);
}

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

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

    .hero-title {
        font-size: 7.5rem;
        line-height: 0.85;
        padding: 30px 0 50px;
    }

    .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 550px;
        min-height: 170vh;
    }

    .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) {
    .coa-iframe-wrapper {
        height: 500px;
    }

    .floating-nav {
        top: 20px;
        padding: 12px 20px;
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        font-size: 1.2rem;
        font-weight: 900;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        text-align: center;
    }

    .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: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
    }

    .word span {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        padding: 0.05em !important;
        margin: 0 !important;
        display: inline-block !important;
        line-height: 0.9 !important;
        vertical-align: baseline !important;
        overflow: visible !important;
    }

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

    .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) {
    .coa-iframe-wrapper {
        height: 450px;
    }

    .floating-nav {
        top: 16px;
        padding: 12px 16px;
        gap: 12px;
        width: 90%;
        max-width: 600px;
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        font-size: 1.15rem;
        font-weight: 900;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        text-align: center;
    }

    .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: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
    }

    .word span {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        padding: 0.05em !important;
        margin: 0 !important;
        display: inline-block !important;
        line-height: 0.9 !important;
        vertical-align: baseline !important;
        overflow: visible !important;
    }

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

    .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) {
    .coa-iframe-wrapper {
        height: 350px;
    }

    .coa-click-overlay::after {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .floating-nav {
        top: 12px;
        padding: 10px 16px;
        gap: 10px;
        width: 92%;
        flex-direction: column;
        align-items: center;
    }

    .nav-logo {
        font-size: 1.1rem;
        font-weight: 900;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        text-align: center;
    }

    .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: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
    }

    .word span {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        padding: 0.05em !important;
        margin: 0 !important;
        display: inline-block !important;
        line-height: 0.9 !important;
        vertical-align: baseline !important;
        overflow: visible !important;
    }

    .hero-section {
        padding: 140px 20px 450px;
        min-height: 145vh;
    }

    .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 {
        font-size: 1.6rem;
    }
}

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

    .coa-iframe-wrapper {
        height: 300px;
    }

    .coa-title {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .coa-click-overlay::after {
        font-size: 0.75rem;
        padding: 8px 12px;
    }

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

    .nav-logo {
        font-size: 1.1rem;
        font-weight: 900;
        padding-bottom: 6px;
        border-bottom: 1px solid rgba(255, 184, 0, 0.2);
        width: 100%;
        text-align: center;
    }

    .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: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
    }

    .word span {
        color: #FFFFFF !important;
        -webkit-text-fill-color: #FFFFFF !important;
        padding: 0.05em !important;
        margin: 0 !important;
        display: inline-block !important;
        line-height: 0.9 !important;
        vertical-align: baseline !important;
        overflow: visible !important;
    }

    .hero-section {
        padding: 130px 16px 420px;
        min-height: 140vh;
    }

    .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 {
        font-size: 1.4rem;
    }

    .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;
    }
}
