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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #f5f4f1;
    color: #333;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Animação de loading */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
}

.bg-pattern {
    position: fixed;
    inset: 0;
    background-image: url('/imgs/background-imagem.webp');
    background-repeat: repeat;
    background-size: 230px 220px;
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
    will-change: auto;
}

.content {
    position: relative;
    z-index: 1;
}

/* Nav */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    border-bottom: none;
    background: transparent;
    z-index: 1000;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
}

.nav-logo {
    height: 24px;
}

.nav-logo img {
    height: 100%;
    width: auto;
}

.nav-logo span {
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 80, 192, 0.12);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-link {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    text-decoration: none;
    border-radius: 10px;
    transition: all 200ms ease;
    white-space: nowrap;
}

.nav-link:hover {
    background: rgba(67, 80, 192, 0.1);
    color: #4350c0;
}

.nav-link:active {
    background: rgba(67, 80, 192, 0.15);
}

@media (max-width: 1024px) {
    .nav-menu {
        display: none;
    }
}

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

.avatars {
    display: flex;
    gap: -4px;
}

.avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    margin-right: -4px;
    overflow: hidden;
    border: 2px solid #f5f4f1;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn-get-ready {
    /* manter consistente com o CTA principal */
    background: #4350c0;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    min-height: 44px; /* alvo de toque */
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 8px 18px rgba(67, 80, 192, 0.18);
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.btn-get-ready:hover {
    background: #3642a6;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(67, 80, 192, 0.24);
}

.btn-get-ready:active {
    transform: translateY(0);
}

.btn-get-ready:focus-visible {
    outline: 3px solid rgba(115, 102, 254, 0.35);
    outline-offset: 2px;
}

/* Hero Section */
.hero {
    margin-top: 64px;
    padding: 80px 20px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.hero-heading {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    /* espaço para o mascote ficar acima do título sem sobrepor o texto */
    padding-top: 170px;
}

.hero-icon {
    position: absolute;
    top: -152px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.16));
    pointer-events: none;
    z-index: 999; /* fica na frente do header e do texto */
    margin-top: 56px; /* compensa o header fixo */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(67, 80, 192, 0.1);
    border: 1px solid rgba(67, 80, 192, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #4350c0;
    margin-bottom: 24px;
}

.hero-label {
    font-size: 12px;
    font-weight: 500;
    color: #7366fe;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
}

.hero-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 32px;
    z-index: 1;
}

.hero-title-line {
    font-size: 62px;
    font-weight: 700;
    color: #333;
    line-height: 64px;
    display: block;
}

.hero-title-highlight {
    position: relative;
    display: inline-block;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 64px;
    background: rgba(115,102,254,0.25);
    border-radius: 12px 0 12px 0;
    z-index: -1;
}

.hero-title-line-2 {
    font-size: 62px;
    font-weight: 700;
    color: #333;
    line-height: 64px;
    display: block;
    margin-top: 8px;
    position: relative;
}

.hero-paragraph {
    font-size: 17px;
    line-height: 24px;
    color: #333;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-visual {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    align-items: stretch;
    perspective: 0;
}

@media (min-width: 1100px) {
    .hero-visual {
        grid-template-columns: 1fr 1.25fr 1fr;
        gap: 28px;
    }
}

.hero-center {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 32px 140px rgba(0,0,0,0.2);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    min-height: 450px;
    transform: translateZ(30px);
}

.hero-center img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    display: block;
    border-radius: 12px;
}

/* Canvas mock (estático) - estilo de “print” */
.hero-canvas {
    /* mantém respiro para a imagem não “sumir” no fundo da página */
    padding: 18px;
}

.hero-canvas img {
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 18px 60px rgba(0,0,0,0.10);
}

.canvas-mock {
    width: 100%;
    height: 560px;
    position: relative;
    background: #f0f2f5; /* igual o canvas */
    overflow: hidden;
    border-radius: 20px;
}

.canvas-mock::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(59, 130, 246, 0.32) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.canvas-controls {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: #4b5563;
}

.canvas-btn,
.canvas-scale {
    background: rgba(255,255,255,0.9);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 10px;
    padding: 8px 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    backdrop-filter: blur(6px);
}

.canvas-scale {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    color: #6b7280;
}

.canvas-sidebar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 150px;
    background: rgba(255,255,255,0.98);
    border-right: 1px solid rgba(0,0,0,0.08);
    z-index: 4;
    padding: 14px 12px;
}

