/* ==========================================
   NutriVida - Landing Page CSS
   Identidade Visual Oficial
   ========================================== */

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

:root {
    --brand-mint: #9FC7AD;
    --brand-green: #299154;
    --brand-blue-1: #19506F;
    --brand-blue-2: #3B7090;
    --brand-gold: #D6B25E;
    --brand-red: #D64545;
    
    --primary-blue: var(--brand-blue-1);
    --primary-teal: var(--brand-green);
    --accent-green: var(--brand-green);
    --accent-yellow: var(--brand-gold);
    --accent-red: var(--brand-red);
    --light-teal: var(--brand-mint);
    
    /* Cores Neutras */
    --white: #FFFFFF;
    --light-gray: #F6F7F9;
    --gray: #E6E8EC;
    --medium-gray: #8B92A0;
    --dark-gray: #5F6776;
    --black: #0D0F12;
    --text-dark: #0F172A;
    --border: rgba(15, 23, 42, 0.10);
    
    /* Fontes */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Montserrat', sans-serif;
    
    /* Espaçamento */
    --container-width: 1200px;
    --section-padding: 80px 0;
    
    /* Transições */
    --transition-base: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    
    /* Sombras */
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

/* === Navigation === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.72);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition-base);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255,255,255,0.9);
}

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

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-logo {
    height: 34px;
    width: auto;
}

.nav-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

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

.nav-menu a {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-dark);
    position: relative;
}

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

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

.nav-menu a:hover {
    color: var(--primary-teal);
}

/* === Buttons === */
.btn-primary, .btn-secondary, .btn-hero-primary, .btn-hero-secondary,
.btn-product-primary, .btn-product-secondary, .btn-cta-primary, .btn-cta-secondary,
.btn-card, .btn-difly, .btn-block {
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-family: var(--font-primary);
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
}

.btn-primary:hover {
    filter: brightness(0.95);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 1px solid rgba(41, 145, 84, 0.35);
}

.btn-secondary:hover {
    background: rgba(41, 145, 84, 0.08);
}

.btn-sm {
    padding: 10px 16px;
    font-size: 14px;
}

.btn-lg {
    padding: 14px 22px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

button.scroll-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.68);
    color: var(--brand-blue-1);
    backdrop-filter: blur(14px);
    display: grid;
    place-items: center;
    cursor: pointer;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, background 0.25s ease;
    z-index: 999;
}

button.scroll-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

button.scroll-to-top:hover {
    background: rgba(255,255,255,0.86);
}

button.scroll-to-top:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(159,199,173,0.35);
}

a.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 78px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: linear-gradient(135deg, #25D366 0%, #1DA851 100%);
    color: var(--white);
    display: grid;
    place-items: center;
    transition: transform 0.25s ease, filter 0.25s ease;
    z-index: 999;
}

a.whatsapp-float:hover {
    transform: translateY(-2px);
    filter: brightness(1.02);
}

a.whatsapp-float:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255,255,255,0.35);
}

/* === Hamburger Menu === */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* === Hero (Apple + Agro premium) === */
.hero {
    position: relative;
    padding: 120px 0 90px;
    overflow: clip;
    background: radial-gradient(1200px 800px at 20% 10%, rgba(159, 199, 173, 0.24), transparent 65%),
        linear-gradient(135deg, var(--brand-blue-1) 0%, var(--brand-blue-2) 100%);
    min-height: 170vh;
}

.hero.hero-classic {
    padding: 130px 0 0;
    min-height: auto;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(25, 80, 111, 0.94) 0%, rgba(59, 112, 144, 0.92) 100%),
        url('../images/hero-bovino.jpg');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(900px 600px at 15% 10%, rgba(159, 199, 173, 0.26), transparent 60%),
        linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.58) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 0 72px;
}

.hero-text {
    max-width: 720px;
    color: rgba(255,255,255,0.92);
}

.hero.hero-classic .hero-title {
    margin-bottom: 18px;
    letter-spacing: -0.03em;
}

.hero-pre {
    display: inline-flex;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.18);
    background: rgba(255,255,255,0.08);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-main {
    display: block;
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
}

.hero.hero-classic .highlight {
    color: var(--brand-mint);
}

.hero-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255,255,255,0.86);
    margin-bottom: 26px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 22px;
}

.hero-trust {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.80);
}

.hero-trust i {
    color: var(--brand-mint);
}

