/* ============================================
   FELLOW CRM - LANDING PAGE
   Modern AI-focused dark theme
   ============================================ */

:root {
    --accent: #44F322;
    --accent-dim: rgba(68, 243, 34, 0.15);
    --accent-glow: rgba(68, 243, 34, 0.4);
    --bg-primary: #050505;
    --bg-secondary: #0c0c0c;
    --bg-tertiary: #080808;
    --bg-elevated: #0f0f0f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-card-hover: rgba(255, 255, 255, 0.06);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-accent: rgba(68, 243, 34, 0.2);
    --text-primary: #f0f0f0;
    --text-secondary: rgba(255, 255, 255, 0.72);
    --text-tertiary: rgba(255, 255, 255, 0.50);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

/* ============================================
   GRADIENT TEXT
   ============================================ */
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #a0ff8f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   SECTION LABELS (pills)
   ============================================ */
.section-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 36px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    text-wrap: balance;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.45);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    height: 36px;
    object-fit: contain;
}

.navbar-links {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-family: var(--font);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--accent);
    color: #000;
}

.btn-primary:hover {
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-1px);
}

.btn-cta {
    background: var(--accent);
    color: #000;
    font-size: 16px;
    padding: 18px 36px;
    font-weight: 700;
}

.btn-cta:hover {
    box-shadow: 0 0 40px var(--accent-glow), 0 0 80px rgba(68, 243, 34, 0.15);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 18px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    padding: 130px 0 56px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 243, 34, 0.12) 0%, transparent 70%);
    top: -20%;
    right: -10%;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 243, 34, 0.06) 0%, transparent 70%);
    bottom: -10%;
    left: -5%;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    margin-bottom: 28px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--accent-glow); }
    50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 480px;
    text-wrap: balance;
}

.hero-cta {
    margin-bottom: 0;
}

.cta-hint {
    margin-top: 14px;
    font-size: 13px;
    color: var(--text-tertiary);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.hero-image-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(68, 243, 34, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
}

.crm-showcase {
    position: relative;
    z-index: 1;
    width: 120%;
    max-width: 120%;
    margin-left: -20%;
    height: auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    box-shadow:
        0 24px 80px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(68, 243, 34, 0.05);
}

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

/* ============================================
   GLASS CARDS (Problema)
   ============================================ */
.problema {
    padding: 48px 0;
    position: relative;
    background: var(--bg-tertiary);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.glass-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-accent);
    transform: translateY(-4px);
}

.card-icon-wrap {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    font-size: 22px;
}

.glass-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.glass-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CONSEQUENCE */
.consequence-card {
    position: relative;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-accent);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
}

.consequence-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(68, 243, 34, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.consequence-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    position: relative;
}

.consequence-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
}

/* ============================================
   SOLUÇÃO
   ============================================ */
.solucao {
    padding: 48px 0;
    background: var(--bg-elevated);
    position: relative;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.solution-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.solution-card:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.card-number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    background: var(--accent-dim);
    border: 1px solid var(--border-accent);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.solution-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* SHOWCASE */
.showcase-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

.showcase-image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    margin-bottom: 16px;
    cursor: pointer;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.35s ease,
                box-shadow 0.45s ease;
}

.showcase-image-wrap:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 40px rgba(68, 243, 34, 0.1);
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0.85);
    transition: filter 0.35s ease;
}

.showcase-image-wrap:hover .showcase-image {
    filter: brightness(1);
}

.showcase-item h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    text-wrap: balance;
    letter-spacing: -0.01em;
}

.showcase-item p {
    font-size: 13px;
    color: var(--text-tertiary);
}

/* ============================================
   MÉTRICAS
   ============================================ */
.metricas {
    padding: 40px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

.metricas-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.metrica-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
}

.metrica-valor {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(135deg, var(--accent), #a0ff8f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metrica-label {
    font-size: 13px;
    color: var(--text-tertiary);
    text-align: center;
    font-weight: 500;
}

.metrica-divider {
    width: 1px;
    height: 64px;
    background: var(--border-subtle);
}

/* ============================================
   VANTAGENS / BENEFÍCIOS
   ============================================ */
.vantagens {
    padding: 48px 0;
    background: var(--bg-tertiary);
}

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

.benefit-card {
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-4px);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 18px;
    display: block;
}

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    text-wrap: balance;
    letter-spacing: -0.02em;
}

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

