@import url('https://fonts.googleapis.com/css2?family=Cabinet+Grotesk:wght@400;500;700;800;900&family=Instrument+Sans:wght@400;500;600&display=swap');

:root {
    /* Cores */
    --primary-color: #f95c2e;
    --primary-light: #ff8a4c;
    --bg-dark: #1a2340;
    --bg-light: #fafaf8;
    --bg-white: #ffffff;
    --text-dark: #1e1e2e;
    --text-secondary: #5a5a72;
    --border-color: #ebebeb;
    --coral-pale: #fff2ee;
    
    /* Tipografia */
    --font-display: 'Cabinet Grotesk', sans-serif;
    --font-body: 'Instrument Sans', sans-serif;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(249, 92, 46, 0.15);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* ========================
   HEADER / NAVEGAÇÃO
   ======================== */
.header {
    background-color: var(--bg-dark);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 800;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.logo-text {
    display: flex;
    gap: 0;
}

.logo-text .trevo {
    color: var(--primary-color);
}

.logo-text .hub {
    color: var(--bg-white);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: var(--bg-white);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* ========================
   BOTÕES
   ======================== */
.btn {
    padding: 12px 28px;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 8px 24px rgba(249, 92, 46, 0.3);
}

.btn-primary:hover {
    background-color: #e84d1f;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 92, 46, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

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

.btn-outline:hover {
    background-color: var(--coral-pale);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-block {
    width: 100%;
}

/* ========================
   HERO SECTION
   ======================== */
.hero {
    background: var(--bg-dark);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(249, 92, 46, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(249, 92, 46, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

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

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 60px;
}

.hero-title {
    font-size: 52px;
    font-weight: 900;
    font-family: var(--font-display);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

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

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

.stat {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 12px;
    opacity: 0.85;
}

/* ========================
   ANIMAÇÕES
   ======================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

/* ========================
   FUNCIONALIDADES
   ======================== */
.funcionalidades {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.section-title {
    font-size: 44px;
    font-weight: 900;
    font-family: var(--font-display);
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 18px;
    font-family: var(--font-body);
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.funcionalidades-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 44px;
    margin-bottom: 18px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 20px;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* ========================
   EXEMPLOS DE FUNIS
   ======================== */
.exemplos-funis {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.funis-examples {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.funil-example {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-sm);
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

.funil-example:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.funil-header {
    text-align: center;
    margin-bottom: 30px;
}

.funil-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 10px;
}

.funil-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.funil-subtitle {
    font-size: 14px;
    color: var(--text-light);
}

.funil-diagram {
    margin: 30px 0;
    display: flex;
    justify-content: center;
}

.funil-container {
    width: 100%;
    max-width: 280px;
}

.funil-stage {
    width: 100%;
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.stage-1 {
    background: linear-gradient(135deg, #10b981, #059669);
    width: 100%;
}

.stage-2 {
    background: linear-gradient(135deg, #0f766e, #115e59);
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.stage-3 {
    background: linear-gradient(135deg, #14b8a6, #0d9488);
    width: 75%;
    margin-left: auto;
    margin-right: auto;
}

.stage-4 {
    background: linear-gradient(135deg, #06d6a0, #059669);
    width: 55%;
    margin-left: auto;
    margin-right: auto;
}

.funil-stage:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.stage-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.funil-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

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

.metric-label {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-color);
}

/* ========================
   DEPOIMENTOS
   ======================== */
.depoimentos {
    padding: 80px 0;
}

.depoimentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 12px;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
}

.stars {
    color: #fbbf24;
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.author-info strong {
    display: block;
    margin-bottom: 3px;
    color: var(--text-dark);
}

.author-info span {
    font-size: 13px;
    color: var(--text-light);
}

/* ========================
   CTA INTERMEDIÁRIO
   ======================== */
.cta-intermediate {
    background: var(--primary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 900;
    font-family: var(--font-display);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

/* ========================
   PREÇOS
   ======================== */
.precos {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    animation: fadeIn 0.6s ease-out forwards;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.pricing-featured {
    background-color: var(--primary-color);
    color: white;
    border: none;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(249, 92, 46, 0.25);
}

.pricing-featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 28px 48px rgba(249, 92, 46, 0.35);
}

.pricing-featured h3,
.pricing-featured .price-description {
    color: white;
}

.pricing-featured .amount {
    color: white;
}

.pricing-featured .feature-item {
    color: rgba(255, 255, 255, 0.95);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-body);
    margin-top: 15px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.pricing-featured h3 {
    color: white;
}

.price {
    margin-bottom: 20px;
}

.amount {
    font-size: 48px;
    font-weight: 900;
    font-family: var(--font-display);
    color: var(--primary-color);
}

.currency {
    font-size: 20px;
    color: var(--text-secondary);
    margin-right: 5px;
}

.period {
    color: var(--text-light);
    font-size: 14px;
}

.plan-description {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    color: var(--text-dark);
    font-size: 15px;
    border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
}

/* ========================
   SOBRE
   ======================== */
.sobre {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.sobre-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    text-align: center;
}

/* ========================
   FAQ
   ======================== */
.faq {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.15);
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    user-select: none;
}

.faq-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-body {
    max-height: 300px;
}

.faq-body p {
    padding: 0 25px 25px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0;
}

/* ========================
   CTA FINAL
   ======================== */
.cta-final {
    background: var(--primary-color);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.cta-final .cta-content h2 {
    font-size: 44px;
    font-weight: 900;
    font-family: var(--font-display);
    margin-bottom: 16px;
}

.cta-final .cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ========================
   FOOTER
   ======================== */
.footer {
    background-color: var(--bg-dark);
    color: white;
    padding: 80px 0 30px;
}

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

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-body);
    margin-bottom: 18px;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.85;
}

.footer-section a {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.social-link {
    margin-right: 12px;
}

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

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
    margin: 0 10px;
}

/* ========================
   RESPONSIVO
   ======================== */
@media (max-width: 768px) {
    .header .container {
        padding: 10px 15px;
    }

    .logo {
        font-size: 16px;
        gap: 6px;
    }

    .logo-icon {
        font-size: 20px;
    }

    .nav {
        gap: 12px;
        flex-wrap: wrap;
    }

    .nav a {
        font-size: 12px;
        display: none;
    }

    .nav .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .hero {
        padding: 40px 0;
    }

    .hero-content {
        margin-bottom: 30px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 30px;
    }

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

    .hero-stats {
        gap: 12px;
    }

    .stat {
        padding: 12px;
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-label {
        font-size: 11px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .pricing-featured {
        transform: scale(1);
    }

    .pricing-featured:hover {
        transform: translateY(-5px);
    }

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

    .cta-content p {
        font-size: 16px;
    }

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

    .cta-final .cta-content p {
        font-size: 16px;
    }

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

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 12px;
    }

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

    .faq-header {
        padding: 20px;
    }

    .faq-header h3 {
        font-size: 15px;
    }

    .faq-body p {
        padding: 0 20px 20px;
        font-size: 14px;
    }

    .exemplos-funis {
        padding: 50px 0;
    }

    .funis-examples {
        grid-template-columns: 1fr;
    }

    .funil-example {
        padding: 20px;
    }

    .funil-header {
        margin-bottom: 20px;
    }

    .funil-icon {
        font-size: 40px;
        margin-bottom: 8px;
    }

    .funil-header h3 {
        font-size: 18px;
    }

    .funil-subtitle {
        font-size: 13px;
    }

    .funil-diagram {
        margin: 20px 0;
    }

    .funil-container {
        max-width: 250px;
    }

    .funil-stage {
        padding: 14px;
        margin-bottom: 10px;
        font-size: 13px;
    }

    .funil-metrics {
        gap: 12px;
        margin-top: 20px;
        padding-top: 15px;
    }

    .metric-label {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .metric-value {
        font-size: 24px;
    }
}

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

    .header .container {
        padding: 8px 12px;
    }

    .logo {
        font-size: 14px;
    }

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

    .nav {
        gap: 8px;
    }

    .nav a {
        display: none;
    }

    .nav .btn {
        padding: 8px 14px;
        font-size: 11px;
        white-space: nowrap;
    }

    .hero {
        padding: 30px 0;
    }

    .hero-content {
        margin-bottom: 25px;
    }

    .hero-title {
        font-size: 22px;
        margin-bottom: 10px;
        line-height: 1.1;
    }

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

    .hero-buttons {
        gap: 8px;
        margin-bottom: 25px;
    }

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

    .btn-large {
        padding: 12px 24px;
    }

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

    .stat {
        padding: 10px 8px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 10px;
    }

    .section-title {
        font-size: 22px;
    }

    .section-subtitle {
        font-size: 13px;
        margin-bottom: 30px;
    }

    .funcionalidades {
        padding: 40px 0;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-icon {
        font-size: 32px;
    }

    .feature-card h3 {
        font-size: 18px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .depoimentos {
        padding: 40px 0;
    }

    .testimonial-card {
        padding: 18px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .precos {
        padding: 40px 0;
    }

    .pricing-card {
        padding: 20px;
    }

    .amount {
        font-size: 32px;
    }

    .plan-features li {
        font-size: 13px;
        padding: 10px 0;
    }

    .cta-intermediate {
        padding: 35px 0;
    }

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

    .cta-content p {
        font-size: 14px;
    }

    .cta-final {
        padding: 40px 0;
    }

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

    .cta-final .cta-content p {
        font-size: 14px;
    }

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

    .faq-header {
        padding: 15px;
    }

    .faq-header h3 {
        font-size: 14px;
    }

    .faq-body p {
        padding: 0 15px 15px;
        font-size: 13px;
    }
}

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

    .hero {
        padding: 50px 0;
    }

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

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

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    .funcionalidades {
        padding: 50px 0;
    }

    .depoimentos {
        padding: 50px 0;
    }

    .precos {
        padding: 50px 0;
    }

    .pricing-card {
        padding: 25px;
    }

    .amount {
        font-size: 36px;
    }

    .cta-intermediate {
        padding: 40px 0;
    }

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

    .cta-final {
        padding: 50px 0;
    }

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

    .hero-stats {
        gap: 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 14px;
    }

    .exemplos-funis {
        padding: 35px 0;
    }

    .funis-examples {
        gap: 15px;
    }

    .funil-example {
        padding: 15px;
    }

    .funil-header {
        margin-bottom: 15px;
    }

    .funil-icon {
        font-size: 36px;
        margin-bottom: 6px;
    }

    .funil-header h3 {
        font-size: 16px;
    }

    .funil-subtitle {
        font-size: 12px;
    }

    .funil-visualization {
        gap: 10px;
        margin-bottom: 15px;
    }

    .funil-step {
        padding: 10px;
    }

    .step-icon {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .step-name {
        font-size: 12px;
    }

    .step-quantity {
        font-size: 11px;
    }

    .funil-arrow {
        font-size: 16px;
        margin: -2px 0;
    }

    .funil-stats {
        gap: 10px;
    }

    .stat-box {
        padding: 10px;
    }

    .stat-box .stat-value {
        font-size: 18px;
    }

    .stat-box .stat-label {
        font-size: 10px;
    }
}

/* ========================
   ABAS DE FUNIS
   ======================== */
.funis-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.funis-tab {
    padding: 12px 28px;
    border-radius: 50px;
    border: 2px solid var(--border-color);
    background: transparent;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.funis-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.funis-tab.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
    color: white;
    box-shadow: var(--shadow-sm);
}

/* ========================
   PAINÉIS DE FUNIS
   ======================== */
.funis-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.funis-panel.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.plan-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 16px;
}

.plan-emoji {
    font-size: 48px;
    flex-shrink: 0;
}

.plan-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.plan-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* ========================
   PASSOS DO FUNIL
   ======================== */
.funis-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.funis-step {
    display: flex;
    gap: 24px;
    position: relative;
    padding-bottom: 30px;
    border-left: 2px solid var(--border-color);
    padding-left: 30px;
    margin-left: 30px;
}

.funis-step:last-child {
    border-left: none;
}

.step-icon {
    position: absolute;
    left: -37px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.funis-step.funis-result .step-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: transparent;
}

.step-content {
    flex: 1;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.step-content:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-sm);
}

.step-tag {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: inline-block;
}

.step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.funis-result .step-content {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(15, 118, 110, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.funis-result .step-content h4 {
    color: var(--primary-color);
}

.funis-result .step-content p {
    color: var(--text-dark);
    font-weight: 500;
}

/* ========================
   CANAIS / PILLS
   ======================== */
.step-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.channel-pill {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    background: rgba(107, 114, 128, 0.1);
    color: var(--text-light);
    display: inline-block;
}

.channel-pill.active {
    background: rgba(16, 185, 129, 0.15);
    color: var(--primary-color);
}

.channel-pill.green {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.channel-pill.blue {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.channel-pill.purple {
    background: rgba(147, 51, 234, 0.15);
    color: #9333ea;
}

/* ========================
   RESPONSIVO - FUNIS
   ======================== */
@media (max-width: 768px) {
    .funis-tabs {
        gap: 8px;
    }

    .funis-tab {
        padding: 10px 20px;
        font-size: 12px;
    }

    .plan-header {
        padding: 20px;
        gap: 15px;
    }

    .plan-emoji {
        font-size: 36px;
    }

    .plan-info h3 {
        font-size: 18px;
    }

    .plan-info p {
        font-size: 13px;
    }

    .funis-step {
        gap: 16px;
        padding-left: 20px;
        margin-left: 20px;
    }

    .step-icon {
        left: -32px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .step-content {
        padding: 16px;
    }

    .step-tag {
        font-size: 10px;
    }

    .step-content h4 {
        font-size: 14px;
    }

    .step-content p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .funis-tabs {
        gap: 6px;
        margin-bottom: 30px;
    }

    .funis-tab {
        padding: 8px 16px;
        font-size: 11px;
    }

    .plan-header {
        padding: 15px;
        gap: 10px;
        flex-wrap: wrap;
    }

    .plan-emoji {
        font-size: 28px;
    }

    .plan-info h3 {
        font-size: 16px;
    }

    .plan-info p {
        font-size: 12px;
    }

    .funis-steps {
        gap: 0;
    }

    .funis-step {
        gap: 12px;
        padding: 0;
        padding-bottom: 20px;
        border-left: none;
        margin-left: 0;
    }

    .step-icon {
        position: relative;
        left: 0;
        width: 28px;
        height: 28px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .step-content {
        padding: 12px;
        border-radius: 8px;
    }

    .step-tag {
        font-size: 9px;
        margin-bottom: 6px;
    }

    .step-content h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .step-content p {
        font-size: 12px;
    }

    .step-channels {
        gap: 6px;
        margin-top: 10px;
    }

    .channel-pill {
        padding: 3px 10px;
        font-size: 10px;
    }
}