.hero-stats {
    position: relative;
    z-index: 2;
    padding: 0 0 70px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.stat-item {
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    padding: 18px 18px;
    text-align: left;
}

.stat-number {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    font-weight: 800;
    color: rgba(255,255,255,0.90);
}

.stat-sub {
    margin-top: 6px;
    font-size: 13px;
    color: rgba(255,255,255,0.72);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(320px, 520px) 1fr;
    gap: 64px;
    align-items: start;
}

.hero-media {
    position: sticky;
    top: 110px;
}

.frame-player {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.frame-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.frame-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 28px;
}

.frame-player.is-ready .frame-fallback {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hero-copy {
    color: rgba(255,255,255,0.92);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 900;
    line-height: 1.05;
    color: var(--white);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255,255,255,0.86);
    max-width: 54ch;
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 34px;
}

.hero-story {
    display: grid;
    gap: 18px;
    margin-bottom: 26px;
    max-width: 60ch;
}

.hero-story-item {
    padding: 18px 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    opacity: 0.55;
    transform: translateY(6px);
    transition: opacity 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}

.hero-story-item h3 {
    color: var(--white);
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.hero-story-item p {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    margin: 0;
}

.hero-story-item.is-active {
    opacity: 1;
    transform: translateY(0);
    border-color: rgba(255,255,255,0.22);
}

.hero-keyphrases {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.84);
}

.hero-keyphrases span {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(255,255,255,0.05);
}

/* === Benefits (classic content) === */
.benefits-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.benefit-card {
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.82);
    backdrop-filter: blur(14px);
    padding: 24px 22px;
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: var(--brand-blue-1);
    color: var(--white);
    margin-bottom: 14px;
}

.benefit-icon img {
    width: 28px;
    height: 28px;
    display: block;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* === Products (classic content) === */
.product-card.featured {
    border-top-color: var(--brand-green);
}

.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(41, 145, 84, 0.10);
    border: 1px solid rgba(41, 145, 84, 0.18);
    color: var(--brand-green);
    font-size: 12px;
    font-weight: 800;
    margin: 18px 18px 0;
    width: fit-content;
}

