/* Performance Optimizations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Critical CSS - Above the fold */
:root {
    --primary-color: #4a2cdd;
    --secondary-color: #7928ef;
    --primary-gradient: linear-gradient(135deg, #4a2cdd 0%, #7928ef 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --border-color: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

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

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

:root {
    --primary-color: #4a2cdd;
    --secondary-color: #7928ef;
    --primary-gradient: linear-gradient(135deg, #4a2cdd 0%, #7928ef 100%);
    --text-primary: #1a1a1a;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f5f5f5;
    --border-color: #e5e5e5;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --border-radius-large: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.logo h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-header-img {
    height: 30px;
    width: auto;
    max-width: 300px;
    object-fit: contain;
    border-radius: 0;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(26, 26, 26, 0.12);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10001;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 999px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-toggle span + span {
    margin-top: 5px;
}

.mobile-menu-toggle:hover {
    box-shadow: var(--shadow-light);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-cta {
    display: none;
}

@media (min-width: 769px) {
    .mobile-nav-cta {
        display: none !important;
    }
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #ffffff;
    box-shadow: var(--shadow-light);
}

.btn-primary i {
    color: #ffffff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.nav-cta .btn-primary,
.mobile-nav-cta.btn-primary {
    color: #ffffff;
}

.nav-cta .btn-primary i,
.mobile-nav-cta.btn-primary i {
    color: #ffffff;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero,
.hero-aida {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    margin-top: 0;
}

.hero .container,
.hero-aida .container {
    padding: 0 15px;
}

/* Problem Badge - AIDA */
.problem-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    white-space: nowrap;
    max-width: 100%;
    flex-shrink: 0;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(74, 44, 221, 0.05);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.proof-item strong {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.proof-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Methodology Badge */
.methodology-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gradient);
    color: white;
    padding: 1rem;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 25px rgba(74, 44, 221, 0.4);
    animation: pulse-badge 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.25rem;
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 700;
    line-height: 1.2;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Metodologia 6Ps - Infográfico Circular */
.metodologia-6ps {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
    position: relative;
    /* Padrão de pontos mais visíveis no background */
    background-image: 
        radial-gradient(circle, rgba(74, 44, 221, 0.15) 2px, transparent 2px);
    background-size: 45px 45px;
    background-position: 0 0;
}

/* Efeito de interação com o cursor - brilho suave */
.metodologia-6ps::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle 250px at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(74, 44, 221, 0.25) 0%,
        rgba(74, 44, 221, 0.12) 40%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease, background 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    will-change: background, opacity;
}

.metodologia-6ps:hover::before {
    opacity: 1;
}

.metodologia-6ps .container {
    position: relative;
    z-index: 2;
}

.metodologia-6ps .section-header p {
    max-width: 900px;
    line-height: 1.7;
}

.infographic-wrapper {
    position: relative;
    width: 700px;
    height: 700px;
    margin: 4rem auto;
    padding: 30px;
    box-sizing: border-box;
}

.circle-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 50px rgba(74, 44, 221, 0.4);
    z-index: 10;
}

.center-content {
    text-align: center;
    color: white;
}

.center-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.center-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
}

/* Posicionamento dos 6 segmentos em círculo */
.step-segment {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 3px solid rgba(74, 44, 221, 0.1);
    cursor: pointer;
    box-sizing: border-box;
    overflow: visible;
}

/* Posições específicas (círculo trigonométrico perfeito) */
/* Raio = 245px do centro (reduzido para caber com padding) */
.step-1 { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(-245px);
}
.step-2 { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(212px, -123px);
}
.step-3 { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(212px, 123px);
}
.step-4 { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(245px);
}
.step-5 { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-212px, 123px);
}
.step-6 { 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translate(-212px, -123px);
}

.step-segment:hover {
    box-shadow: 0 12px 40px rgba(74, 44, 221, 0.25);
    border-color: var(--primary-color);
    z-index: 20;
    transform: translate(-50%, -50%) translateY(-245px) scale(1.05) !important;
}

.step-2:hover { transform: translate(-50%, -50%) translate(212px, -123px) scale(1.05) !important; }
.step-3:hover { transform: translate(-50%, -50%) translate(212px, 123px) scale(1.05) !important; }
.step-4:hover { transform: translate(-50%, -50%) translateY(245px) scale(1.05) !important; }
.step-5:hover { transform: translate(-50%, -50%) translate(-212px, 123px) scale(1.05) !important; }
.step-6:hover { transform: translate(-50%, -50%) translate(-212px, -123px) scale(1.05) !important; }

.step-segment:hover .segment-tooltip {
    opacity: 1;
    visibility: visible;
}

.segment-content {
    text-align: center;
    padding: 1rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Números externos - completamente fora do fluxo do layout */
.step-number {
    position: absolute;
    top: -5px;
    right: 10px;
    width: 32px;
    height: 32px;
    background: var(--primary-gradient);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(74, 44, 221, 0.3);
    border: 2px solid white;
    z-index: 100;
    pointer-events: none;
    line-height: 1;
}

.segment-content i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    display: block;
}

.segment-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin: 0 0 0.1rem 0;
}

.step-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.2;
}

/* Tooltip que aparece no hover */
.segment-tooltip {
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
    z-index: 100;
    cursor: pointer;
}

.segment-tooltip::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--text-primary);
}

.segment-tooltip p {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
}

.btn-tooltip {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    transition: all 0.2s ease;
}

.btn-tooltip:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(3px);
}

/* Animação com seta grande girando */
@keyframes rotate-slow {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.infographic-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 480px;
    height: 480px;
    border: 2px dashed rgba(74, 44, 221, 0.15);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: rotate-slow 60s linear infinite;
}

/* Pain vs Gain Section */
.pain-vs-gain {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
}

.pain-vs-gain .section-header p {
    max-width: 800px;
}

.comparison-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.comparison-image {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.comparison-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.comparison-columns-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.column-before,
.column-after {
    display: flex;
    flex-direction: column;
}

.column-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    padding: 0.6rem;
    border-radius: 8px;
}

.column-before .column-title {
    background: linear-gradient(135deg, #495057 0%, #343a40 100%);
    color: white;
}

.column-after .column-title {
    background: var(--primary-gradient);
    color: white;
}

.comparison-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.card-before,
.card-after {
    background: white;
    padding: 0.9rem 1rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    cursor: pointer;
    position: relative;
}

.card-before {
    border-left: 3px solid #6c757d;
}

.card-before:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
}

.card-after {
    border-left: 3px solid var(--primary-color);
}

.card-after:hover {
    transform: translateX(3px);
    box-shadow: 0 3px 10px rgba(74, 44, 221, 0.15);
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
}

.card-icon-wrapper {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: 0.5rem;
    margin-right: 0.75rem;
    position: relative;
    z-index: 1;
}

.card-before .card-icon-wrapper {
    background: #ff4444;
    color: white;
    box-shadow: 0 2px 6px rgba(255, 68, 68, 0.25);
}

.card-after .card-icon-wrapper {
    background: #22c55e;
    color: white;
    box-shadow: 0 2px 6px rgba(34, 197, 94, 0.25);
}

.card-icon-wrapper i {
    font-size: 0.95rem;
}

.card-before p,
.card-after p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    font-weight: 500;
    flex: 1;
}

.card-before {
    color: #495057;
}

.card-before p {
    color: #495057;
}

.card-after {
    color: var(--text-primary);
}

.card-after p {
    color: var(--text-primary);
}

/* Mobile: Cards alternados */
.comparison-mobile {
    display: none;
}

.card-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.card-before .card-badge {
    background: #6c757d;
    color: white;
}

.card-after .card-badge {
    background: var(--primary-color);
    color: white;
}

.card-before,
.card-after {
    position: relative;
}