.canvas-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
}

.canvas-bolt {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #eef2ff;
    border: 1px solid rgba(67, 80, 192, 0.18);
    border-radius: 8px;
    font-size: 14px;
}

.canvas-title {
    font-size: 14px;
}

.canvas-menu-title {
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin: 10px 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.canvas-chip {
    font-size: 12px;
    padding: 8px 10px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.08);
    background: #ffffff;
    margin-bottom: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.05);
}

.canvas-stage {
    position: absolute;
    inset: 0;
    padding-left: 170px;
    padding-top: 54px;
    z-index: 2;
}

.canvas-lines {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0.9;
}

.canvas-lines path {
    fill: none;
    stroke: rgba(100, 116, 139, 0.75);
    stroke-width: 4;
    stroke-linecap: round;
}

.node {
    position: absolute;
    width: 210px;
    border-radius: 14px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(0,0,0,0.10);
    box-shadow: 0 22px 70px rgba(0,0,0,0.16);
    overflow: hidden;
    z-index: 3;
}

.node-head {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    background: linear-gradient(90deg, rgba(99,102,241,0.12), rgba(16,185,129,0.09));
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.node-title {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
}

.node-sub {
    font-size: 11px;
    color: #64748b;
    margin-top: 2px;
}

.node-body {
    padding: 10px 12px 12px;
    font-size: 12px;
    color: #334155;
    line-height: 1.35;
}

.node-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    display: inline-block;
}

.node-dot-green { background: #10b981; }
.node-dot-blue { background: #2563eb; }
.node-dot-gray { background: #64748b; }

/* ============================================
   WHATSAPP CHAT PREVIEW - Design Limpo
   Baseado no WhatsApp iOS 2024/2025
   ============================================ */
.hero-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: center;
    margin-top: 60px;
}

@media (max-width: 1100px) {
    .hero-visual {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 60px auto 0;
    }
    
    .wa-chat-preview:not(.wa-chat-featured) {
        display: none;
    }
}

.wa-chat-preview {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.12),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wa-chat-preview:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 35px 100px rgba(0, 0, 0, 0.15),
        0 15px 40px rgba(0, 0, 0, 0.1);
}

.wa-chat-featured {
    transform: scale(1.05);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.18),
        0 15px 40px rgba(0, 0, 0, 0.12);
}

.wa-chat-featured:hover {
    transform: scale(1.05) translateY(-8px);
}

/* Header WhatsApp */
.wa-chat-header {
    background: #075E54;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-chat-back svg {
    width: 24px;
    height: 24px;
    color: #fff;
}

.wa-chat-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25D366, #128C7E);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.wa-avatar-pink {
    background: linear-gradient(135deg, #E91E63, #9C27B0);
}