.product-image {
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    background: var(--white);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-content {
    padding: 20px 18px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-name {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 900;
    color: var(--brand-blue-1);
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.product-tagline {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.product-divider {
    height: 1px;
    background: var(--gray);
    margin: 12px 0 14px;
}

.product-features {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0 0 16px;
    padding: 0;
}

.product-features li {
    display: flex;
    gap: 10px;
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.5;
}

.product-features i {
    color: var(--brand-green);
    margin-top: 2px;
}

.btn-product {
    width: 100%;
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid rgba(25, 80, 111, 0.18);
    background: rgba(25, 80, 111, 0.06);
    color: var(--brand-blue-1);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.btn-product:hover {
    transform: translateY(-1px);
    background: rgba(25, 80, 111, 0.10);
    border-color: rgba(25, 80, 111, 0.24);
}

.btn-product.premium {
    background: rgba(41, 145, 84, 0.10);
    border-color: rgba(41, 145, 84, 0.22);
    color: var(--brand-green);
}

.btn-product.premium:hover {
    background: rgba(41, 145, 84, 0.14);
}

.products-cta {
    margin-top: 28px;
    text-align: center;
    color: var(--dark-gray);
}

.products-cta p {
    margin-bottom: 14px;
}

/* === About (classic content) === */
.about-image-photo {
    width: 100%;
    border-radius: 16px;
    height: auto;
    display: block;
    object-fit: contain;
    background: rgba(255,255,255,0.8);
    padding: 10px;
}

/* === Testimonials (classic content) === */
.testimonials {
    padding: var(--section-padding);
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 34px;
}

.testimonial-card {
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(14px);
    padding: 24px 22px;
}

.testimonial-quote {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(159, 199, 173, 0.22);
    color: var(--brand-blue-1);
    margin-bottom: 12px;
}

.testimonial-text {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 18px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: rgba(25, 80, 111, 0.08);
    color: var(--brand-blue-1);
    display: grid;
    place-items: center;
    font-size: 22px;
}

.testimonial-author h4 {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.testimonial-author p {
    font-size: 13px;
    color: var(--medium-gray);
    margin: 0;
}

/* === FAQ (classic content) === */
.faq-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.faq-grid {
    display: grid;
    gap: 12px;
    margin-top: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border-radius: 16px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 18px 18px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: 800;
    font-size: 14px;
    color: var(--text-dark);
    text-align: left;
}

.faq-question i {
    color: var(--brand-blue-1);
    transition: transform 0.2s ease;
}

.faq-answer {
    padding: 0 18px 18px;
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.8;
}

.faq-item.is-open .faq-question i {
    transform: rotate(180deg);
}

/* === Benefits Bar === */
.benefits-bar {
    background: var(--primary-blue);
    padding: 40px 0;
    position: relative;
}

.benefits-title {
    text-align: center;
    color: var(--white);
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 32px;
}

.benefits-title span {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-yellow);
    margin-top: 8px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    transition: var(--transition-base);
}

.benefit-item:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
}

.benefit-item i {
    font-size: 36px;
    color: var(--accent-green);
}

.benefit-item span {
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 44px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.section-title .highlight {
    color: var(--primary-teal);
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
    max-width: 700px;
    margin: 0 auto;
}

.section {
    padding: 96px 0;
    background: var(--white);
}

.section-soft {
    background: var(--light-gray);
}

.section-dark {
    background: radial-gradient(1200px 800px at 20% 10%, rgba(159, 199, 173, 0.18), transparent 65%),
        linear-gradient(135deg, var(--brand-blue-1) 0%, var(--brand-blue-2) 100%);
}

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

.section-subtitle-invert {
    color: rgba(255,255,255,0.82);
}

.card-grid {
    display: grid;
    gap: 18px;
}

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

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
}

.card-invert {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
}

.card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    color: inherit;
}

.card p {
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.card-invert p {
    color: rgba(255,255,255,0.78);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(41, 145, 84, 0.10);
    border: 1px solid rgba(41, 145, 84, 0.18);
    color: var(--brand-green);
    font-size: 18px;
    margin-bottom: 14px;
}

.card-invert .card-icon {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.16);
    color: var(--white);
}

.card-icon-red {
    color: #FFD1D1;
}

.card-icon-gold {
    color: #FFE5A6;
}

.card-icon-green {
    color: #C8F8D8;
}

.list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.list li {
    display: flex;
    gap: 10px;
    align-items: baseline;
    font-size: 14px;
    line-height: 1.6;
    color: inherit;
}

.list li::before {
    content: '•';
    color: var(--brand-gold);
    flex: 0 0 auto;
}

.card-invert .list li::before {
    color: rgba(255,255,255,0.7);
}

.impact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 14px;
    align-items: center;
    margin-bottom: 26px;
}

.impact-stat {
    padding: 16px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
}

.impact-value {
    display: block;
    font-weight: 900;
    font-size: 18px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.impact-label {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.impact-highlight {
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(214, 178, 94, 0.18);
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.solution {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 26px 24px;
}

.solution-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.solution h3 {
    font-size: 18px;
    font-weight: 900;
    margin: 0;
}

.pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pill-blue {
    background: rgba(25, 80, 111, 0.10);
    border: 1px solid rgba(25, 80, 111, 0.18);
    color: var(--brand-blue-1);
}

.pill-green {
    background: rgba(41, 145, 84, 0.10);
    border: 1px solid rgba(41, 145, 84, 0.18);
    color: var(--brand-green);
}

.differential {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    padding-top: 10px;
}

.differential-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
}

.differential-item i {
    color: var(--brand-green);
}

.result-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.result {
    padding: 18px 16px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.74);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.result i {
    color: var(--brand-green);
}

.consumo {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.consumo-item {
    padding: 22px 18px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.74);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}

.consumo-item i {
    color: var(--brand-blue-1);
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.authority {
    padding: 22px 18px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
    text-align: center;
}

.authority-value {
    display: block;
    font-size: 30px;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
}

.authority-label {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.78);
}

.cta-final {
    padding: 110px 0;
    background: radial-gradient(1200px 800px at 20% 10%, rgba(159, 199, 173, 0.20), transparent 65%),
        linear-gradient(135deg, var(--brand-blue-1) 0%, var(--brand-blue-2) 100%);
    text-align: center;
}

.cta-final-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.cta-final-text {
    color: rgba(255,255,255,0.85);
    font-size: 16px;
    max-width: 60ch;
    margin: 0 auto 26px;
}

/* === Products Section === */
.products-section {
    padding: var(--section-padding);
    background: var(--white);
}

.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Product Hero */
.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.product-badge-corner {
    position: absolute;
    top: 30px;
    right: -40px;
    background: var(--accent-red);
    color: var(--white);
    padding: 8px 50px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    transform: rotate(45deg);
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.product-hero-image {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
}

.product-hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-hero:hover .product-hero-image img {
    transform: scale(1.05);
}

.product-hero-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category {
    display: inline-block;
    background: var(--primary-teal);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    width: fit-content;
}

.product-hero-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-blue);
    line-height: 1.1;
    margin-bottom: 8px;
}

.product-weight {
    color: var(--primary-teal);
    font-size: 42px;
}

.product-hero-description {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.product-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    gap: 16px;
    align-items: start;
}

.feature-item i {
    color: var(--accent-green);
    font-size: 24px;
    margin-top: 2px;
}

.feature-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.5;
}

.product-specs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light-gray);
    border-radius: 12px;
}

.spec-item {
    display: flex;
    gap: 12px;
    align-items: center;
}