/* Responsive */
@media (max-width: 1024px) {
    .comparison-layout {
        gap: 1.5rem;
    }
    
    .comparison-image img {
        max-width: 400px;
    }
    
    .comparison-columns-wrapper {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .pain-vs-gain {
        padding: 40px 0;
    }
    
    .comparison-layout {
        margin-top: 2rem;
        gap: 1.5rem;
    }
    
    .comparison-image img {
        max-width: 300px;
    }
    
    .comparison-columns {
        display: none;
    }
    
    .comparison-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        margin-top: 0;
    }
    
    .comparison-mobile-header {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-column-title {
        font-size: 1rem;
        font-weight: 700;
        text-align: center;
        padding: 0.5rem;
        margin: 0;
    }
    
    .mobile-title-before {
        color: #6c757d;
    }
    
    .mobile-title-after {
        color: var(--primary-color);
    }
    
    .comparison-mobile-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
    
    .comparison-mobile .card-before,
    .comparison-mobile .card-after {
        padding: 0.75rem 0.6rem;
        padding-top: 0.75rem;
        display: flex;
        align-items: center;
        min-height: 60px;
    }
    
    .comparison-mobile .card-icon-wrapper {
        width: 28px;
        height: 28px;
        margin-right: 0.5rem;
        flex-shrink: 0;
    }
    
    .comparison-mobile .card-icon-wrapper i {
        font-size: 0.9rem;
    }
    
    .comparison-mobile .card-before p,
    .comparison-mobile .card-after p {
        font-size: 0.75rem;
        line-height: 1.3;
        margin: 0;
    }
    
    .comparison-mobile .card-badge {
        display: none;
    }
}

/* Impact Numbers - Prova Social */
.impact-numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.impact-card {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.impact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.3);
}

.impact-icon i {
    font-size: 1.8rem;
    color: white;
}

.impact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.impact-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.impact-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Plans Section Simplified */
.plans-section-simplified {
    padding: 80px 0;
    background: var(--bg-light);
}

.plans-table-container {
    position: relative;
    margin: 3rem 0;
    padding: 40px 60px 20px 20px;
    overflow: visible;
}

.plans-table-wrapper {
    overflow-x: auto;
    overflow-y: visible;
    border-radius: var(--border-radius-large);
    position: relative;
    z-index: 1;
    background: transparent;
    padding: 0;
}

.plans-table-container .badge-featured {
    position: absolute;
    top: 15px;
    right: 10%;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 1000;
    transform: rotate(8deg);
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto;
}

.plans-table-container .badge-featured:hover {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.5), 0 3px 10px rgba(0, 0, 0, 0.15);
}

.plans-comparison {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: white;
    table-layout: fixed;
    position: relative;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.plans-comparison thead {
    background: var(--primary-color);
}

.plans-comparison th {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    vertical-align: middle;
}

.plans-comparison thead tr:first-child th:first-child {
    border-top-left-radius: var(--border-radius-large);
}

.plans-comparison thead tr:first-child th:last-child {
    border-top-right-radius: var(--border-radius-large);
}

.plans-comparison th:first-child {
    text-align: left;
    width: 40%;
}

.plans-comparison th.plan-col {
    width: 20%;
}

.plans-comparison th.featured {
    position: relative;
    overflow: visible !important;
}

.plan-emoji-table {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.plans-comparison td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    vertical-align: middle;
}

.plans-comparison td:first-child {
    font-weight: 500;
    text-align: left;
}

.plans-comparison td.check {
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.plans-comparison td.no {
    text-align: center;
    font-size: 1.5rem;
    opacity: 0.3;
    color: var(--text-secondary);
}

.plans-comparison tr.highlight-row {
    background: rgba(74, 44, 221, 0.05);
    font-weight: 600;
}

.plans-comparison tbody tr:last-child td:first-child {
    border-bottom-left-radius: var(--border-radius-large);
}

.plans-comparison tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--border-radius-large);
}

.plans-comparison tbody tr:last-child td {
    border-bottom: none;
}

.plans-comparison tr:hover {
    background: rgba(74, 44, 221, 0.02);
}

/* Plans Cards Simple */
.plans-cards-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.plan-card-simple {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.plan-card-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.plan-card-simple.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 30px rgba(74, 44, 221, 0.15);
}

.plan-badge-card {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.3);
}

.plan-card-simple h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    text-align: center;
}

.plan-tagline {
    font-size: 0.95rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-price-wrapper {
    text-align: center;
    margin-bottom: 1.5rem;
}


.plan-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.plan-users {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex: 1;
}

.plan-features-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.plan-features-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.plan-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 0.75rem;
}

/* CTA Final AIDA */
.final-cta-aida {
    padding: 80px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

.cta-content-aida h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content-aida p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    color: white;
}

.signup-form-enhanced {
    max-width: 900px;
    margin: 0 auto 2rem;
}

.form-row-inline {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row-inline .form-group {
    margin: 0;
}

.form-row-inline input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
}

.form-row-inline input::placeholder {
    color: var(--text-light);
}

.btn-cta {
    white-space: nowrap;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1ebe5d 0%, #128c7e 100%);
    border: none;
    font-weight: 700;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #17a34d 0%, #0e7065 100%);
    transform: translateY(-2px);
}

.cta-guarantees {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
}

.guarantee-item i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-content {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.5rem;
    align-items: center;
    min-height: auto;
    position: relative;
    padding-top: 0.5rem;
}

.hero-text {
    overflow: visible;
    max-width: 100%;
    padding-right: 0.5rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    color: var(--text-primary);
    word-spacing: 0.05em;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hero-cta {
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.hero-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 1rem;
}

.hero-micro-card {
    display: inline-block;
    background: transparent;
    border-left: 3px solid rgba(74, 44, 221, 0.3);
    border-top: none;
    border-right: none;
    border-bottom: none;
    border-radius: 0;
    padding: 0.75rem 0 0.75rem 1rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-micro-text {
    font-style: italic;
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
    letter-spacing: 0.01em;
    font-weight: 400;
}

/* Hero Image - Laptop Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: auto;
    position: relative;
    padding-top: 0;
    overflow: hidden;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    object-fit: contain;
    margin: 0 auto;
}


/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header-light {
    position: relative;
    isolation: isolate;
}

.section-header-light::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--bg-light);
    z-index: -1;
}

/* Module Showcase */
.module-showcase {
    padding: 50px 0 0;
    position: relative;
    isolation: isolate;
}

.module-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--bg-light);
    z-index: -2;
}

.module-block {
    --module-padding-bottom: 3rem;
    display: flex;
    align-items: stretch;
    gap: 2.5rem;
    padding: 2.75rem 0 var(--module-padding-bottom);
    margin-bottom: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    isolation: isolate;
    --module-bg: var(--bg-light);
}

.module-block::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--module-bg);
    z-index: -1;
}

.module-block.is-alt {
    --module-bg: #ffffff;
}

.module-block.reverse {
    flex-direction: row-reverse;
}

.module-media {
    flex: 1 1 40%;
    min-height: 320px;
    border-radius: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    margin-bottom: calc(-1 * var(--module-padding-bottom));
}

.module-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.module-block:first-of-type {
    --module-padding-bottom: 4rem;
}

.module-content {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.module-content h3 {
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.module-subtitle {
    font-size: 0.96rem;
    color: var(--text-secondary);
    margin-bottom: 0.9rem;
    line-height: 1.5;
    max-width: 520px;
}

.module-summary {
    display: none;
}

.module-summary-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.module-summary-list li {
    position: relative;
    padding-left: 1.5rem;
}

.module-summary-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1;
}

.module-card-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.module-card {
    background: var(--bg-white);
    border-radius: var(--border-radius);
    padding: 0.95rem 1rem;
    border: 1px solid rgba(74, 44, 221, 0.08);
    box-shadow: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.module-block.is-alt .module-card {
    background: #ffffff;
}

.module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(18, 23, 53, 0.12);
    border-color: rgba(74, 44, 221, 0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    box-shadow: 0 5px 16px rgba(74, 44, 221, 0.2);
}

.module-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.module-card p {
    color: var(--text-secondary);
    line-height: 1.45;
    font-size: 0.87rem;
    margin: 0;
}

/* Features Grid */
.how-it-works {
    padding: 20px 0 80px;
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: transform 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit-card:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
    clear: both;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    transform: none !important;
}

.video-cta {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #1ebe5d 0%, #128c7e 100%);
    color: #ffffff;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    box-shadow: 0 12px 32px rgba(18, 140, 126, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(18, 140, 126, 0.35);
}

.btn-whatsapp:focus {
    outline: 3px solid rgba(18, 140, 126, 0.4);
    outline-offset: 4px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    transition: box-shadow 0.3s ease;
    z-index: 1;
    transform: none !important;
}

.video-wrapper:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
}

.video-thumbnail {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-thumbnail:hover {
    transform: scale(1.02);
}

.thumbnail-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .thumbnail-img {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 44, 221, 0.8) 0%, rgba(121, 40, 239, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-overlay {
    opacity: 1;
}

.video-info {
    text-align: center;
    color: white;
    padding: 2rem;
}

.video-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-info p {
    font-size: 1rem;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 2;
}

.play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.play-button i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-left: 3px; /* Ajuste visual para centralizar o ícone */
}

.youtube-frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    background: #000;
    display: none;
}

.youtube-frame.is-active {
    display: block;
}

.video-error {
    position: absolute;
    inset: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: rgba(17, 17, 17, 0.92);
    color: #ffffff;
    text-align: center;
    border-radius: var(--border-radius-large);
    z-index: 3;
}

.video-error.is-visible {
    display: flex;
}

.video-error-content {
    max-width: 420px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.video-error-content i {
    font-size: 2rem;
    color: #f7b733;
}

.video-error h3 {
    font-size: 1.4rem;
    font-weight: 600;
}

.video-error p {
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
}

.video-error-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 0.5rem;
}

/* Social Proof */
.social-proof {
    padding: 80px 0;
    background: white;
}

.logos-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 1rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.logos-grid::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 0 0 auto;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-3px);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: var(--border-radius-large);
    padding: 3rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}


