/* ============================================================
   🎨 CORES PRINCIPAIS
   ============================================================ */
:root {
    /* Cores gerais */
    --cor-principal: #0f172a;
    --cor-secundaria: #f8fafc;
    --cor-texto-escuro: #0f172a;
    --cor-destaque: #0fe500;
    --cor-destaque-hover: #0bc800;

    /* Cores isoladas */
    --header-cor: #0850f8;
    --footer-cor: #0a0f1a;

    /* Fundos */
    --fundo-base: #ffffff;

    /* Sistema */
    --primary: var(--cor-principal);
    --bg-light: var(--cor-secundaria);
    --text: var(--cor-texto-escuro);
    --cta: var(--cor-destaque);
    --cta-hover: var(--cor-destaque-hover);
    --cta-glow: rgba(15, 229, 0, 0.35);
    --background: var(--fundo-base);
    --secondary: #1e293b;
    --bg-alt: #f1f5f9;
    --text-light: #475569;
    --text-muted: #64748b;
    --text-on-dark: #e2e8f0;
    --border: #e2e8f0;
    --success: #22c55e;
    --white: #ffffff;

    /* Header */
    --header-bg: var(--header-cor);
    --header-text: #ffffff;
    --header-border: rgba(255, 255, 255, 0.06);

    /* Footer */
    --footer-bg: var(--footer-cor);
    --footer-text: #e2e8f0;
    --footer-link: var(--cor-destaque);
    --footer-link-hover: #0bc800;
    --footer-border: rgba(255, 255, 255, 0.05);

    /* Sombras */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.10), 0 4px 10px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(0, 0, 0, 0.06);

    /* Layout */
    --max-width: 1100px;
    --header-height: 56px;
}

/* ============================================================
   RESET E BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--header-height);
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    background: none;
    border: none;
    cursor: pointer;
}

/* ============================================================
   UTILITÁRIOS
   ============================================================ */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }
}

/* ============================================================
   BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    text-align: center;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 20px;
        font-size: 0.85rem;
        white-space: normal;
    }
}

.btn-cta {
    background-color: var(--cta);
    color: var(--white);
    box-shadow: 0 4px 14px var(--cta-glow);
    animation: pulse-cta 2.2s ease-in-out infinite;
}

.btn-cta:hover {
    background-color: var(--cta-hover);
    box-shadow: 0 8px 28px var(--cta-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
}

.btn-outline-light {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 8px;
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

@keyframes pulse-cta {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 14px var(--cta-glow);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 30px var(--cta-glow);
    }
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background-color: var(--header-bg);
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
    border-bottom: 1px solid var(--header-border);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .header-inner {
        padding: 0 32px;
    }
}

@media (min-width: 1024px) {
    .header-inner {
        padding: 0 40px;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--header-text);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo-img {
    width: 180px;
    height: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .logo-img {
        width: 120px;
    }
}

.header-cta {
    display: none;
}

@media (min-width: 640px) {
    .header-cta {
        display: inline-flex;
    }
}

/* ============================================================
   SEÇÕES
   ============================================================ */
.section {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 0;
    }
}

@media (min-width: 1024px) {
    .section {
        padding: 100px 0;
    }
}

.section-dark {
    background-color: var(--primary);
    color: var(--text-on-dark);
}

.section-alt {
    background-color: var(--bg-light);
}

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--cta);
    margin-bottom: 12px;
}

.section h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text);
    max-width: 700px;
}

.section-dark h2 {
    color: var(--white);
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 600px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .section h2 {
        font-size: 2rem;
    }
}

@media (min-width: 1024px) {
    .section h2 {
        font-size: 2.4rem;
    }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    background-color: var(--primary);
    color: var(--white);
    padding: 50px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -30%;
    width: 80%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(15, 229, 0, 0.13) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--text-on-dark);
    opacity: 0.9;
    margin-bottom: 28px;
    line-height: 1.55;
    max-width: 500px;
}

.hero-image {
    width: 100%;
    position: relative;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 640px) {
    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .hero h1,
    .hero-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============================================================
   ÍCONES
   ============================================================ */
.icon-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--success);
}

.icon-whatsapp {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.icon-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* ============================================================
   LISTAS
   ============================================================ */
.bullet-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.5;
}

.section-dark .bullet-item {
    color: var(--text-on-dark);
}

@media (max-width: 480px) {
    .bullet-item {
        font-size: 0.85rem;
    }
}

/* ============================================================
   PORTFÓLIO
   ============================================================ */
.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }
}

.portfolio-card {
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border-radius: 12px;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: #cbd5e1;
}

.portfolio-card-preview {
    height: 180px;
    position: relative;
    overflow: hidden;
}

.portfolio-card-preview-inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.85);
}

.preview-1 {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #0f172a 100%);
}

.preview-2 {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e293b 100%);
}

.preview-3 {
    background: linear-gradient(135deg, #1e293b 0%, #2d1b3d 50%, #0f172a 100%);
}

.portfolio-card-body {
    padding: 18px 16px;
}

.portfolio-card-body h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text);
}

.portfolio-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ============================================================
   STEPS
   ============================================================ */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }
}

.step-card {
    background: var(--white);
    border: 1px solid var(--border);
    padding: 24px 20px;
    transition: all 0.25s ease;
    border-radius: 12px;
}

.step-card:hover {
    box-shadow: var(--shadow);
    border-color: #cbd5e1;
}

.step-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--cta);
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.03em;
}

.step-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 32px;
}