.spec-item i {
    font-size: 24px;
    color: var(--primary-teal);
}

.spec-item strong {
    display: block;
    font-size: 12px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.spec-item span {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.product-cta {
    display: flex;
    gap: 12px;
}

.btn-product-primary {
    flex: 1;
    justify-content: center;
    background: var(--primary-teal);
    color: var(--white);
    font-size: 16px;
    padding: 16px 24px;
}

.btn-product-primary:hover {
    background: var(--primary-blue);
}

.btn-product-secondary {
    background: transparent;
    color: var(--primary-teal);
    border: 2px solid var(--primary-teal);
}

.btn-product-secondary:hover {
    background: var(--primary-teal);
    color: var(--white);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: stretch;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-top: 4px solid var(--primary-teal);
    display: flex;
    flex-direction: column;
}

.product-card.card-yellow {
    border-top-color: var(--accent-yellow);
}

.product-card.card-red {
    border-top-color: var(--accent-red);
}

.product-card.card-turquoise {
    border-top-color: var(--primary-teal);
}

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

.product-card-image {
    height: 250px;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-card-content {
    padding: 28px;
}

.product-card-content .product-category {
    font-size: 11px;
    padding: 4px 10px;
}

.product-card-content h4 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    color: var(--primary-blue);
    margin-bottom: 4px;
    line-height: 1.1;
}

.product-card-content h4 span {
    color: var(--primary-teal);
    font-size: 24px;
}

.product-card-content p {
    font-size: 14px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.product-mini-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.product-mini-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.product-mini-features i {
    color: var(--accent-green);
    font-size: 14px;
}

.btn-card {
    width: 100%;
    justify-content: center;
    background: var(--primary-teal);
    color: var(--white);
}

.btn-card:hover {
    background: var(--primary-blue);
}

/* === Difly Section === */
.difly-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
}

.difly-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    align-items: center;
    gap: 32px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
}

.difly-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.difly-seal {
    width: 240px;
    height: 240px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255,255,255,0.18);
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0,0,0,0.25);
}

.difly-seal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.difly-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.difly-icon i {
    font-size: 40px;
    color: var(--primary-blue);
}

.difly-text h2,
.difly-text h3 {
    font-size: 28px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.difly-text p {
    color: rgba(255,255,255,0.95);
    font-size: 16px;
    line-height: 1.6;
}

.difly-lead {
    color: rgba(255,255,255,0.92);
    font-weight: 700;
    margin-bottom: 12px;
}

.difly-benefits {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.difly-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.92);
    font-size: 14px;
    font-weight: 600;
}

.difly-benefit-item i {
    color: var(--accent-yellow);
}

.btn-difly {
    background: var(--white);
    color: var(--primary-blue);
    font-weight: 700;
    white-space: nowrap;
}

.btn-difly:hover {
    background: var(--accent-yellow);
    transform: translateY(-2px);
}