.testimonial-content {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
}

.testimonial-content blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.author-avatar:hover {
    transform: scale(1.05);
}

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

.author-info {
    text-align: center;
}

.author-info h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 1rem;
    font-weight: 500;
}

.company-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
}

.company-info i {
    font-size: 0.8rem;
}

/* Target Audience */
.target-audience {
    padding: 50px 0;
    background: white;
}

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

.audience-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    align-items: center;
    margin-top: 1.5rem;
}

.audience-media img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.audience-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: left;
    transition: transform 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.audience-card:hover {
    transform: translateY(-5px);
}

.audience-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: white;
    font-size: 1.6rem;
}

.audience-text {
    flex: 1;
}

.audience-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    line-height: 1.4;
    font-size: 0.95rem;
}

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

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto 2rem;
    display: grid;
    gap: 1rem;
}

/* Mensagem de preenchimento do formulário */
.form-message-wrapper {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--border-radius);
    border-left: 3px solid rgba(255, 255, 255, 0.5);
    animation: fadeIn 0.3s ease;
}

.form-message-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-message-text i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

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

/* Botão de submit do formulário - cor diferente para contraste */
.btn-submit-form {
    background: linear-gradient(135deg, #1ebe5d 0%, #17a34d 100%);
    color: #ffffff;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 190, 93, 0.3);
    cursor: pointer;
}

.btn-submit-form:hover:not(:disabled) {
    background: linear-gradient(135deg, #17a34d 0%, #128c3d 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 190, 93, 0.4);
}

.btn-submit-form:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit-form:disabled {
    background: linear-gradient(135deg, rgba(30, 190, 93, 0.5) 0%, rgba(23, 163, 77, 0.5) 100%);
    color: rgba(255, 255, 255, 0.6);
    cursor: not-allowed;
    box-shadow: 0 2px 8px rgba(30, 190, 93, 0.2);
    opacity: 0.7;
}

.btn-submit-form i {
    color: #ffffff;
}

.btn-submit-form:disabled i {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    background: white;
    color: var(--text-primary);
}

.form-group input::placeholder {
    color: var(--text-light);
}

.form-feedback {
    min-height: 1.25rem;
    font-size: 0.95rem;
    text-align: center;
    color: white;
    padding: 0;
    transition: all 0.3s ease;
}

.form-feedback.is-success,
.form-feedback.is-error {
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
}

.form-feedback.is-success {
    background: rgba(18, 140, 11, 0.85);
    color: white;
}

.form-feedback.is-error {
    background: rgba(185, 28, 28, 0.9);
    color: white;
}

.form-feedback.is-visible {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid rgba(12, 31, 63, 0.08);
    box-shadow: 0 16px 40px rgba(12, 31, 63, 0.14);
    padding: 1.5rem 2rem;
    text-align: center;
    max-width: 540px;
    margin: 1.5rem auto 0 auto;
}

.form-feedback.is-visible .success-icon {
    font-size: 2.5rem;
    line-height: 1;
}

.form-feedback.is-visible .success-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    max-width: 420px;
}

.form-feedback.is-visible .success-content strong {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.form-feedback.is-visible .success-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}

.form-support {
    display: none;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-support.is-visible {
    display: flex;
}

.btn-support {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.85rem 1.5rem;
}

.cta-note {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

/* Footer Contact and Social Links */
.footer-section ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-section ul li a i {
    font-size: 1rem;
    width: 16px;
    text-align: center;
}

.footer-section ul li a:hover {
    color: white;
    transform: translateX(5px);
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    margin-bottom: 0.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1); /* Torna o logo branco */
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-logo-img:hover {
    opacity: 1;
}

/* Responsive Design */
/* Tablet - 1024px */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    /* Hero Section */
    .hero {
        padding: 110px 0 50px;
        min-height: 60vh;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-img {
        max-width: 480px;
    }
    
    /* Module Showcase */
    .module-block {
        --module-padding-bottom: 2.5rem;
        flex-direction: column;
        gap: 1.4rem;
        padding: 2.25rem 0 var(--module-padding-bottom);
        text-align: center;
    }
    
    .module-block.reverse {
        flex-direction: column;
    }
    
    .module-media {
        min-height: 240px;
    }
    
    .module-content {
        align-items: center;
    }
    
    .module-content h3 {
        font-size: 1.55rem;
    }
    
    .module-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .module-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .modules-note {
        max-width: 100%;
        margin: 2rem 0 0;
        padding: 1rem;
    }
    
    /* Benefits Grid */
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .benefit-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .benefit-card h3 {
        min-height: auto;
        font-size: 1.25rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
    
    /* Results Grid */
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .result-card {
        padding: 2.25rem 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .result-number {
        font-size: 1.85rem;
    }
    
    .result-icon {
        width: 48px;
        height: 48px;
    }
    
    .result-icon i {
        font-size: 1.15rem;
    }
    
    /* Hide result card detailed text on tablet too */
    .result-card p {
        display: none;
    }
    
    /* Planos */
    .main-plans-grid {
        gap: 1.5rem;
        max-width: 900px;
    }
    
    .plans-modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .plan-card.module {
        min-height: 400px;
    }
    
    /* Logos */
    .logos-grid {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .logo-item {
        min-width: 110px;
    }
    
    .logo-img {
        width: 85px;
        height: 85px;
        padding: 7px;
    }
    
    .logo-name {
        font-size: 0.88rem;
    }
    
    /* Testimonial */
    .testimonial-highlight {
        padding: 2.5rem 2rem;
    }
    
    /* Audience */
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    .mobile-menu-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        inset: calc(100% + 12px) 12px auto 12px;
        flex-direction: column;
        gap: 0.75rem;
        background: #ffffff;
        padding: 1.25rem;
        border-radius: var(--border-radius);
        box-shadow: 0 20px 40px rgba(12, 31, 63, 0.18);
        border: 1px solid rgba(12, 31, 63, 0.06);
        z-index: 10000;
    }

    .nav-links.active {
        display: flex;
        animation: fadeInMenu 0.25s ease forwards;
    }

    .nav-links a {
        font-size: 0.98rem;
        padding: 0.35rem 0;
    }

    .mobile-nav-cta {
        display: inline-flex;
        justify-content: center;
        margin-top: 0.35rem;
    }

    body.menu-open {
        overflow: hidden;
    }

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

    .video-section {
        padding: 60px 0;
        position: relative;
        z-index: 1;
        clear: both;
        margin-top: 0;
    }
    
    .video-container {
        max-width: 100%;
        margin: 0 20px;
        position: relative;
        transform: none !important;
    }
    
    .video-wrapper {
        position: relative;
        z-index: 1;
        transform: none !important;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.4rem;
    }
    
    .video-info h3 {
        font-size: 1.2rem;
    }
    
    .video-info p {
        font-size: 0.9rem;
    }
    
    .logo-header-img {
        height: 45px;
        max-width: 250px;
    }
    
    .footer-logo-img {
        height: 50px;
        max-width: 120px;
    }
    
    /* Hero Section - Imagem acima do texto */
    .hero {
        padding: 90px 0 35px;
        min-height: auto;
        overflow: hidden;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        min-height: auto;
        padding-top: 0;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
        min-height: auto;
        height: auto;
        justify-content: center;
        padding-top: 0;
        margin-bottom: 1rem;
        transform: none !important;
        overflow: hidden;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-micro-card {
        padding: 0.65rem 0 0.65rem 0.875rem;
        margin-top: 0.875rem;
        border-left-width: 2px;
    }
    
    .hero-micro-text {
        font-size: 0.9rem;
    }
    
    .hero-img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
        margin-top: 0;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Module Showcase */
    .module-showcase {
        padding: 56px 0;
    }
    
    .module-block {
        --module-padding-bottom: 2rem;
        flex-direction: column;
        gap: 1.2rem;
        padding: 2rem 0 var(--module-padding-bottom);
        text-align: left;
    }
    
    .module-block.reverse {
        flex-direction: column;
    }
    
    .module-media {
        min-height: 220px;
        margin-bottom: 0.75rem;
        padding-bottom: 0;
    }

    .module-media img {
        max-width: min(360px, 92vw);
        margin: 0 auto;
    }

    .module-content {
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }
    
    .module-subtitle {
        max-width: none;
    }

    .module-summary {
        display: block;
        width: 100%;
        background: transparent;
        border: none;
        padding: 0;
        margin-bottom: 0.5rem;
    }
    
    .module-summary-list {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem 1rem;
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--text-primary);
    }
    
    .module-summary-list li {
        padding-left: 1.15rem;
    }
    
    .module-card-grid {
        display: none;
    }

    .modules-note {
        margin: 1.75rem 0 0;
        padding: 0.9rem;
        font-size: 0.9rem;
    }
    
    /* Results/Benefits */
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        min-height: auto;
        padding: 2rem;
    }
    
    .benefit-card h3 {
        min-height: auto;
        font-size: 1.2rem;
    }
    
    .benefit-card p {
        font-size: 0.9rem;
    }
    
    .results-section {
        padding: 60px 0;
        overflow-x: hidden;
        position: relative;
        z-index: 2;
    }
    
    .results-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .result-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .result-number {
        font-size: 1.8rem;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
    }
    
    .result-icon i {
        font-size: 1.2rem;
    }
    
    .result-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0;
        text-align: center;
    }
    
    /* Hide result card detailed text on mobile */
    .result-card p {
        display: none !important;
    }
    
    /* Target Audience */
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .audience-layout {
        gap: 1.5rem;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-highlight {
        padding: 2rem 1.5rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Logos - sempre em linha com scroll */
    .logos-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ccc #f5f5f5;
    }
    
    .logos-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .logos-grid::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 3px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb:hover {
        background: #999;
    }
    
    .logo-item {
        flex: 0 0 auto;
        min-width: 120px;
    }
    
    /* CTA Final */
    .final-cta {
        padding: 60px 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .signup-form {
        padding: 0 20px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
    
    .footer-section ul li a {
        justify-content: center;
    }
    
    /* Hero Social Proof - Mobile */
    .hero-social-proof {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .problem-badge {
        font-size: 0.8rem;
        padding: 0.2rem 0.6rem;
        white-space: normal;
        line-height: 1.3;
    }
    
    .methodology-badge {
        width: 70px;
        height: 70px;
        padding: 0.75rem;
        top: 10px;
        right: 10px;
    }
    
    .badge-icon {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.6rem;
    }
    
    /* Infográfico 6Ps - Grid Mobile */
    .infographic-wrapper {
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin: 2rem auto;
    }
    
    .infographic-wrapper::before,
    .infographic-wrapper::after {
        display: none;
    }
    
    .step-segment {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        height: 100%;
        aspect-ratio: 1;
        border-radius: 12px;
    }
    
    .step-segment:hover {
        transform: scale(1.03) !important;
    }
    
    .circle-center {
        display: none !important;
    }
    
    .segment-tooltip {
        bottom: auto;
        top: 100%;
        margin-top: 0.5rem;
        white-space: normal;
        max-width: 250px;
    }
    
    .step-number {
        top: -3px;
        left: -3px;
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
        border-width: 1.5px;
    }
    
    .segment-content {
        padding: 1rem;
    }
    
    
    /* Impact Numbers - Mobile */
    .impact-numbers {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Plans Table - Mobile Scroll */
    .plans-table-wrapper {
        margin: 2rem -20px;
    }
    
    .plans-comparison {
        font-size: 0.85rem;
    }
    
    .plans-comparison th,
    .plans-comparison td {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .plans-table-container {
        padding: 35px 45px 15px 15px;
    }
    
    .plans-table-container .badge-featured {
        font-size: 0.65rem;
        padding: 0.4rem 0.8rem;
        top: 6px;
        right: calc(10% + 25px);
        transform: rotate(6deg);
    }
    
    .plan-emoji-table {
        font-size: 1.2rem;
        margin-bottom: 0.4rem;
    }
    
    /* Plans Cards - Mobile */
    .plans-cards-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* CTA Final AIDA - Mobile */
    .form-row-inline {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .btn-cta {
        width: 100%;
    }
    
    .cta-guarantees {
        gap: 1.5rem;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .logo-header-img {
        height: 35px;
        max-width: 180px;
    }
    
    .nav {
        padding: 0.75rem 0;
    }

    .nav-links {
        inset: calc(100% + 8px) 12px auto 12px;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 25px;
        overflow: hidden;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-visual {
        order: 1;
        margin-bottom: 0.5rem;
        height: auto;
        min-height: auto;
        transform: none !important;
        justify-content: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-micro-card {
        padding: 0.6rem 0 0.6rem 0.75rem;
        margin-top: 0.75rem;
        border-left-width: 2px;
    }
    
    .hero-micro-text {
        font-size: 0.85rem;
    }
    
    .hero-img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }
    
    /* Module Showcase */
    .module-showcase {
        padding: 48px 0;
    }
    
    .module-block {
        flex-direction: column;
        padding: 1.75rem 0;
        gap: 1rem;
        text-align: left;
    }
    
    .module-media {
        min-height: 190px;
        aspect-ratio: 3 / 2;
    }
    
    .module-content {
        align-items: flex-start;
        text-align: left;
    }
    
    .module-media {
        margin-bottom: 0.6rem;
    }

    .module-media img {
        max-width: min(320px, 90vw);
    }

    .module-summary {
        margin-bottom: 0.75rem;
    }

    .module-summary-list {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-note {
        font-size: 0.85rem;
        text-align: center;
    }
    
    /* Section Headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* Module Showcase */
    .module-showcase {
        padding: 40px 0;
    }
    
    .module-block {
        padding: 1.75rem 0;
        gap: 1rem;
    }
    
    .module-content h3 {
        font-size: 1.5rem;
    }
    
    .card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
    
    /* Results Section */
    .results-section {
        padding: 40px 0;
        overflow-x: hidden;
        position: relative;
        z-index: 2;
    }
    
    .results-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
        width: 100%;
        max-width: 100%;
        position: relative;
        z-index: 2;
    }
    
    .result-card {
        padding: 1.75rem 1.5rem;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        margin: 0;
    }
    
    .result-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .result-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 0.75rem;
    }
    
    .result-icon i {
        font-size: 1.2rem;
    }
    
    .result-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0;
        text-align: center;
    }
    
    /* Hide result card detailed text on mobile */
    .result-card p {
        display: none !important;
    }
    
    /* Video Section */
    .video-section {
        padding: 40px 0;
        position: relative;
        z-index: 1;
        clear: both;
        margin-top: 0;
        overflow: hidden;
    }
    
    .video-container {
        margin: 0 10px;
        position: relative;
        transform: none !important;
    }
    
    .video-wrapper {
        position: relative;
        z-index: 1;
        transform: none !important;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .video-info {
        padding: 1rem;
    }
    
    .video-info h3 {
        font-size: 1rem;
    }
    
    .video-info p {
        font-size: 0.85rem;
    }
    
    /* Social Proof */
    .social-proof {
        padding: 40px 0;
    }
    
    /* Logos - sempre em linha com scroll no mobile */
    .logos-grid {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 1.25rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 1rem 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ccc #f5f5f5;
    }
    
    .logos-grid::-webkit-scrollbar {
        height: 6px;
    }
    
    .logos-grid::-webkit-scrollbar-track {
        background: #f5f5f5;
        border-radius: 3px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 3px;
    }
    
    .logo-item {
        flex: 0 0 auto;
        min-width: 100px;
    }
    
    .logo-img {
        width: 75px;
        height: 75px;
    }
    
    .logo-name {
        font-size: 0.85rem;
    }
    
    /* Planos */
    .plans-section {
        padding: 40px 0;
    }
    
    .main-plans-section {
        margin: 2rem 0;
    }
    
    .main-plans-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .main-plans-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .main-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-plans-grid .plan-card {
        min-height: auto;
    }
    
    .modules-section {
        margin: 3rem 0;
    }
    
    .modules-title {
        font-size: 1.5rem;
        line-height: 1.4;
        margin-bottom: 0.75rem;
    }
    
    .modules-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .plans-modules-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plan-card {
        padding: 1.75rem;
        margin-bottom: 1.5rem;
    }
    
    .plan-card.module {
        min-height: auto;
        padding: 2rem 1.5rem 1.5rem 1.5rem;
    }
    
    .plan-badge {
        font-size: 0.85rem;
        padding: 0.45rem 1.25rem;
    }
    
    .module-badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }
    
    .plan-header h4 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .plan-price {
        font-size: 1.4rem;
    }
    
    .plan-users {
        font-size: 0.95rem;
    }
    
    .plan-subtitle {
        font-size: 0.9rem;
    }
    
    .plan-content h5 {
        font-size: 1.05rem;
        margin-bottom: 0.9rem;
    }
    
    .plan-card ul {
        margin-bottom: 1.25rem;
    }
    
    .plan-card ul li {
        font-size: 0.92rem;
        padding: 0.35rem 0;
    }
    
    .btn-contratar {
        font-size: 1.05rem;
        padding: 0.85rem 1.5rem;
    }
    
    .custom-quote-section {
        padding: 2.25rem 1.75rem;
        margin: 2.5rem 0;
    }
    
    .custom-quote-section h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    .custom-quote-section p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .custom-quote-btn {
        font-size: 1.05rem;
        padding: 1rem 2rem;
    }
    
    .consulting-cta-simple {
        margin-top: 3rem;
        padding: 2.5rem 1.75rem;
    }
    
    .consulting-cta-simple h3 {
        font-size: 1.5rem;
    }
    
    .consulting-cta-simple p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
    }
    
    .consulting-gap-solution {
        padding: 2rem 1.5rem;
    }
    
    .gap-solution-content i {
        font-size: 2rem;
    }
    
    .gap-solution-content p {
        font-size: 1.1rem;
    }
    
    .execution-cycle {
        padding: 2.5rem 1.5rem;
    }
    
    .execution-cycle-text {
        font-size: 1.25rem;
        gap: 0.75rem 1rem;
    }
    
    .cycle-arrow {
        font-size: 1.5rem;
    }
    
    /* Target Audience */
    .target-audience {
        padding: 40px 0;
    }
    
    .audience-card {
        padding: 1.5rem;
    }
    
    .audience-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* FAQ */
    .faq {
        padding: 40px 0;
    }
    
    .faq-question {
        padding: 1.25rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 1rem;
    }
    
    .faq-answer {
        padding: 0 1.25rem 1.25rem;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
    
    /* CTA Final */
    .final-cta {
        padding: 40px 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .signup-form {
        padding: 0;
    }
    
    .form-group input {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    /* Footer */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer-logo-img {
        height: 40px;
        max-width: 100px;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.4rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Offset para header fixo */
section[id] {
    scroll-margin-top: 100px;
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Loading States */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Focus States */
.btn:focus,
input:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
} 


/* Pain Points Section */
.pain-points {
    padding: 5rem 0;
    background: var(--bg-light);
}

.pain-gain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pain-gain-card {
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-gain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.pain-side, .gain-side {
    flex: 1;
    text-align: center;
    padding: 1rem;
}

.pain-side i {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.gain-side i {
    color: #28a745;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.pain-side h3, .gain-side h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.arrow {
    padding: 0 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

/* Results Section - Design Elegante */
.results-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
    position: relative;
    z-index: 2;
}

.results-section .section-header h2 {
    color: var(--text-primary);
}

.results-section .section-header p {
    color: var(--text-secondary);
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 100%;
}

/* Force 1 column on mobile/tablet */
@media (max-width: 1024px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
    
    .result-card {
        width: 100%;
        max-width: 100%;
    }
}

/* Result Cards - Design Limpo */
.result-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.result-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Result Number - Destaque Elegante */
.result-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

/* Result Icon */
.result-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.2);
    transition: all 0.3s ease;
}

.result-card:hover .result-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(74, 44, 221, 0.3);
}

.result-icon i {
    font-size: 1.4rem;
    color: white;
}

/* Result Card Typography */
.result-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.result-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.9rem;
}

.desire-benefits .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.desire-benefits .benefit-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.desire-benefits .benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Social Proof Amplified */
.testimonial-highlight {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-highlight .testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-highlight .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-highlight .author-info h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonial-highlight .author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Plans Section */
.plans-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.plans-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

/* Seção dos planos principais - Free e 360 */
.main-plans-section {
    margin: 3rem 0;
    text-align: center;
}

.main-plans-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.8rem;
}

.main-plans-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.main-plans-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.main-plans-grid .plan-card {
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.main-plans-grid .plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.main-plans-grid .plan-content ul {
    flex: 1;
    margin-bottom: 1.5rem;
}

.main-plans-grid .btn-contratar {
    margin-top: auto;
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* Seção de módulos */
.modules-section {
    margin: 4rem 0;
    text-align: center;
}

.modules-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.modules-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid para os 4 módulos em linha */
.plans-modules-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.modules-note {
    margin: 2.5rem auto 0;
    max-width: 900px;
    text-align: center;
    background: rgba(74, 44, 221, 0.08);
    border: 1px solid rgba(74, 44, 221, 0.15);
    border-radius: var(--border-radius-large);
    padding: 1.2rem 1.5rem;
    color: var(--text-primary);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.modules-note strong {
    color: var(--primary-color);
    font-size: 1rem;
}

.plan-card.module {
    position: relative;
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    text-align: center;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    cursor: pointer;
}

.module-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    z-index: 2;
}

.plan-card.module .plan-header {
    margin-bottom: 1.2rem;
    flex-shrink: 0;
}

.plan-card.module .plan-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.plan-card.module .plan-content ul {
    text-align: left;
    margin-bottom: 1.5rem;
    flex: 1;
}

.plan-card.module .btn-contratar {
    width: 100%;
    margin-top: auto;
    justify-content: center;
    text-align: center;
}

/* Botão com gradiente para módulos */
.btn-gradient {
    background: var(--primary-gradient);
    border: none;
    color: white;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.3);
}

/* Botão outline para módulos */
.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Layout antigo mantido para compatibilidade */
.plan-full-width {
    margin-bottom: 2rem;
}

.plan-full-width .plan-card {
    max-width: 800px;
    margin: 0 auto;
}

.plans-grid-middle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

/* Layout antigo mantido para compatibilidade */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.8rem;
    margin: 0 auto 3rem;
    max-width: 1100px;
}

.plan-card {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    padding: 2.5rem 2rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    min-width: 260px;
    margin-bottom: 2rem;
    cursor: pointer;
}

.plan-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.plan-card.destaque {
    border: 2.5px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(74,44,221,0.12);
    z-index: 2;
}

/* Card Horizontal Collabe Free */
.plan-card-horizontal {
    background: var(--bg-white);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1100px;
    border: 2px solid rgba(74, 44, 221, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.plan-card-horizontal:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.plan-card-horizontal.plan-free {
    background: var(--bg-white);
}

.plan-horizontal-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.plan-horizontal-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.plan-emoji-horizontal {
    font-size: 3.5rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.plan-card-horizontal:hover .plan-emoji-horizontal {
    transform: scale(1.4);
}

.plan-horizontal-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.plan-price-info-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.plan-price-info-horizontal .plan-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.plan-price-info-horizontal .plan-users {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-price-info-horizontal .plan-price-old {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.plan-horizontal-middle {
    flex: 1;
    min-width: 300px;
}

.plan-subtitle-horizontal {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.plan-features-horizontal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-features-horizontal li {
    font-size: 0.9rem;
    color: var(--text-primary);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.plan-features-horizontal li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plan-horizontal-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-contratar-horizontal {
    white-space: nowrap;
    padding: 1rem 2rem;
    font-size: 1rem;
    min-width: 180px;
    justify-content: center;
    pointer-events: none;
}

.plan-note-horizontal {
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
    margin: 0;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: calc(50% - 30px);
    transform: translateX(-50%);
    background: var(--primary-gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: var(--shadow-medium);
    z-index: 3;
}

.plan-discount-badge {
    position: absolute;
    top: -12px;
    left: calc(50% + 110px);
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(255, 107, 107, 0.3);
    z-index: 2;
    white-space: nowrap;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.plan-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.plan-price {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.2rem;
}

.plan-price-old {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    
}

.plan-users {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.plan-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.7rem;
    text-align: center;
}

/* Novos estilos para estrutura atualizada dos planos */
.plan-price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}


.plan-emoji {
    font-size: 1.5rem;
    text-align: center;
    margin: 1rem 0 0.5rem 0;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.plan-card:hover .plan-emoji {
    transform: scale(1.4);
}

.plan-subtitle {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    border-radius: 12px;
    background: rgba(74, 44, 221, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1.3;
}

.plan-content {
    width: 100%;
}

.plan-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: left;
}

.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    width: 100%;
}

.plan-card ul li {
    padding: 0.4rem 0;
    color: var(--text-primary);
    font-size: 0.98rem;
    text-align: left;
    position: relative;
    padding-left: 1.5rem;
}

.plan-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.plan-note {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-top: 0.75rem;
    margin-bottom: 0;
    text-align: center;
}

.btn-contratar {
    width: 100%;
    margin-top: auto;
    font-size: 1.1rem;
    padding: 0.9rem 0;
    border-radius: var(--border-radius);
    font-weight: 700;
    justify-content: center;
    text-align: center;
}

.plans-footnote {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 0 auto 3rem;
    max-width: 720px;
}

.plans-footnote a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.plans-footnote a:hover {
    text-decoration: underline;
}

/* CTA Orçamento Personalizado */
.custom-quote-section {
    margin: 3rem 0;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--bg-light);
    border-radius: var(--border-radius-large);
    border: 2px solid var(--border-color);
}

.custom-quote-section h3 {
    color: var(--text-primary);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.custom-quote-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* CTA Consultoria Simples */
.consulting-cta-simple {
    margin-top: 4rem;
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.consulting-cta-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.consulting-cta-simple .cta-content i {
    color: white;
    display: block;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consulting-cta-simple h3 {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.consulting-cta-simple p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Consulting Gap Solution */
.consulting-gap-solution {
    margin-top: 3rem;
    padding: 2.5rem 2rem;
    background: #000000;
    border-radius: var(--border-radius-large);
    text-align: center;
}

.gap-solution-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.gap-solution-content i {
    color: #FFD700;
    font-size: 2.5rem;
    display: block;
}

.gap-solution-content p {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* Execution Cycle */
.execution-cycle {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: var(--border-radius-large);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.execution-cycle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(74, 44, 221, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.execution-cycle-text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.8;
    color: #ffffff;
}

.cycle-item {
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
}

.cycle-arrow {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: 700;
    opacity: 0.9;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.consulting-services {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    margin-bottom: 2rem;
}

.consulting-services ul {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.consulting-services ul li {
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    padding-left: 2.5rem;
}

.consulting-services ul li:before {
    content: "→";
    position: absolute;
    left: 1rem;
    color: var(--primary-color);
    font-weight: bold;
}

.consulting-cta {
    text-align: center;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

/* Updated CTA Section */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
}

/* Responsive adjustments for new sections */
@media (max-width: 1200px) {
    .main-plans-grid {
        gap: 1.5rem;
    }
    
    .main-plans-grid .plan-card {
        min-height: 420px;
    }
    
    .plans-modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }
    
    .plan-card.module {
        min-height: 380px;
    }

    .audience-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .main-plans-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .main-plans-grid .plan-card {
        min-height: 400px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .plans-grid-middle {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .plans-modules-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .plan-card {
        min-width: 220px;
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    .plan-card.module {
        min-height: 400px;
        padding: 1.5rem 1rem 1rem 1rem;
    }
}

@media (max-width: 768px) {
    .pain-gain-card {
        flex-direction: column;
        text-align: center;
    }
    
    .arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .main-plans-grid {
        grid-template-columns: 1fr;
    }
    
    .main-plans-grid .plan-card {
        min-height: 380px;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid-middle {
        grid-template-columns: 1fr;
    }
    
    .plans-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card {
        min-width: 220px;
        padding: 2rem 1rem 1.5rem 1rem;
    }
    
    /* Card Horizontal Responsivo */
    .plan-card-horizontal {
        margin: 2rem 0;
        padding: 1.5rem;
    }
    
    .plan-horizontal-content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .plan-horizontal-left {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .plan-emoji-horizontal {
        font-size: 3rem;
    }
    
    .plan-horizontal-middle {
        min-width: 100%;
        text-align: center;
    }
    
    .plan-horizontal-right {
        width: 100%;
    }
    
    .btn-contratar-horizontal {
        width: 100%;
    }
    
    .plan-card.module {
        min-height: 400px;
    }
    
    .modules-title {
        font-size: 1.6rem;
    }
    
    .modules-subtitle {
        font-size: 1rem;
    }
    
    .consulting-services ul {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .pain-gain-card {
        padding: 1.5rem;
    }
    
    .plan-card {
        padding: 1.5rem;
        min-width: 0;
        width: 100%;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.module {
        min-height: 320px;
        padding: 1.2rem 0.8rem 0.8rem 0.8rem;
    }
    
    .plan-card.horizontal {
        padding: 1.5rem;
        gap: 1.5rem;
    }
    
    .module-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }
    
    .plan-emoji {
        font-size: 1rem;
        margin: 0.8rem 0 0.3rem 0;
    }
    
    .plans-grid-middle {
        grid-template-columns: 1fr;
    }
    
    /* Collabe Free Banner - Mobile Pequeno */
    .collabe-free-banner {
        margin: 2.5rem 0;
        padding: 2rem 0;
    }
    
    .free-banner-content {
        gap: 1.25rem;
        padding: 0 0.75rem;
    }
    
    /* Card Horizontal - Mobile Pequeno */
    .plan-card-horizontal {
        margin: 1.5rem 0;
        padding: 1.25rem;
    }
    
    .plan-horizontal-content {
        gap: 1.25rem;
    }
    
    .plan-emoji-horizontal {
        font-size: 2.5rem;
    }
    
    .plan-horizontal-info h4 {
        font-size: 1.3rem;
    }
    
    .plan-price-info-horizontal .plan-price {
        font-size: 1.3rem;
    }
    
    .plan-subtitle-horizontal {
        font-size: 0.95rem;
    }
    
    .plan-features-horizontal li {
        font-size: 0.85rem;
    }
    
    .btn-contratar-horizontal {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .consulting-services {
        padding: 1.5rem;
    }
    
    .consulting-services ul li {
        padding: 0.5rem 0.75rem;
        padding-left: 2rem;
    }
} 

/* Carrossel de Logos */
.logos-carousel {
    margin: 3rem 0;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0 50px; /* Add padding to accommodate arrows */
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    width: max-content;
}

.carousel-track .logo-item {
    flex: 0 0 200px;
    min-width: 200px;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 150px;
    margin: 0 1rem;
    text-align: center;
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    padding: 8px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo-item:hover .logo-img {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.2;
    margin-top: 0.25rem;
}



/* Carrossel de Depoimentos */
.testimonials-carousel {
    margin: 3rem 0;
    overflow: hidden;
}

.testimonials-carousel .carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    width: calc(200% + 2rem);
}

.testimonials-carousel .testimonial-card {
    min-width: 100%;
    margin: 0;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-carousel .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.testimonials-carousel .testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonials-carousel .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-carousel .author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.testimonials-carousel .author-info h4 {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.testimonials-carousel .author-info span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}



/* Navegação por setas */
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-medium);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 0;
}

.carousel-next {
    right: 0;
}

.carousel-arrow i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.carousel-arrow:hover i {
    color: white;
}

/* Responsive adjustments for arrows */
@media (max-width: 768px) {
    .carousel-container {
        padding: 0 40px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 35px;
    }
    
    .carousel-arrow {
        width: 30px;
        height: 30px;
    }
    
    .carousel-prev {
        left: 0;
    }
    
    .carousel-next {
        right: 0;
    }
    
    .carousel-arrow i {
        font-size: 0.8rem;
    }
}

/* Responsive adjustments for carousels */
@media (max-width: 768px) {
    .logo-item {
        min-width: 150px;
    }
    
    .logo-circle {
        width: 60px;
        height: 60px;
    }
    
    
    .testimonials-carousel .testimonial-card {
        min-width: 280px;
        padding: 1.5rem;
    }
    
    .testimonials-carousel .testimonial-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-item {
        min-width: 120px;
    }
    
    .logo-circle {
        width: 50px;
        height: 50px;
    }
    
    
    .testimonials-carousel .testimonial-card {
        min-width: 250px;
        padding: 1rem;
    }
    
    .logos-grid {
        gap: 0.5rem;
        padding: 0.5rem 0;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin; /* Firefox */
        -ms-overflow-style: auto; /* IE and Edge */
    }
    
    .logos-grid::-webkit-scrollbar {
        display: block; /* Chrome, Safari and Opera */
        height: 4px;
    }
    
    .logos-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 2px;
    }
    
    .logos-grid::-webkit-scrollbar-thumb {
        background: #c1c1c1;
        border-radius: 2px;
    }
    
    .logo-item {
        min-width: 80px;
    }
    
    .logo-img {
        width: 58px;
        height: 58px;
        padding: 4px;
    }
    
    .logo-name {
        font-size: 0.78rem;
    }
    
    .testimonial-highlight {
        padding: 2rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .quote-icon {
        font-size: 2rem;
    }
    
    .testimonial-content blockquote {
        font-size: 1.1rem;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
    
    .company-info {
        font-size: 0.8rem;
    }
    
    .testimonials-carousel .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
} 



/* Melhorias na responsividade dos carrosséis */
@media (max-width: 768px) {
    .logo-item {
        min-width: 150px;
    }
    
    .testimonials-carousel .testimonial-card {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .logo-item {
        min-width: 120px;
    }
    
    .testimonials-carousel .testimonial-card {
        min-width: 100%;
    }
} 

/* CONSULTORIA PERSONALIZADA - NOVO DESIGN */
.consulting-section {
    margin-top: 4rem;
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: var(--border-radius-large);
    position: relative;
    overflow: hidden;
}

.consulting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.consulting-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 4rem;
}

.consulting-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.consulting-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.consulting-timeline {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.consulting-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary-color), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.consulting-service {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.consulting-service:nth-child(odd) {
    flex-direction: row;
}

.consulting-service:nth-child(even) {
    flex-direction: row-reverse;
}

.service-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.4);
    z-index: 3;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.service-content {
    width: 45%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-large);
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.service-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.98);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(74, 44, 221, 0.3);
    transition: all 0.3s ease;
}

.service-content:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 44, 221, 0.4);
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.service-info h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features span {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-weight: 500;
}

.consulting-cta {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 4rem;
}

.btn-consulting {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-consulting::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-consulting:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.6);
    background: linear-gradient(135deg, #ff5252 0%, #d32f2f 100%);
}

.btn-consulting:hover::before {
    left: 100%;
}

.btn-consulting:active {
    transform: translateY(-1px);
}

/* Responsive adjustments for consulting section */
@media (max-width: 768px) {
    .consulting-section {
        margin-top: 3rem;
        padding: 2rem 0;
    }
    
    .consulting-section h3 {
        font-size: 2rem;
    }
    
    .consulting-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .consulting-timeline::before {
        display: none;
    }
    
    .consulting-service {
        flex-direction: column !important;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .service-number {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin: 0 auto 1rem;
    }
    
    .service-content {
        width: 100%;
        margin-top: 1rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 1rem;
    }
    
    .service-icon i {
        font-size: 1.5rem;
    }
    
    .service-info h4 {
        font-size: 1.2rem;
    }
    
    .btn-consulting {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .consulting-section {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
    
    .consulting-section h3 {
        font-size: 1.6rem;
    }
    
    .consulting-desc {
        font-size: 0.9rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
    }
    
    .service-icon i {
        font-size: 1.2rem;
    }
    
    .service-info h4 {
        font-size: 1.1rem;
    }
    
    .service-info p {
        font-size: 0.9rem;
    }
    
    .service-features span {
        font-size: 0.8rem;
    }
    
    .btn-consulting {
        font-size: 0.9rem;
        padding: 0.9rem 1.8rem;
    }
}

/* PÁGINA DE CONSULTORIA - ESTILOS ESPECÍFICOS */

/* Hero Consultoria */
.hero-consultoria {
    padding: 6rem 0 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-consultoria::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

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

.hero-consultoria .hero-title {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-consultoria .highlight {
    color: #F0C277!important;
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: unset !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.hero-consultoria .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.hero-consultoria .hero-note {
    color: rgba(255, 255, 255, 0.8);
}

/* Why Consulting Section */
.why-consulting {
    padding: 5rem 0;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.why-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Consulting Services Section */
.consulting-services-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

/* Process Section */
.consulting-process {
    padding: 5rem 0;
    background: var(--bg-white);
}

.process-wrapper {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.process-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    background: var(--bg-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.process-arrow {
    color: var(--primary-color);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Step number para process-step (consultoria) */
.process-step .step-number {
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin: 0 auto 1.5rem auto !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    z-index: 2 !important;
    flex-shrink: 0 !important;
    pointer-events: auto !important;
    border: none !important;
    box-shadow: none !important;
    line-height: 1 !important;
}

.process-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: center;
    width: 100%;
}

/* Consulting Testimonials */
.consulting-testimonials {
    padding: 5rem 0;
    background: var(--bg-light);
}

.testimonial-highlight {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-medium);
    margin-top: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.quote-icon {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.testimonial-highlight blockquote {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--text-primary);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-highlight blockquote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    position: absolute;
    top: -1rem;
    left: -1rem;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

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

.author-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-secondary);
    font-size: 1rem;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Consulting CTA Section */
.consulting-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.consulting-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.consulting-cta-section .cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.consulting-cta-section h2 {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.consulting-cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.consulting-form {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
}

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

.consulting-form .form-group {
    margin-bottom: 1rem;
}

.consulting-form input,
.consulting-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    backdrop-filter: blur(10px);
}

.consulting-form input::placeholder,
.consulting-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.consulting-form input:focus,
.consulting-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.consulting-cta-section .cta-note {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

/* Nav Active State */
.nav-links a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Responsive Design for Consultoria Page */
@media (max-width: 1024px) {
    .hero-consultoria {
        padding: 140px 0 60px;
    }
    
    .hero-consultoria .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-consultoria .hero-visual {
        justify-content: center;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-block {
        flex-direction: column;
        gap: 2rem;
    }
    
    .process-arrow {
        transform: rotate(90deg);
        font-size: 1.25rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-consultoria {
        padding: 100px 0 40px;
        overflow: hidden;
    }
    
    .hero-consultoria .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    
    .hero-consultoria .hero-visual {
        order: 1;
        margin-bottom: 1rem;
        height: auto;
        min-height: auto;
        transform: none !important;
        justify-content: center;
    }
    
    .hero-consultoria .hero-text {
        order: 2;
    }
    
    .hero-consultoria .hero-image {
        justify-content: center;
    }
    
    .hero-consultoria .hero-title {
        font-size: 2.25rem;
        line-height: 1.3;
    }
    
    .hero-consultoria .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-consultoria .hero-img {
        max-width: 90%;
        margin: 0 auto;
        display: block;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: none;
    }
    
    .why-card {
        padding: 1.75rem;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    .why-card h3 {
        font-size: 1.3rem;
    }
    
    .consulting-services-section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .consulting-testimonials {
        padding: 60px 0;
    }
    
    .testimonial-highlight {
        padding: 2rem 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-highlight blockquote {
        font-size: 1.15rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
    }
    
    .consulting-cta-section {
        padding: 60px 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .consulting-form {
        padding: 1.75rem;
    }
    
    .btn-consulting {
        font-size: 1.1rem;
        padding: 1.1rem 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-consultoria {
        padding: 90px 0 30px;
        overflow: hidden;
    }
    
    .hero-consultoria .hero-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-consultoria .hero-visual {
        order: 1;
        margin-bottom: 0.5rem;
        height: auto;
        transform: none !important;
        justify-content: center;
    }
    
    .hero-consultoria .hero-text {
        order: 2;
    }
    
    .hero-consultoria .hero-image {
        justify-content: center;
    }
    
    .hero-consultoria .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-consultoria .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-consultoria .hero-img {
        max-width: 85%;
        margin: 0 auto;
        display: block;
    }
    
    .why-consulting {
        padding: 40px 0;
    }
    
    .why-card {
        padding: 1.5rem;
    }
    
    .why-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-card h3 {
        font-size: 1.2rem;
    }
    
    .why-card p {
        font-size: 0.9rem;
    }
    
    .consulting-services-section {
        padding: 40px 0;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.25rem;
    }
    
    .service-icon i {
        font-size: 1.6rem;
    }
    
    .service-info h4 {
        font-size: 1.2rem;
    }
    
    .service-info p {
        font-size: 0.95rem;
    }
    
    .service-features span {
        font-size: 0.85rem;
    }
    
    .consulting-process {
        padding: 40px 0;
    }
    
    .process-step {
        padding: 1.25rem;
    }
    
    .process-step .step-number {
        width: 50px !important;
        height: 50px !important;
        font-size: 1.2rem !important;
        margin: 0 auto 1.25rem auto !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }
    
    .process-step h3 {
        font-size: 1.15rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .consulting-testimonials {
        padding: 40px 0;
    }
    
    .testimonial-highlight {
        padding: 1.75rem 1.25rem;
        margin-top: 1.5rem;
    }
    
    .quote-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-highlight blockquote {
        font-size: 1.05rem;
    }
    
    .testimonial-highlight blockquote::before {
        font-size: 3rem;
        top: -0.75rem;
        left: -0.75rem;
    }
    
    .author-avatar {
        width: 55px;
        height: 55px;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
    }
    
    .author-info span {
        font-size: 0.9rem;
    }
    
    .consulting-cta-section {
        padding: 40px 0;
    }
    
    .consulting-cta-section h2 {
        font-size: 1.75rem;
    }
    
    .consulting-cta-section p {
        font-size: 1rem;
    }
    
    .consulting-form {
        padding: 1.5rem;
    }
    
    .consulting-form input,
    .consulting-form textarea {
        padding: 0.9rem;
        font-size: 0.95rem;
    }
    
    .btn-consulting {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: white;
    font-size: 28px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-primary);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text-primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* Responsive para WhatsApp flutuante */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        z-index: 9998;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-float i {
        font-size: 22px;
    }
}

/* Media query adicional para transição suave entre mobile e tablet */
@media (min-width: 481px) and (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        min-height: 200px;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
    
    .btn-large {
        padding: 0.95rem 1.75rem;
        font-size: 1.05rem;
    }
    
    .plan-card {
        padding: 2rem;
    }
    
    .plan-header h4 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    /* Hero AIDA - Extra Small */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-social-proof {
        gap: 0.75rem;
    }
    
    .proof-item strong {
        font-size: 1.25rem;
    }
    
    /* Infográfico - Extra Small */
    .step-segment {
        height: 140px;
    }
    
    .segment-content i {
        font-size: 2rem;
    }
    
    .segment-content h4 {
        font-size: 1rem;
    }
    
    /* Plans Table - Extra Small */
    .plans-comparison {
        font-size: 0.75rem;
    }
    
    .plans-comparison th,
    .plans-comparison td {
        padding: 0.5rem 0.35rem;
        font-size: 0.75rem;
    }
    
    .plans-table-container {
        padding: 30px 35px 15px 10px;
    }
    
    .plans-table-container .badge-featured {
        font-size: 0.6rem;
        padding: 0.35rem 0.7rem;
        top: 5px;
        right: calc(8% + 15px);
        transform: rotate(5deg);
    }
    
    .plan-emoji-table {
        font-size: 1rem;
        margin-bottom: 0.3rem;
    }
    
    .plans-comparison td.check,
    .plans-comparison td.no {
        font-size: 1.2rem;
    }
    
    /* CTA Final - Extra Small */
    .cta-content-aida h2 {
        font-size: 1.75rem;
    }
    
    .cta-content-aida p {
        font-size: 1rem;
    }
    
    .cta-guarantees {
        gap: 1rem;
    }
    
    .guarantee-item {
        font-size: 0.9rem;
    }
}

/* Step Pages Styles */
.breadcrumb-section {
    padding: 100px 0 20px;
    background: var(--bg-light);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.breadcrumb .separator {
    color: var(--text-light);
}

.breadcrumb .current {
    color: var(--text-primary);
    font-weight: 500;
}

.step-hero {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #0C1F3F 0%, #1a3d7a 50%, #2d5aa0 100%);
    color: white;
    position: relative;
    overflow: visible;
}

.step-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.step-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.step-hero-content .hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-hero-content .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: visible;
    min-height: auto;
}

.step-hero-content .hero-visual .hero-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    object-position: center;
}

.step-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.badge-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.step-hero-content .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: white;
    margin: 0;
}

.step-hero-content .hero-text .step-tagline {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.step-hero-content .hero-text .btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.step-hero-content .hero-text .btn-primary {
    background: #ffffff;
    color: #0C1F3F;
    font-weight: 600;
}

.step-hero-content .hero-text .btn-primary:hover {
    background: #f0f0f0;
    color: #0C1F3F;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.step-hero-content .hero-text .btn-primary i {
    color: #0C1F3F;
}

.step-what {
    padding: 80px 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.content-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.content-text strong {
    color: var(--primary-color);
}

.step-icon-large {
    width: 200px;
    height: 200px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 15px 50px rgba(74, 44, 221, 0.4);
}

.step-icon-large i {
    font-size: 5rem;
    color: white;
}

.step-how {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card-step {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-large);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.feature-card-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card-step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.step-result {
    padding: 60px 0;
    background: white;
}

.result-highlight {
    background: linear-gradient(135deg, #1ebe5d 0%, #128c7e 100%);
    color: white;
    padding: 3rem;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: 0 10px 40px rgba(30, 190, 93, 0.3);
}

.result-highlight i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.result-highlight h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.result-highlight p {
    font-size: 1.3rem;
    line-height: 1.6;
    color: white;
    margin: 0;
}

.step-cta {
    padding: 80px 0;
    background: var(--bg-light);
    text-align: center;
}

.step-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-cta p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Responsive Step Pages */
@media (max-width: 968px) {
    .step-hero {
        padding: 50px 0 70px;
    }
    
    .step-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
        overflow: visible;
    }
    
    .step-hero-content .hero-text {
        align-items: center;
        text-align: center;
    }
    
    .step-hero-content .hero-text .btn {
        align-self: center;
    }
    
    .step-hero-content .hero-visual {
        order: 1;
        overflow: visible;
    }
    
    .step-hero-content .hero-text {
        order: 2;
    }
}

@media (max-width: 768px) {
    .step-hero {
        padding: 40px 0 60px;
    }
    
    .step-hero-content {
        gap: 2rem;
    }
    
    .step-hero-content .hero-text h1 {
        font-size: 2.25rem;
    }
    
    .step-hero-content .hero-text .step-tagline {
        font-size: 1.1rem;
    }
    
    .step-hero-content .hero-visual .hero-img {
        max-width: 100%;
        width: 100%;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .step-icon-large i {
        font-size: 3.5rem;
    }
}