.wa-avatar-purple {
    background: linear-gradient(135deg, #7C4DFF, #536DFE);
}

.wa-chat-info {
    flex: 1;
    min-width: 0;
}

.wa-chat-name {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: block;
}

.wa-chat-status {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    display: block;
}

.wa-chat-actions {
    display: flex;
    gap: 20px;
}

.wa-chat-actions svg {
    width: 22px;
    height: 22px;
    color: #fff;
    opacity: 0.9;
}

/* Chat Body */
.wa-chat-body {
    background: #ECE5DD;
    padding: 16px 12px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Message Bubbles */
.wa-bubble {
    max-width: 85%;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
}

.wa-bubble p {
    font-size: 14px;
    line-height: 1.4;
    color: #111;
    margin: 0;
}

.wa-bubble-time {
    font-size: 11px;
    color: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-end;
    margin-top: 4px;
}

.wa-read {
    color: #53BDEB;
    font-size: 14px;
    letter-spacing: -3px;
    margin-left: 2px;
}

/* Incoming Message (Left) */
.wa-bubble-in {
    background: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Outgoing Message (Right) */
.wa-bubble-out {
    background: #DCF8C6;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

/* Input Bar */
.wa-chat-input {
    background: #F0F0F0;
    padding: 8px 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-input-emoji {
    font-size: 24px;
    cursor: pointer;
}

.wa-input-text {
    flex: 1;
    background: #fff;
    border-radius: 24px;
    padding: 10px 16px;
    font-size: 14px;
    color: #8E8E93;
    border: none;
}

.wa-input-actions {
    display: flex;
    gap: 12px;
}

.wa-input-actions svg {
    width: 24px;
    height: 24px;
    color: #8E8E93;
}

.wa-input-mic {
    width: 40px;
    height: 40px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wa-input-mic svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

/* WhatsApp-style phones (legado) */
.wa-phone {
    display: none;
}

/* Section Styles */
.section {
    padding: 120px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.section-heading {
    text-align: center;
    margin: 0 auto 40px;
    padding: 24px 32px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(67, 80, 192, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    width: fit-content;
}

.section-title {
    font-size: 58px;
    font-weight: 700;
    color: #333;
    line-height: 56px;
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    max-width: 600px;
    margin: 0 auto;
    line-height: 24px;
}

/* Examples Grid */
.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
    overflow-x: auto;
    padding-bottom: 20px;
}

.example-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 11px 11px 40px rgba(0,0,0,0.1);
    min-width: 300px;
}

.example-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.section-quick-wins .section-heading {
    margin-bottom: 22px;
}

/* Quick wins (card único + lista) */
.quick-wins-card {
    max-width: 980px;
    margin: 44px auto 0;
    padding: 18px;
    border-radius: 26px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(67, 80, 192, 0.14);
    box-shadow:
        0 24px 90px rgba(0,0,0,0.12),
        0 1px 0 rgba(255,255,255,0.85) inset;
    backdrop-filter: blur(10px);
}

.quick-wins-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 18px;
    border-radius: 18px;
}

.quick-wins-item + .quick-wins-item {
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 22px;
}

.quick-wins-icon {
    flex: 0 0 auto;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4350c0;
    background: rgba(115,102,254,0.14);
    border: 1px solid rgba(115,102,254,0.22);
    box-shadow: 0 10px 26px rgba(67,80,192,0.14);
}

.quick-wins-icon svg {
    display: block;
}

.benefits-media {
    max-width: 1080px;
    margin: 44px auto 0;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255,255,255,0.80);
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 26px 110px rgba(0,0,0,0.14);
    overflow: hidden;
}

.benefits-media img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 18px 60px rgba(0,0,0,0.10);
}

.footer-globe {
    margin-top: 10px;
    color: rgba(0,0,0,0.55);
    width: 16px;
    height: 16px;
}

.footer-globe svg {
    display: block;
}

.quick-wins-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 6px;
}

.quick-wins-text {
    font-size: 15px;
    line-height: 24px;
    color: rgba(0,0,0,0.72);
    max-width: 72ch;
}

/* Quick Wins Grid - Novo Design */
.quick-wins-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 44px auto 0;
}

@media (max-width: 1024px) {
    .quick-wins-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .quick-wins-grid {
        grid-template-columns: 1fr;
    }
}

.quick-wins-card-new {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(67, 80, 192, 0.12);
    border-radius: 20px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: transform 200ms ease, box-shadow 200ms ease;
}

.quick-wins-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
}

.quick-wins-card-new .quick-wins-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    border-radius: 16px;
}

.quick-wins-card-new .quick-wins-title {
    font-size: 17px;
    margin-bottom: 10px;
}

.quick-wins-card-new .quick-wins-text {
    font-size: 14px;
    line-height: 22px;
    max-width: none;
}

.quick-wins-icon-purple {
    background: rgba(139, 92, 246, 0.14) !important;
    border-color: rgba(139, 92, 246, 0.22) !important;
    color: #8b5cf6 !important;
}

.quick-wins-icon-green {
    background: rgba(16, 185, 129, 0.14) !important;
    border-color: rgba(16, 185, 129, 0.22) !important;
    color: #10b981 !important;
}