/* === Why Section === */
.why-section {
    padding: var(--section-padding);
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.why-card {
    background: var(--light-gray);
    padding: 36px 28px;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-base);
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-icon i {
    font-size: 32px;
    color: var(--white);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.6;
}

/* === About Section === */
.about-section {
    padding: var(--section-padding);
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-lead {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-content p {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-quote {
    background: var(--white);
    padding: 24px 32px;
    border-left: 4px solid var(--primary-teal);
    border-radius: 8px;
    margin: 32px 0;
    position: relative;
}

.about-quote i {
    font-size: 32px;
    color: var(--primary-teal);
    opacity: 0.2;
    position: absolute;
    top: 16px;
    left: 16px;
}

.about-quote p {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-blue);
    font-style: italic;
    margin: 0;
    padding-left: 40px;
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-image-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-highlights {
    display: flex;
    gap: 16px;
}

.highlight-item {
    flex: 1;
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-sm);
}

.highlight-item i {
    color: var(--accent-green);
    font-size: 24px;
}

.highlight-item span {
    font-weight: 700;
    color: var(--text-dark);
    font-size: 14px;
}

/* === CTA Section === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-teal) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 15s ease-in-out infinite;
}

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

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

.cta-title {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.2;
}

.cta-title .highlight {
    color: var(--accent-yellow);
}

.cta-text {
    font-size: 18px;
    color: rgba(255,255,255,0.95);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: #25D366;
    color: var(--white);
    font-size: 18px;
    padding: 18px 40px;
    font-weight: 700;
}

.btn-cta-primary:hover {
    background: #1DA851;
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: rgba(255,255,255,0.15);
    color: var(--white);
    border: 2px solid var(--white);
    backdrop-filter: blur(10px);
    font-size: 18px;
    padding: 18px 40px;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
}

.cta-footer {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cta-footer i {
    color: var(--accent-green);
}

/* === Footer === */
.footer {
    background: #0B0F16;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo {
    height: 34px;
    width: auto;
}

.footer-tagline {
    font-size: 10px;
    font-weight: 500;
    color: var(--medium-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.footer-column p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

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

.footer-social a:hover {
    background: var(--primary-teal);
    transform: translateY(-2px);
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column li a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-column li a:hover {
    color: var(--primary-teal);
}

.footer-column li i {
    color: var(--primary-teal);
    font-size: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    margin-bottom: 8px;
}

.footer-credits {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}

/* === Modals === */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: var(--transition-base);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    background: var(--light-gray);
    color: var(--primary-teal);
}

.modal h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

/* Modal Difly */
.modal-difly {
    text-align: center;
}

.modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--light-teal) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.modal-icon i {
    font-size: 50px;
    color: var(--white);
}

.modal-lead {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 32px;
}

.modal-divider {
    height: 1px;
    background: var(--gray);
    margin: 18px 0 22px;
}

.modal-product-detail h3 {
    font-size: 16px;
    font-weight: 900;
    color: var(--text-dark);
    margin: 18px 0 10px;
}

.modal-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: grid;
    gap: 10px;
}

.modal-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: var(--dark-gray);
    font-size: 14px;
    line-height: 1.6;
}

.modal-list i {
    color: var(--accent-green);
    margin-top: 2px;
}

.modal-specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 20px;
}

.modal-spec {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 12px 12px;
    background: rgba(246, 247, 249, 0.9);
    color: var(--text-dark);
    font-size: 13px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.modal-actions .btn-primary,
.modal-actions .btn-secondary {
    flex: 1;
    justify-content: center;
    min-width: 220px;
}

.difly-benefits-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
    text-align: left;
}

.benefit-detail {
    display: flex;
    gap: 16px;
    align-items: start;
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
}

.benefit-detail i {
    font-size: 32px;
    color: var(--primary-teal);
}

.benefit-detail h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.benefit-detail p {
    font-size: 14px;
    color: var(--dark-gray);
    line-height: 1.6;
}

.modal-highlight {
    background: rgba(45,155,140,0.1);
    border-left: 4px solid var(--primary-teal);
    padding: 20px 24px;
    border-radius: 8px;
    display: flex;
    gap: 16px;
    align-items: start;
    margin-bottom: 32px;
    text-align: left;
}

.modal-highlight i {
    font-size: 24px;
    color: var(--primary-teal);
    margin-top: 2px;
}

.modal-highlight p {
    font-size: 15px;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.6;
}

/* Contact Form */
.contact-form {
    margin-top: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--gray);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 15px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-teal);
}

/* === Animations === */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

.page-product {
    background: var(--white);
}

.page-product .navbar {
    background: rgba(255, 255, 255, 0.76);
    border-bottom-color: rgba(25, 80, 111, 0.12);
    backdrop-filter: blur(14px);
}

.page-product .navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
}

.supera-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.10);
}

.supera-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #22c55e 0%, var(--accent-yellow) 100%);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.supera-scrub {
    position: relative;
    padding: 120px 0 80px;
    min-height: 320vh;
    background: radial-gradient(1200px 760px at 18% 18%, rgba(159, 199, 173, 0.30), transparent 60%),
        radial-gradient(900px 700px at 85% 35%, rgba(255, 214, 80, 0.18), transparent 60%),
        linear-gradient(135deg, var(--brand-blue-1) 0%, var(--brand-blue-2) 100%);
}

.supera-scrub-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
}

.supera-scrub-copy {
    display: grid;
    gap: 18px;
    padding-bottom: 40px;
}

.supera-step-block {
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
    padding: 22px 20px;
    opacity: 0.55;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
}

.supera-step-block.is-active {
    opacity: 1;
    transform: translateY(0);
}

.supera-step-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(25, 80, 111, 0.14);
    background: rgba(25, 80, 111, 0.06);
    color: rgba(25, 80, 111, 0.90);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    width: fit-content;
    margin-bottom: 12px;
}

.supera-step-title-h2 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #07110d;
    margin: 0 0 10px;
}

.supera-step-text-p {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(7, 17, 13, 0.74);
    margin: 0 0 14px;
}

.supera-bullets {
    display: grid;
    gap: 10px;
}

.supera-bullet {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    font-weight: 650;
    color: rgba(7, 17, 13, 0.84);
}

.supera-bullet i {
    color: var(--primary-teal);
}

.supera-scrub-media {
    position: relative;
}

.supera-media-sticky {
    position: sticky;
    top: 110px;
}

.supera-media-card {
    position: relative;
    height: calc(100vh - 150px);
    min-height: 520px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.82);
    box-shadow: 0 22px 60px rgba(0,0,0,0.18);
    overflow: hidden;
}

