/* ================================ 
   LANDING PAGE SECTION - CSS
   ================================ */

.landing_page_section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    overflow: hidden;
}

/* Fundo Animado */
.lp_animated_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 64, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 64, 0, 0.03) 0%, transparent 50%);
    animation: bgFloat 15s ease-in-out infinite;
    pointer-events: none;
}

/* @keyframes bgFloat { */
    /* 0%, 100% { transform: translateY(0px); } */
    /* 50% { transform: translateY(-30px); } */
/* } */

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

/* ================================ 
   HEADER
   ================================ */

.lp_header {
    text-align: center;
    margin-bottom: 80px;
    padding-top: 70px;
}

.lp_subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #FF4000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 64, 0, 0.1);
    border-radius: 50px;
}

.lp_title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.lp_highlight {
    background: linear-gradient(135deg, #FF4000 0%, #FF6B2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp_description {
    font-size: 18px;
    color: #b0b0c0;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================ 
   CONTENT GRID
   ================================ */

.lp_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

/* ================================ 
   PROCESSOS
   ================================ */

.lp_processes_column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lp_processes_title {
    margin-bottom: 20px;
}

.lp_processes_title h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.lp_processes_title p {
    font-size: 16px;
    color: #b0b0c0;
}

/* Cards de Processo */
.lp_process_card {
    position: relative;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.lp_process_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.lp_process_card:hover {
    background: rgba(255, 64, 0, 0.08);
    border-color: rgba(255, 64, 0, 0.5);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(255, 64, 0, 0.15);
}

.lp_process_card:hover::before {
    opacity: 1;
}

.lp_process_number {
    font-size: 48px;
    font-weight: 800;
    color: #FF4000;
    opacity: 0.3;
    position: absolute;
    top: -10px;
    right: 20px;
    font-family: 'Arial', sans-serif;
}

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

.lp_process_content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.lp_process_content p {
    font-size: 14px;
    color: #b0b0c0;
    line-height: 1.6;
}

.lp_process_indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, #FF4000, #FF6B2C);
    transition: width 0.5s ease;
}

.lp_process_card:hover .lp_process_indicator {
    width: 100%;
}

/* ================================ 
   BENEFÍCIOS E VISUALIZADOR
   ================================ */

.lp_benefits_column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Visualizador de Processo */
.lp_process_visualizer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lp_viz_circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.15) 0%, rgba(255, 107, 44, 0.1) 100%);
    border: 2px solid rgba(255, 64, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: circlePulse 4s ease-in-out infinite;
}

@keyframes circlePulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(255, 64, 0, 0.4);
    }
    50% { 
        box-shadow: 0 0 0 20px rgba(255, 64, 0, 0);
    }
}

.lp_viz_circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid transparent;
    border-top-color: #FF4000;
    animation: rotateCircle 6s linear infinite;
}

@keyframes rotateCircle {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.lp_viz_content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.lp_viz_step {
    font-size: 12px;
    text-transform: uppercase;
    color: #FF4000;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.lp_current_step {
    font-size: 24px;
    font-weight: 800;
}

.lp_viz_title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.lp_viz_description {
    font-size: 13px;
    color: #b0b0c0;
    max-width: 200px;
}

/* Cards de Benefícios */
.lp_benefits_list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.lp_benefit_item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 64, 0, 0.05);
    border: 1px solid rgba(255, 64, 0, 0.15);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.lp_benefit_item:hover {
    background: rgba(255, 64, 0, 0.1);
    border-color: rgba(255, 64, 0, 0.4);
    transform: translateY(-5px);
}

.lp_benefit_icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF4000 0%, #FF6B2C 100%);
    border-radius: 8px;
    color: #ffffff;
    font-size: 24px;
}

.lp_benefit_text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}

.lp_benefit_text p {
    font-size: 13px;
    color: #b0b0c0;
    line-height: 1.5;
}

/* ================================ 
   CTA SECTION
   ================================ */

.lp_cta_section {
    margin-top: 60px;
}

.lp_cta_card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.1) 0%, rgba(255, 107, 44, 0.05) 100%);
    border: 2px solid rgba(255, 64, 0, 0.3);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.lp_cta_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.1) 0%, transparent 70%);
    animation: floatBg 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-50px, -50px); }
}