.feature-card {
    border-radius: 32px;
    padding: 48px;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.feature-card-1 {
    background: #6c77b0;
}

.feature-card-2 {
    background: #817da6;
}

.feature-card-3 {
    background: #6873a5;
}

.feature-card-4 {
    background: #8f4d75;
}

.feature-card-5 {
    background: #7b4096;
}

.feature-card-6 {
    background: #55269c;
}

.feature-title {
    font-size: 23px;
    font-weight: 500;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
}

.feature-image {
    margin-top: 24px;
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
}

/* Calendar Section */
.calendar-section {
    text-align: center;
    padding: 120px 20px;
    max-width: 1280px;
    margin: 0 auto;
}

.calendar-image {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
}

.calendar-image img {
    width: 100%;
    height: auto;
}

.app-icon {
    margin: 40px auto 0;
    width: 64px;
    height: 64px;
}

.app-icon img {
    width: 100%;
    height: auto;
}

.feature-chits {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 40px;
}

.feature-chit {
    border: 1px solid rgba(92,106,228,0.2);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 15px;
    color: #5c6ae4;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 120px 20px;
    max-width: 640px;
    margin: 0 auto;
}

.cta-title {
    font-size: 55px;
    font-weight: 700;
    color: #333;
    line-height: 56px;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 17px;
    line-height: 24px;
    color: #333;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: #4350c0;
    color: white;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background-color 160ms ease, transform 160ms ease;
}

.btn-primary:hover {
    background: #3642a6;
    transform: translateY(-1px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:focus-visible {
    outline: 3px solid rgba(115, 102, 254, 0.35);
    outline-offset: 2px;
}

.btn-secondary {
    border: 1px solid rgba(72,60,212,0.2);
    color: #4350c0;
    padding: 12px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
}

/* Footer */
.footer {
    padding: 40px 20px;
    border-top: 1px solid rgba(0,0,0,0.1);
    max-width: 1280px;
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left {
    font-size: 13px;
    color: #333;
}

.footer-links {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    font-size: 13px;
    color: #8b8c96;
}

.footer-links a {
    color: #8b8c96;
    text-decoration: none;
}

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

.footer-social a {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    display: block;
}

.footer-social img {
    width: 100%;
    height: auto;
}

/* ============================================
   SEÇÃO FLUXOGRAMA
   ============================================ */
.section-fluxograma {
    padding-top: 80px;
    padding-bottom: 80px;
}

.fluxograma-container {
    max-width: 1100px;
    margin: 0 auto;
}

.fluxograma-media {
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.15);
    margin-bottom: 32px;
}

.fluxograma-media img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.fluxograma-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(67, 80, 192, 0.18);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: #4350c0;
    transition: all 180ms ease;
}

.feature-chip:hover {
    background: #4350c0;
    color: white;
    transform: translateY(-2px);
}

/* ============================================
   SEÇÃO INTEGRAÇÕES
   ============================================ */
.section-integracoes {
    padding-top: 80px;
    padding-bottom: 80px;
}

.integracoes-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 900px;
    margin: 44px auto 0;
}

.integracao-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 36px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 200ms ease;
    min-width: 150px;
}

.integracao-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(67, 80, 192, 0.2);
}

.integracao-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 80, 192, 0.1);
    border-radius: 16px;
    color: #4350c0;
}

.integracao-name {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
}

.integracao-card-webhook {
    background: linear-gradient(135deg, rgba(67, 80, 192, 0.08), rgba(139, 92, 246, 0.08));
    border-color: rgba(67, 80, 192, 0.2);
}

.integracao-card-webhook .integracao-icon {
    background: rgba(67, 80, 192, 0.15);
}

.integracao-badge {
    font-size: 11px;
    font-weight: 600;
    color: #4350c0;
    background: rgba(67, 80, 192, 0.12);
    padding: 4px 10px;
    border-radius: 50px;
    text-align: center;
}

.integracao-badge-sub {
    font-size: 10px;
    font-weight: 500;
    color: #64748b;
    margin-top: -4px;
}

/* ============================================
   SEÇÃO PLANOS
   ============================================ */
.section-planos {
    padding-top: 100px;
    padding-bottom: 100px;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 50px auto 0;
    align-items: start;
}

@media (max-width: 900px) {
    .planos-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

.plano-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 36px 28px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
    transition: all 250ms ease;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
}

.plano-card-destaque {
    background: linear-gradient(135deg, #4350c0, #6366f1);
    border: none;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 24px 70px rgba(67, 80, 192, 0.35);
}

.plano-card-destaque:hover {
    transform: scale(1.05) translateY(-6px);
    box-shadow: 0 30px 80px rgba(67, 80, 192, 0.4);
}

.plano-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f59e0b;
    color: white;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plano-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.plano-card-destaque .plano-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plano-nome {
    font-size: 20px;
    font-weight: 700;
    color: #1f1f1f;
    display: block;
    margin-bottom: 12px;
}

.plano-card-destaque .plano-nome {
    color: white;
}

.plano-preco {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.plano-moeda {
    font-size: 18px;
    font-weight: 600;
    color: #64748b;
}

.plano-card-destaque .plano-moeda {
    color: rgba(255, 255, 255, 0.8);
}

.plano-valor {
    font-size: 48px;
    font-weight: 800;
    color: #1f1f1f;
    line-height: 1;
}

.plano-card-destaque .plano-valor {
    color: white;
}

.plano-periodo {
    font-size: 15px;
    font-weight: 500;
    color: #64748b;
}

.plano-card-destaque .plano-periodo {
    color: rgba(255, 255, 255, 0.8);
}

.plano-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
}

.plano-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #334155;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.plano-feature:last-child {
    border-bottom: none;
}