.supera-media-label {
    position: absolute;
    left: 16px;
    top: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(25, 80, 111, 0.14);
    background: rgba(255,255,255,0.92);
    color: rgba(25, 80, 111, 0.90);
    font-size: 12px;
    font-weight: 850;
}

.supera-canvas,
.supera-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.supera-fallback {
    object-fit: contain;
    padding: 7vh 7vw;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.supera-fallback.is-hidden {
    opacity: 0;
}

.page-supera-max .supera-progress {
    background: rgba(25, 80, 111, 0.12);
}

.supera-apple-hero {
    position: relative;
    height: 300vh;
    background: radial-gradient(1100px 760px at 18% 14%, rgba(159, 199, 173, 0.26), transparent 60%),
        radial-gradient(900px 700px at 85% 28%, rgba(255, 214, 80, 0.16), transparent 60%),
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.supera-apple-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 92px;
    padding-bottom: 40px;
}

.supera-apple-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 44px;
    align-items: center;
}

.supera-apple-copy {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.supera-apple-story {
    position: relative;
    min-height: 320px;
}

.supera-apple-story .supera-apple-step {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
}

.supera-apple-story .supera-apple-step.is-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.supera-apple-product {
    position: relative;
    border-radius: 30px;
    border: none;
    background: transparent;
    box-shadow: none;
    height: min(78vh, 680px);
    overflow: hidden;
}

.supera-apple-product-inner {
    position: absolute;
    inset: 0;
    will-change: transform, opacity;
}

.page-supera-max .supera-debug {
    right: 14px;
    top: 14px;
}

.page-product .supera-replay {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 4;
    margin-top: 0;
    background: rgba(255,255,255,0.82);
    color: rgba(25, 80, 111, 0.92);
    border-color: rgba(25, 80, 111, 0.14);
}

.page-select-cria .supera-media-card {
    background: transparent;
    border: none;
    box-shadow: none;
}

.supera-hero {
    position: relative;
    height: 320vh;
    background: radial-gradient(1000px 700px at 30% 20%, rgba(34, 197, 94, 0.18), transparent 60%),
        radial-gradient(900px 700px at 80% 40%, rgba(234, 179, 8, 0.10), transparent 60%),
        linear-gradient(180deg, #050807 0%, #0a1410 55%, #050807 100%);
}

.supera-hero-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.supera-canvas,
.supera-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.supera-fallback {
    object-fit: contain;
    padding: 7vh 10vw;
    opacity: 1;
    transition: opacity 0.25s ease;
}

.supera-apple-product .supera-fallback {
    padding: 3vh 3vw;
}

.supera-fallback.is-hidden {
    opacity: 0;
}

.supera-canvas {
    transition: filter 0.2s ease, transform 0.4s ease;
    transform: scale(1.01);
    filter: saturate(1.08) contrast(1.05);
}

.supera-canvas.is-blur {
    filter: blur(7px) saturate(1.12) contrast(1.06);
    transform: scale(1.025);
}

.supera-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.52) 0%, rgba(0,0,0,0.22) 35%, rgba(0,0,0,0.62) 100%);
    pointer-events: none;
}

.supera-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 130px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 16px;
}

.supera-hero-kicker {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.supera-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(25, 80, 111, 0.14);
    background: rgba(25, 80, 111, 0.06);
    color: rgba(25, 80, 111, 0.92);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
}

.supera-hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    line-height: 1.03;
    color: var(--brand-blue-1);
    letter-spacing: -0.03em;
    max-width: 18ch;
}

.supera-hero-subtitle {
    font-size: 18px;
    line-height: 1.75;
    color: rgba(7, 17, 13, 0.70);
    max-width: 62ch;
}

.supera-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 6px;
}

.supera-hero-checks {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 10px 14px;
    margin-top: 6px;
    max-width: 740px;
}

.supera-check {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(7, 17, 13, 0.82);
    font-size: 14px;
    font-weight: 650;
}

.supera-check i {
    color: #22c55e;
}

.supera-story {
    margin-top: 14px;
    max-width: 560px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.36);
    backdrop-filter: blur(12px);
    padding: 16px 16px;
}

.supera-story-item {
    display: none;
}

.supera-story-item.is-active {
    display: block;
}

.supera-story-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.92);
    margin-bottom: 8px;
}

.supera-story-text {
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    line-height: 1.7;
}

.supera-debug {
    position: absolute;
    right: 16px;
    top: 86px;
    z-index: 3;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.40);
    color: rgba(255,255,255,0.90);
    font-size: 12px;
    font-weight: 700;
}