.lp_cta_content {
    position: relative;
    z-index: 2;
    flex: 1;
}

.lp_cta_content h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.lp_cta_content p {
    font-size: 16px;
    color: #b0b0c0;
}

.lp_cta_button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #FF4000 0%, #FF6B2C 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.lp_cta_button:hover {
    transform: translateX(5px);
    box-shadow: 0 15px 40px rgba(255, 64, 0, 0.4);
}

.lp_cta_button i {
    transition: transform 0.3s ease;
}

.lp_cta_button:hover i {
    transform: translateX(5px);
}

/* ================================ 
   RESPONSIVO
   ================================ */

@media (max-width: 768px) {
    .landing_page_section {
        padding: 10px 20px;
    }
    
    .lp_header {
        padding-top: 10px;
    }
    
    .lp_title {
        font-size: 32px;
    }
    
    .lp_description {
        font-size: 16px;
    }
    
    .lp_content_grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .lp_processes_title h3 {
        font-size: 24px;
    }
    
    .lp_benefits_list {
        grid-template-columns: 1fr;
    }
    
    .lp_cta_card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        gap: 25px;
    }
    
    .lp_cta_content h3 {
        font-size: 22px;
    }
    
    .lp_viz_circle {
        width: 240px;
        height: 240px;
    }
}




















/* ================================ 
   KEYFRAMES E EFEITOS
   ================================ */

@keyframes rippleEffect {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ================================ 
   RESPONSIVO
   ================================ *//* ================================ 
   LANDING PAGE STATS SECTION - CSS
   ================================ */

.lp_stats_section {
    position: relative;
    padding: 80px 20px;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    overflow: hidden;
}

.lp_stats_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 64, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 107, 44, 0.06) 0%, transparent 50%);
    animation: bgDrift 20s ease-in-out infinite;
    pointer-events: none;
}

/* @keyframes bgDrift { */
    /* 0%, 100% { transform: translate(0, 0); } */
    /* 50% { transform: translate(50px, -50px); } */
/* } */

.lp_stats_container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* ================================ 
   HEADER STATS
   ================================ */

.lp_stats_header {
    text-align: center;
    margin-bottom: 70px;
}

.lp_stats_subtitle {
    font-size: 14px;
    font-weight: 600;
    color: #FF4000;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 64, 0, 0.1);
    border-radius: 50px;
}