.plano-card-destaque .plano-feature {
    color: rgba(255, 255, 255, 0.95);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.plano-feature svg {
    flex-shrink: 0;
    color: #10b981;
}

.plano-card-destaque .plano-feature svg {
    color: #86efac;
}

.plano-feature strong {
    font-weight: 700;
}

.plano-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    background: #f1f5f9;
    color: #1f1f1f;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 180ms ease;
}

.plano-btn:hover {
    background: #e2e8f0;
}

.plano-btn-destaque {
    background: white;
    color: #4350c0;
}

.plano-btn-destaque:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

/* ============================================
   SEÇÃO SEGURANÇA
   ============================================ */
.section-seguranca {
    padding-top: 60px;
    padding-bottom: 60px;
}

.seguranca-container {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(34, 197, 94, 0.05));
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
}

@media (max-width: 768px) {
    .seguranca-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 32px 24px;
    }
}

.seguranca-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 20px;
    color: #10b981;
}

@media (max-width: 768px) {
    .seguranca-icon {
        margin: 0 auto;
    }
}

.seguranca-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.seguranca-text {
    font-size: 16px;
    color: #64748b;
}

.seguranca-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 768px) {
    .seguranca-items {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

.seguranca-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.seguranca-item svg {
    color: #10b981;
    flex-shrink: 0;
}

/* ============================================
   SEÇÃO FAQ
   ============================================ */
.section-faq {
    padding-top: 80px;
    padding-bottom: 80px;
}

.faq-container {
    max-width: 700px;
    margin: 44px auto 0;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 200ms ease;
}

.faq-item:hover {
    border-color: rgba(67, 80, 192, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    text-align: left;
    cursor: pointer;
    transition: all 180ms ease;
}

.faq-question:hover {
    background: rgba(67, 80, 192, 0.04);
}

.faq-chevron {
    flex-shrink: 0;
    color: #64748b;
    transition: transform 250ms ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease, padding 300ms ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 24px;
    color: #64748b;
}

/* ============================================
   SEÇÃO AFILIADOS
   ============================================ */
.section-afiliados {
    padding-top: 60px;
    padding-bottom: 80px;
}

.afiliados-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
    background: linear-gradient(135deg, rgba(67, 80, 192, 0.06), rgba(139, 92, 246, 0.04));
    border: 1px solid rgba(67, 80, 192, 0.15);
    border-radius: 28px;
    padding: 48px;
}

@media (max-width: 768px) {
    .afiliados-container {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        text-align: center;
    }
}

.afiliados-badge {
    display: inline-flex;
    padding: 6px 14px;
    background: rgba(67, 80, 192, 0.12);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #4350c0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.afiliados-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f1f1f;
    line-height: 1.2;
    margin-bottom: 16px;
}

.afiliados-text {
    font-size: 16px;
    line-height: 26px;
    color: #64748b;
    margin-bottom: 28px;
}

.afiliados-text strong {
    color: #4350c0;
    font-weight: 700;
}

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

@media (max-width: 500px) {
    .afiliados-steps {
        grid-template-columns: 1fr;
    }
}

.afiliados-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.afiliados-step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #4350c0;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.afiliados-step-text {
    font-size: 14px;
    font-weight: 500;
    color: #334155;
}

.afiliados-visual {
    display: flex;
    justify-content: center;
}

.afiliados-card {
    background: linear-gradient(135deg, #4350c0, #6366f1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    color: #fff;
    box-shadow: 0 20px 60px rgba(67, 80, 192, 0.3);
}

.afiliados-card-icon {
    width: 72px;
    height: 72px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.afiliados-card-icon svg {
    color: #fff;
}

.afiliados-card-value {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.afiliados-card-label {
    font-size: 14px;
    opacity: 0.9;
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Cards com animação de entrada */
.card-3d[data-animate] {
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.card-3d[data-animate].animate-in {
    transition: opacity 0.6s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease;
}

[data-animate][data-delay="100"] { transition-delay: 0.1s; }
[data-animate][data-delay="200"] { transition-delay: 0.2s; }
[data-animate][data-delay="300"] { transition-delay: 0.3s; }
[data-animate][data-delay="400"] { transition-delay: 0.4s; }

/* Stagger animation para chips */
.fluxograma-features .feature-chip {
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.fluxograma-features.animate-in .feature-chip {
    opacity: 1;
    transform: translateY(0);
}

.fluxograma-features.animate-in .feature-chip:nth-child(1) { transition-delay: 0.05s; }
.fluxograma-features.animate-in .feature-chip:nth-child(2) { transition-delay: 0.1s; }
.fluxograma-features.animate-in .feature-chip:nth-child(3) { transition-delay: 0.15s; }
.fluxograma-features.animate-in .feature-chip:nth-child(4) { transition-delay: 0.2s; }
.fluxograma-features.animate-in .feature-chip:nth-child(5) { transition-delay: 0.25s; }
.fluxograma-features.animate-in .feature-chip:nth-child(6) { transition-delay: 0.3s; }
.fluxograma-features.animate-in .feature-chip:nth-child(7) { transition-delay: 0.35s; }
.fluxograma-features.animate-in .feature-chip:nth-child(8) { transition-delay: 0.4s; }
.fluxograma-features.animate-in .feature-chip:nth-child(9) { transition-delay: 0.45s; }
.fluxograma-features.animate-in .feature-chip:nth-child(10) { transition-delay: 0.5s; }

/* Hover melhorado nos cards */
.quick-wins-card-new,
.integracao-card,
.plano-card,
.faq-item {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-icon {
        /* ajusta o mascote para não "invadir" demais no mobile */
        width: 190px;
        top: -118px;
    }

    .hero-heading {
        /* espaço para o mascote acima do título sem sobrepor no mobile */
        padding-top: 140px;
    }

    .hero-title-line,
    .hero-title-line-2 {
        font-size: 42px;
        line-height: 48px;
    }
    
    .section-title {
        font-size: 42px;
        line-height: 48px;
    }
    
    .cta-title {
        font-size: 42px;
        line-height: 48px;
    }
    
    .video-overlay {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        width: 100%;
        margin-top: 20px;
    }
    
    .examples-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }

    .quick-wins-card {
        margin-top: 28px;
        padding: 14px;
        border-radius: 22px;
    }

    .quick-wins-item {
        padding: 14px 12px;
    }

    .quick-wins-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .benefits-media {
        margin-top: 28px;
        padding: 14px;
        border-radius: 18px;
    }

    .benefits-media img {
        border-radius: 12px;
    }
}

/* Formulários de Login/Registro */
.auth-section {
    margin: 0 auto;
    max-width: 28rem;
    padding: 5rem 1.25rem 4rem;
}

.auth-card {
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    padding: 1.75rem;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
}

.auth-card h1 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f1f1f;
    margin-bottom: 0.5rem;
}

.auth-card p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.25rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.auth-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.auth-form input[type="email"],
.auth-form input[type="text"],
.auth-form input[type="password"] {
    width: 100%;
    border-radius: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: #000;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.auth-form input::placeholder {
    color: rgba(0, 0, 0, 0.35);
}

.auth-form input:focus {
    border-color: rgba(115, 102, 254, 0.6);
    box-shadow: 0 0 0 4px rgba(115, 102, 254, 0.15);
}

.auth-form input[type="checkbox"] {
    width: 1rem;
    height: 1rem;
    border-radius: 0.25rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    accent-color: #4350c0;
}

.auth-form .form-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.auth-form .form-options label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.7);
    margin: 0;
}

.auth-form .form-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: #4350c0;
    text-decoration: none;
}

.auth-form .form-link:hover {
    text-decoration: underline;
}

.auth-form button[type="submit"] {
    width: 100%;
    text-align: center;
}

.auth-form .form-footer {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.6);
    margin-top: 0.5rem;
}

.auth-form .form-footer a {
    font-weight: 500;
    color: #4350c0;
    text-decoration: none;
}

.auth-form .form-footer a:hover {
    text-decoration: underline;
}

.auth-form .form-footer-small {
    text-align: center;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.55);
    margin-top: 0.5rem;
}