@media (min-width: 640px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.pricing-card {
    background: var(--white);
    border: 2px solid var(--border);
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 16px;
}

.pricing-card.featured {
    border-color: var(--cta);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--cta);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 20px;
    white-space: nowrap;
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    border-color: #94a3b8;
}

.pricing-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text);
}

.pricing-card .price {
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.pricing-card .price-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-card ul li {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 20px 16px;
    }

    .pricing-card .price {
        font-size: 2rem;
    }
}

/* ============================================================
   POSICIONAMENTO
   ============================================================ */
.positioning-block {
    background-color: var(--primary);
    color: var(--white);
    padding: 40px 24px;
    text-align: center;
    border-left: 4px solid var(--cta);
    margin-top: 20px;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .positioning-block {
        padding: 48px 40px;
    }
}

.positioning-block p {
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    max-width: 700px;
}

.faq-item {
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
    transition: all 0.2s ease;
    border-radius: 12px;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 18px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--cta);
}

.faq-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    color: var(--cta);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 18px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 18px 16px;
}

.faq-answer p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.55;
}

/* ============================================================
   URGÊNCIA
   ============================================================ */
.urgency-banner {
    background-color: var(--cta);
    color: var(--white);
    text-align: center;
    padding: 36px 20px;
    border-radius: 16px;
}

.urgency-banner h3 {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

@media (min-width: 768px) {
    .urgency-banner h3 {
        font-size: 1.5rem;
    }
}

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-section {
    text-align: center;
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 20px;
}

.cta-section h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.cta-section p {
    font-size: 1rem;
    opacity: 0.85;
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .cta-section h2 {
        font-size: 2rem;
    }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 32px 0;
    text-align: center;
    font-size: 0.82rem;
    border-top: 1px solid var(--footer-border);
}

.footer a {
    color: var(--footer-link);
    transition: color 0.2s ease;
}

.footer a:hover {
    color: var(--footer-link-hover);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

/* ============================================================
   ANIMAÇÕES
   ============================================================ */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {

    .btn-cta,
    .btn-strip {
        animation: none;
    }

    .fade-in {
        transition: none;
        opacity: 1;
        transform: none;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ============================================================
   TIRA COM BOTÃO ENTRE SEÇÕES
   ============================================================ */
.section-cta-strip {
    padding: 20px 0;
    background: linear-gradient(135deg, var(--cor-principal) 0%, var(--cor-destaque) 100%);
    position: relative;
    overflow: hidden;
}

.section-cta-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-strip p {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.02em;
}

.btn-strip {
    background-color: var(--white);
    color: var(--cor-destaque);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: pulse-strip 1.5s ease-in-out infinite;
    white-space: nowrap;
    border-radius: 8px;
}

.btn-strip:hover {
    background-color: var(--cor-destaque);
    color: var(--white);
    transform: scale(1.05);
}

@keyframes pulse-strip {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.03);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }
}

@media (max-width: 640px) {
    .cta-strip {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cta-strip p {
        font-size: 1rem;
    }

    .btn-strip {
        white-space: normal;
        text-align: center;
        padding: 12px 24px;
    }

    .section-cta-strip {
        padding: 30px 0;
    }
}

/* ============================================================
   SEÇÃO DE TECNOLOGIAS (CARROSSEL)
   ============================================================ */
.tech2 {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(135deg, #f7f7f7 0%, #e9e9e9 100%);
    position: relative;
    overflow: hidden;
}

.tech2 h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--cor-texto-escuro, #0f172a);
    font-weight: 700;
    letter-spacing: -0.02em;
    max-width: 100%;
}

@media (max-width: 768px) {
    .tech2 h2 {
        font-size: 1.5rem;
    }
}

.carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    width: 100%;
    padding: 20px 0;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.track::-webkit-scrollbar {
    display: none;
}

.track:active {
    cursor: grabbing;
}

.card {
    min-width: 240px;
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--cor-destaque, #0fe500);
}

.card-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cor-principal, #0f172a);
    border-radius: 12px;
    padding: 8px;
}

.card-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.icon-sitemap {
    font-size: 28px;
}

.card-content {
    flex: 1;
}

.card-content strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--cor-texto-escuro, #0f172a);
    margin-bottom: 4px;
}

.card-content span {
    display: block;
    font-size: 0.75rem;
    color: #666;
    line-height: 1.4;
}

.nav {
    background: var(--cor-destaque, #0fe500);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav:hover {
    background: var(--cor-principal, #0f172a);
    transform: scale(1.05);
}

.desc {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

@media (max-width: 768px) {
    .carousel {
        gap: 10px;
    }

    .card {
        min-width: 200px;
        padding: 15px;
        gap: 12px;
    }

    .card-icon {
        width: 40px;
        height: 40px;
    }

    .card-icon img {
        width: 24px;
        height: 24px;
    }

    .card-content strong {
        font-size: 0.85rem;
    }

    .card-content span {
        font-size: 0.65rem;
    }

    .nav {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .card {
        min-width: 170px;
        padding: 12px;
    }

    .card-icon {
        width: 35px;
        height: 35px;
    }

    .card-icon img {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================
   IMPRESSÃO
   ============================================================ */
@media print {

    .header,
    .btn,
    .nav,
    .faq-question,
    .section-cta-strip,
    .cta-section,
    .urgency-banner {
        display: none;
    }

    body {
        padding-top: 0;
        color: black;
    }

    .hero {
        background: white;
        color: black;
        min-height: auto;
    }

    .section-dark {
        background: white;
        color: black;
    }
}