.supera-replay {
    width: fit-content;
    align-self: flex-start;
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(0,0,0,0.28);
    color: rgba(255,255,255,0.90);
    font-weight: 750;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.supera-replay.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.supera-section {
    padding: 90px 0;
    background: var(--white);
}

.supera-section-header {
    max-width: 900px;
    margin-bottom: 34px;
}

.supera-h2 {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #07110d;
    margin-bottom: 14px;
}

.supera-lead {
    color: rgba(7, 17, 13, 0.74);
    font-size: 16px;
    line-height: 1.8;
}

.supera-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.supera-card {
    border-radius: 20px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    padding: 22px 20px;
}

.supera-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.12);
    color: #0b7b3a;
    margin-bottom: 14px;
    font-size: 18px;
}

.supera-card-icon img {
    width: 24px;
    height: 24px;
    display: block;
}
.supera-card h3 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #07110d;
}

.supera-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(7, 17, 13, 0.70);
    margin: 0;
}

.supera-problema {
    background: linear-gradient(180deg, rgba(7, 17, 13, 0.03) 0%, rgba(7, 17, 13, 0.00) 100%);
}

.supera-solucao {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.07) 0%, rgba(255,255,255,1) 60%);
}

.supera-solution-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: start;
}

.supera-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.supera-pillar {
    border-radius: 16px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.92);
    padding: 14px 14px;
}

.supera-pillar-title {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #0b7b3a;
    margin-bottom: 8px;
}

.supera-pillar-text {
    font-size: 13px;
    color: rgba(7, 17, 13, 0.74);
    line-height: 1.6;
}

.supera-factor {
    margin-top: 16px;
    border-radius: 16px;
    border: 1px solid rgba(234, 179, 8, 0.22);
    background: rgba(234, 179, 8, 0.10);
    padding: 14px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.supera-factor-badge {
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    background: rgba(0,0,0,0.10);
    color: rgba(7, 17, 13, 0.92);
}

.supera-factor-text {
    font-size: 14px;
    color: rgba(7, 17, 13, 0.72);
    line-height: 1.6;
}

.supera-side-card {
    border-radius: 22px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    padding: 22px 20px;
    position: sticky;
    top: 110px;
}

.supera-side-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(7, 17, 13, 0.86);
    margin-bottom: 10px;
}

.supera-side-text {
    color: rgba(7, 17, 13, 0.72);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.supera-side-note {
    margin-top: 12px;
    font-size: 12px;
    color: rgba(7, 17, 13, 0.62);
}

.supera-dark {
    background: linear-gradient(180deg, #070b0a 0%, #0a1410 100%);
}

.supera-dark .supera-h2 {
    color: rgba(255,255,255,0.96);
}

.supera-dark .supera-lead {
    color: rgba(255,255,255,0.72);
}

.supera-card-dark {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.10);
    box-shadow: none;
}

.supera-card-dark h3 {
    color: rgba(255,255,255,0.92);
}

.supera-card-dark p {
    color: rgba(255,255,255,0.70);
}

.supera-card-dark .supera-card-icon {
    background: rgba(234, 179, 8, 0.16);
    color: rgba(255,255,255,0.92);
}

.supera-steps {
    display: grid;
    gap: 14px;
    max-width: 860px;
}

.supera-step {
    border-radius: 18px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.92);
    padding: 18px 18px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.supera-step-number {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(34, 197, 94, 0.12);
    color: #0b7b3a;
    font-weight: 900;
}

.supera-step-title {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 6px;
    color: #07110d;
}

.supera-step-text {
    font-size: 14px;
    color: rgba(7, 17, 13, 0.70);
    line-height: 1.7;
}

.supera-usage {
    background: linear-gradient(180deg, rgba(234, 179, 8, 0.08) 0%, rgba(255,255,255,1) 65%);
}

.supera-usage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.supera-usage-card {
    border-radius: 18px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.92);
    padding: 18px 16px;
}

.supera-usage-title {
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 900;
    font-size: 14px;
    color: #07110d;
    margin-bottom: 10px;
}

.supera-usage-title i {
    color: rgba(234, 179, 8, 0.94);
}

.supera-usage-text {
    font-size: 14px;
    color: rgba(7, 17, 13, 0.72);
    line-height: 1.7;
}

.supera-results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 760px;
}

.supera-result {
    border-radius: 16px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.92);
    padding: 16px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 750;
    color: rgba(7, 17, 13, 0.90);
}

.supera-result i {
    color: #22c55e;
}

.supera-proof {
    background: linear-gradient(180deg, rgba(7, 17, 13, 0.03) 0%, rgba(7, 17, 13, 0.00) 100%);
}

.supera-proof-card {
    border-radius: 24px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 18px 40px rgba(0,0,0,0.06);
    padding: 26px 22px;
}