.auth-form .form-footer-small a {
    font-weight: 500;
    color: #4350c0;
    text-decoration: none;
}

.auth-form .form-footer-small a:hover {
    text-decoration: underline;
}

.auth-form .error-message {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
}

/* ============================================
   NOVOS EFEITOS 3D E ANIMAÇÕES (2025/2026)
   ============================================ */

/* Container Base para 3D */
.perspective-container {
    perspective: 1000px;
    transform-style: preserve-3d;
}

/* Efeito de Flutuação */
@keyframes float {
    0% { transform: translateY(0px) translateX(-50%); }
    50% { transform: translateY(-15px) translateX(-50%); }
    100% { transform: translateY(0px) translateX(-50%); }
}

/* Animação do Mascote */
.hero-icon {
    /* Sobrescreve estilo anterior */
    animation: float 6s ease-in-out infinite;
    will-change: transform;
}

/* Animação suave para cards */
@keyframes card-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

.card-3d:not([data-animate]) {
    animation: card-float 4s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
}

/* Delay alternado para criar efeito de onda */
.card-3d:nth-child(1) { animation-delay: 0s; }
.card-3d:nth-child(2) { animation-delay: 0.5s; }
.card-3d:nth-child(3) { animation-delay: 1s; }
.card-3d:nth-child(4) { animation-delay: 1.5s; }