/* ============================================
   COMPARAÇÃO
   ============================================ */
.comparacao {
    padding: 48px 0;
    background: var(--bg-elevated);
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.comparison-column {
    padding: 40px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    background: var(--bg-card);
}

.comparison-column.depois {
    border-color: var(--border-accent);
    background: rgba(68, 243, 34, 0.03);
}

.comparison-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    text-wrap: balance;
    text-align: center;
    letter-spacing: -0.02em;
}

.comparison-column.depois h3 {
    color: var(--accent);
}

.comparison-column.antes h3 {
    color: var(--text-secondary);
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-md);
}

.comparison-item:last-child {
    margin-bottom: 0;
}

.icon-x {
    font-size: 14px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 80, 80, 0.12);
    color: #ff5050;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.icon-check {
    font-size: 14px;
    font-weight: 700;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-dim);
    color: var(--accent);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.comparison-item p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ============================================
   COMO FUNCIONA
   ============================================ */
.como-funciona {
    padding: 48px 0;
    background: var(--bg-primary);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.step-card {
    padding: 36px 28px;
    text-align: center;
    position: relative;
}

.step-line {
    position: absolute;
    top: 44px;
    right: -10%;
    width: 20%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 24px;
    box-shadow: 0 0 30px var(--accent-glow);
}

.step-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.step-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 48px 0;
    background: var(--bg-tertiary);
    position: relative;
    overflow: hidden;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(68, 243, 34, 0.08) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    position: relative;
}

.cta-content > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    position: relative;
}

.cta-contact {
    margin-top: 28px;
    position: relative;
}

.cta-phone {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.cta-contact p {
    font-size: 14px;
    color: var(--text-tertiary);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--bg-primary);
    padding: 24px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
    justify-self: start;
}

.footer-logo {
    height: 32px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%) brightness(1.8);
}

.footer-copy {
    color: var(--text-tertiary);
    font-size: 13px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 80%;
    max-height: 85vh;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 80px rgba(68, 243, 34, 0.06);
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.4s ease;
    cursor: default;
}

.lightbox.active .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 32px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.lightbox-close:hover {
    background: rgba(255, 80, 80, 0.15);
    color: #ff5050;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top-footer {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.25s ease, color 0.25s ease;
}

.scroll-top-footer:hover {
    background: rgba(68, 243, 34, 0.12);
    border-color: rgba(68, 243, 34, 0.3);
    color: var(--accent);
}

.scroll-top-footer svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
}

.scroll-top-footer:hover svg {
    transform: translateY(-2px);
}

/* ============================================
   ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .navbar-content {
        justify-content: center;
    }

    .navbar-content .btn-primary {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .navbar-links {
        display: none;
    }

    .problema,
    .solucao,
    .vantagens,
    .comparacao,
    .como-funciona,
    .cta-final {
        padding: 40px 0;
    }

    .metricas {
        padding: 32px 0;
    }

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

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .step-line {
        display: none;
    }

    .showcase-section {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 48px;
        min-height: auto;
    }

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

    .problema,
    .solucao,
    .vantagens,
    .comparacao,
    .como-funciona,
    .cta-final {
        padding: 36px 0;
    }

    .metricas {
        padding: 28px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

    .comparison-table {
        grid-template-columns: 1fr;
    }

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

    .metricas-grid {
        flex-wrap: wrap;
        gap: 32px;
    }

    .metrica-divider {
        display: none;
    }

    .metrica-item {
        flex: 0 0 45%;
    }

    .metrica-valor {
        font-size: 36px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 12px;
    }

    .footer-brand {
        justify-self: center;
    }

    .footer-copy {
        justify-self: center;
    }

    .scroll-top-footer {
        justify-self: center;
    }

    .navbar-content {
        padding: 12px 0;
    }

    .logo {
        height: 28px;
    }

    .btn {
        font-size: 13px;
        padding: 10px 20px;
    }

    .btn-cta {
        font-size: 15px;
        padding: 16px 28px;
    }

    .consequence-card {
        padding: 32px 24px;
    }

    .consequence-card h3 {
        font-size: 20px;
    }

    .glass-card,
    .solution-card,
    .benefit-card {
        padding: 28px;
    }

    .comparison-column {
        padding: 28px;
    }

    .scroll-top-footer {
        font-size: 12px;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-subtitle {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .metricas-grid {
        gap: 24px;
    }

    .metrica-item {
        flex: 0 0 45%;
    }
}