.supera-proof-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #07110d;
    margin-bottom: 14px;
}

.supera-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0 18px;
}

.supera-proof-item {
    border-radius: 18px;
    border: 1px solid rgba(7, 17, 13, 0.10);
    background: rgba(255,255,255,0.94);
    padding: 16px 16px;
}

.supera-proof-k {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    color: #0b7b3a;
    margin-bottom: 8px;
}

.supera-proof-v {
    font-size: 14px;
    color: rgba(7, 17, 13, 0.72);
    line-height: 1.7;
}

.supera-proof-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.supera-proof-note {
    font-size: 12px;
    color: rgba(7, 17, 13, 0.62);
    font-weight: 650;
}

.supera-final {
    padding: 110px 0;
    background: radial-gradient(1200px 760px at 20% 20%, rgba(159, 199, 173, 0.22), transparent 60%),
        radial-gradient(900px 700px at 85% 35%, rgba(255, 214, 80, 0.14), transparent 60%),
        linear-gradient(135deg, var(--brand-blue-1) 0%, var(--brand-blue-2) 100%);
}

.supera-final-card {
    border-radius: 26px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.10);
    backdrop-filter: blur(14px);
    padding: 34px 26px;
}

.supera-final-title {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    color: rgba(255,255,255,0.96);
    margin-bottom: 12px;
}

.supera-final-text {
    color: rgba(255,255,255,0.76);
    font-size: 16px;
    line-height: 1.8;
    max-width: 70ch;
    margin-bottom: 20px;
}

.supera-final-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.supera-final-micro {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 650;
    color: rgba(255,255,255,0.62);
}

/* === Responsive === */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 70px;
    }

    .hero.hero-classic {
        padding: 120px 0 0;
    }

    .hero-main {
        font-size: 46px;
    }

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

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

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

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-media {
        position: relative;
        top: auto;
        order: -1;
    }

    .nav-actions {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        padding: 18px 20px 22px;
        gap: 16px;
        flex-direction: column;
        background: rgba(255,255,255,0.92);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(14px);
        z-index: 999;
    }

    .card-grid-3,
    .result-grid,
    .consumo,
    .authority-grid {
        grid-template-columns: 1fr;
    }

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

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

    .difly-content {
        grid-template-columns: 220px 1fr;
        padding: 32px;
    }

    .difly-seal {
        width: 200px;
        height: 200px;
    }

    .page-product .supera-scrub-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .page-product .supera-apple-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .page-product .supera-apple-sticky {
        padding-top: 84px;
    }

    .page-product .supera-apple-story {
        min-height: 300px;
    }

    .page-product .supera-apple-product {
        height: 64vh;
        min-height: 460px;
    }

    .page-product .supera-hero-title {
        font-size: 42px;
        max-width: 24ch;
    }

    .page-product .supera-hero-checks {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .page-product .supera-grid-3 {
        grid-template-columns: 1fr;
    }

    .page-product .supera-media-sticky {
        top: 88px;
    }

    .page-product .supera-media-card {
        height: 64vh;
        min-height: 460px;
    }

    .page-product .supera-proof-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-main {
        font-size: 38px;
    }

    .hero-content {
        padding: 26px 0 58px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .stats-grid,
    .benefits-grid,
    .products-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .difly-content {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        padding: 28px 22px;
    }

    .difly-seal {
        width: 160px;
        height: 160px;
    }

    .difly-benefit-item {
        justify-content: center;
    }

    .page-product .supera-hero-title {
        font-size: 36px;
    }

    .page-product .supera-hero-subtitle {
        font-size: 16px;
    }

    .page-product .supera-hero-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .page-product .supera-scrub {
        padding: 108px 0 70px;
        min-height: 260vh;
    }

    .page-product .supera-apple-hero {
        height: 260vh;
    }

    .page-product .supera-apple-sticky {
        padding-top: 78px;
        padding-bottom: 24px;
    }

    .page-product .supera-apple-story {
        min-height: 280px;
    }

    .page-product .supera-apple-product {
        height: 56vh;
        min-height: 380px;
        border-radius: 22px;
    }

    .page-product .supera-media-card {
        height: 58vh;
        min-height: 420px;
    }

    .page-product .supera-step-title-h2 {
        font-size: 28px;
    }

    .page-product .supera-h2 {
        font-size: 32px;
    }

    .page-product .supera-usage-grid {
        grid-template-columns: 1fr;
    }

    .page-product .supera-results-grid {
        grid-template-columns: 1fr;
    }

    .page-product .supera-final-title {
        font-size: 34px;
    }


    .cta-final-title {
        font-size: 34px;
    }

    .modal-content {
        padding: 24px;
    }

    .modal-specs-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