/* Efeito de Gradiente Animado */
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Destaque IA */
.card-ai-highlight {
    position: relative;
    border: 1px solid rgba(16, 185, 129, 0.4);
    background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(240, 253, 244, 0.9));
    overflow: hidden;
}

.card-ai-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    background-size: 200% 100%;
    animation: gradient-shift 3s linear infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.ai-icon-pulse {
    animation: pulse-glow 2s infinite;
}

.badge-ai {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    background: #10b981;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    vertical-align: middle;
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.3);
    animation: pop-in 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes pop-in {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}


/* Micro-interações */
.btn-primary, .btn-secondary, .btn-get-ready {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
}

.btn-primary:active::after {
    animation: ripple 0.6s ease-out;
}

@keyframes ripple {
    0% { transform: scale(0, 0); opacity: 1; }
    20% { transform: scale(25, 25); opacity: 1; }
    100% { opacity: 0; transform: scale(40, 40); }
}

/* Melhora profundidade nos cards principais */
.quick-wins-card-new, .plano-card {
    border-bottom: 3px solid rgba(0,0,0,0.05);
}

.quick-wins-card-new:hover, .plano-card:hover {
    border-bottom: 3px solid rgba(0,0,0,0.02);
}

/* Efeito Glow no Hero Title */
.hero-title-highlight::after {
    box-shadow: 0 0 30px rgba(115, 102, 254, 0.2);
}

/* ============================================
   STATS CARDS - Hero Section
   ============================================ */
.stats-card {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(67, 80, 192, 0.12);
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

.stats-card:hover {
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
}

.stats-featured {
    background: linear-gradient(135deg, rgba(67, 80, 192, 0.06), rgba(139, 92, 246, 0.04));
    border-color: rgba(67, 80, 192, 0.25);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(67, 80, 192, 0.15);
}

.stats-featured:hover {
    transform: scale(1.05);
    box-shadow: 0 28px 80px rgba(67, 80, 192, 0.2);
}

.stats-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 80, 192, 0.1);
    border-radius: 20px;
    color: #4350c0;
    margin-bottom: 24px;
    transition: transform 0.3s ease;
}

.stats-card:hover .stats-icon {
    transform: scale(1.1) rotate(5deg);
}

.stats-icon-featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(67, 80, 192, 0.15));
    color: #10b981;
}

.stats-icon svg {
    width: 48px;
    height: 48px;
}

.stats-number {
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: #1f1f1f;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #4350c0, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-featured .stats-number {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stats-label {
    font-size: 20px;
    font-weight: 700;
    color: #1f1f1f;
    margin-bottom: 8px;
}

.stats-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
    max-width: 240px;
}

@media (max-width: 1024px) {
    .stats-card {
        padding: 32px 24px;
        min-height: 240px;
    }
    
    .stats-number {
        font-size: 48px;
    }
    
    .stats-label {
        font-size: 18px;
    }
    
    .stats-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }
    
    .stats-icon svg {
        width: 40px;
        height: 40px;
    }
}