.lp_stats_title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.lp_stats_highlight {
    background: linear-gradient(135deg, #FF4000 0%, #FF6B2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp_stats_description {
    font-size: 18px;
    color: #b0b0c0;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================ 
   STATS GRID - COLORIDO
   ================================ */

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

.lp_stat_card {
    position: relative;
    padding: 35px;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

/* Card 1 - Azul */
.lp_stat_card_1 {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    box-shadow: 0 10px 40px rgba(0, 102, 204, 0.2);
}

.lp_stat_card_1:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Card 2 - Verde */
.lp_stat_card_2 {
    background: linear-gradient(135deg, #00b894 0%, #00a881 100%);
    box-shadow: 0 10px 40px rgba(0, 184, 148, 0.2);
}

.lp_stat_card_2:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 184, 148, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Card 3 - Roxo */
.lp_stat_card_3 {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.2);
}

.lp_stat_card_3:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(155, 89, 182, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Card 4 - Laranja */
.lp_stat_card_4 {
    background: linear-gradient(135deg, #FF4000 0%, #FF6B2C 100%);
    box-shadow: 0 10px 40px rgba(255, 64, 0, 0.3);
}

.lp_stat_card_4:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Card 5 - Rosa/Magenta */
.lp_stat_card_5 {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%);
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.2);
}

.lp_stat_card_5:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(233, 30, 99, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Card 6 - Turquesa */
.lp_stat_card_6 {
    background: linear-gradient(135deg, #00bcd4 0%, #0097a7 100%);
    box-shadow: 0 10px 40px rgba(0, 188, 212, 0.2);
}

.lp_stat_card_6:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 188, 212, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Ícone do Card */
.lp_stat_icon {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

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

.lp_stat_card_1 .lp_stat_icon { animation-delay: 0s; }
.lp_stat_card_2 .lp_stat_icon { animation-delay: 0.2s; }
.lp_stat_card_3 .lp_stat_icon { animation-delay: 0.4s; }
.lp_stat_card_4 .lp_stat_icon { animation-delay: 0.6s; }
.lp_stat_card_5 .lp_stat_icon { animation-delay: 0.8s; }
.lp_stat_card_6 .lp_stat_icon { animation-delay: 1s; }

/* Conteúdo do Card */
.lp_stat_content {
    position: relative;
    z-index: 1;
}

.lp_stat_number {
    margin-bottom: 15px;
}

.lp_stat_value {
    font-size: 44px;
    font-weight: 900;
    color: #ffffff;
    display: block;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.lp_stat_content h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.lp_stat_content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Barra de Progresso */
.lp_stat_progress {
    margin-top: 20px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
}

.lp_progress_bar {
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    animation: progressFill 1.5s ease-out forwards;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

/* ================================ 
   COMPARATIVO
   ================================ */

.lp_stats_comparison {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 64, 0, 0.2);
    border-radius: 16px;
    padding: 50px 40px;
    margin-bottom: 60px;
}

.lp_stats_comparison h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
}

.lp_comparison_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.lp_comparison_item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.lp_comparison_item:hover {
    transform: scale(1.02);
}

.lp_comparison_site {
    border: 2px solid rgba(231, 76, 60, 0.5);
    background: rgba(231, 76, 60, 0.05);
}

.lp_comparison_lp {
    border: 2px solid rgba(46, 204, 113, 0.5);
    background: rgba(46, 204, 113, 0.05);
}

.lp_comparison_title {
    padding: 20px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.lp_comparison_site .lp_comparison_title {
    background: rgba(231, 76, 60, 0.2);
    color: #ff6b6b;
}

.lp_comparison_lp .lp_comparison_title {
    background: rgba(46, 204, 113, 0.2);
    color: #51cf66;
}

.lp_comparison_title i {
    font-size: 24px;
}

.lp_comparison_content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lp_comparison_point {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #b0b0c0;
}

.lp_comparison_point i {
    font-size: 18px;
    flex-shrink: 0;
}

.lp_comparison_site .lp_comparison_point i {
    color: #ff6b6b;
}

.lp_comparison_lp .lp_comparison_point i {
    color: #51cf66;
}

/* ================================ 
   ELEMENTOS QUE CONVERTEM
   ================================ */

.lp_conversion_elements {
    text-align: center;
}

.lp_conversion_elements h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.lp_conversion_elements > p {
    font-size: 18px;
    color: #b0b0c0;
    margin-bottom: 40px;
}

.lp_elements_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.lp_element_badge {
    padding: 25px 20px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.1) 0%, rgba(255, 107, 44, 0.05) 100%);
    border: 2px solid rgba(255, 64, 0, 0.3);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.lp_element_badge:hover {
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.2) 0%, rgba(255, 107, 44, 0.1) 100%);
    border-color: rgba(255, 64, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 64, 0, 0.2);
}

.lp_element_badge i {
    font-size: 32px;
    background: linear-gradient(135deg, #FF4000 0%, #FF6B2C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp_element_badge span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
}

/* ================================ 
   KEYFRAMES E EFEITOS
   ================================ */

@keyframes rippleEffect {
    0% {
        width: 20px;
        height: 20px;
        opacity: 1;
    }
    100% {
        width: 200px;
        height: 200px;
        opacity: 0;
    }
}

@keyframes badgePulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .lp_stats_section {
        padding: 50px 20px;
    }
    
    .lp_stats_title {
        font-size: 32px;
    }
    
    .lp_stats_description {
        font-size: 16px;
    }
    
    .lp_stats_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lp_stat_card {
        padding: 30px;
    }
    
    .lp_stat_value {
        font-size: 36px;
    }
    
    .lp_comparison_grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lp_stats_comparison {
        padding: 30px 20px;
    }
    
    .lp_stats_comparison h3 {
        font-size: 24px;
    }
    
    .lp_conversion_elements h3 {
        font-size: 24px;
    }
    
    .lp_elements_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .lp_element_badge {
        padding: 20px 15px;
        min-width: auto;
    }
}