.progress_fill {
    height: 100%;
    background: linear-gradient(90deg, #FF4000, #FF8C00);
    transition: width 0.5s ease;
    box-shadow: 0 0 20px rgba(255, 64, 0, 0.8);
}

.btn_prev,
.btn_next,
.btn_submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 64, 0, 0.5);
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.15), rgba(255, 140, 0, 0.1));
    color: #FF8C00;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn_prev:hover,
.btn_next:hover,
.btn_submit:hover {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 64, 0, 0.6);
}

.btn_submit {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 64, 0, 0.5);
}

.btn_submit:hover {
    background: linear-gradient(135deg, #FF5500, #FFD700);
    box-shadow: 0 12px 30px rgba(255, 64, 0, 0.7);
}.metric_fill {
    height: 100%;
    background: linear-gradient(90deg, #FF4000, #FF8C00);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 25px rgba(255, 64, 0, 0.8);
}

.metric_value {
    font-size: 12px;
    color: #FFD700;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 140, 0, 0.5);
}

.option_radio input[type="radio"]:checked {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(255, 64, 0, 0.8);
}.score_progress {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 596;
    stroke-dashoffset: 596;
    transition: stroke-dashoffset 0.8s ease;
}

.score_circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
}

.score_svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 20px rgba(255, 64, 0, 0.4));
}

.score_number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF4000, #FFD700, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    text-shadow: 0 0 30px rgba(255, 64, 0, 0.3);
}.optimization_cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid rgba(255, 64, 0, 0.5);
    border-radius: 24px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.optimization_cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.optimization_cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #FF4000 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.optimization_cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.btn_whatsapp_optimization {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #25D366, #20BA58);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn_whatsapp_optimization::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_whatsapp_optimization:hover::before {
    left: 100%;
}

.btn_whatsapp_optimization:hover {
    background: linear-gradient(135deg, #20BA58, #1da851);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.7);
}

.btn_whatsapp_optimization i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.btn_whatsapp_optimization:hover i {
    transform: translateY(-3px) scale(1.1);
}.optimization_benefits {
    margin-top: auto;
}

/* ========================================
   SEÇÃO DE INFORMAÇÕES - CSS
   ======================================== */

.optimization_info_section {
    padding: 120px 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.info_grid_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 64, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 64, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

.info_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* Header Info */
.info_header {
    text-align: center;
    margin-bottom: 70px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.info_header h2 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #FF4000 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info_header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Content Grid */
.info_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.info_card {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a0a 100%);
    border: 2px solid rgba(255, 64, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.5s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(255, 64, 0, 0.15);
}

.info_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.info_card:nth-child(1) { animation-delay: 0.2s; }
.info_card:nth-child(2) { animation-delay: 0.3s; }

.info_card:hover {
    border-color: rgba(255, 64, 0, 0.7);
    box-shadow: 0 25px 60px rgba(255, 64, 0, 0.3);
    transform: translateY(-10px);
    background: linear-gradient(135deg, #1a0a0a 0%, #2a1a0a 100%);
}

.info_card_icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 32px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 64, 0, 0.5);
    position: relative;
    z-index: 1;
}

.info_card h3 {
    font-size: 26px;
    color: white;
    margin-bottom: 15px;
    margin-top: 0;
    background: linear-gradient(135deg, #FF6D00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.info_card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.info_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.info_list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.info_list li i {
    color: #FF8C00;
    font-size: 16px;
}

/* Benefits Section */
.benefits_section {
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.benefits_section h2 {
    text-align: center;
    font-size: 42px;
    color: white;
    margin-bottom: 60px;
}

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

.benefit_item {
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.1) 0%, transparent 100%);
    border: 2px solid rgba(255, 64, 0, 0.2);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit_item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.benefit_item:hover {
    border-color: rgba(255, 64, 0, 0.5);
    box-shadow: 0 20px 50px rgba(255, 64, 0, 0.2);
    transform: translateY(-10px);
}

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

.benefit_icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 64, 0, 0.4);
    transition: all 0.4s ease;
}

.benefit_item:hover .benefit_icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 64, 0, 0.6);
}

.benefit_item h4 {
    font-size: 20px;
    color: white;
    margin-bottom: 12px;
    margin-top: 0;
}

.benefit_item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Info CTA */
.info_cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.2) 0%, rgba(255, 140, 0, 0.1) 100%);
    border: 2px solid rgba(255, 64, 0, 0.5);
    border-radius: 24px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.info_cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.2), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.info_cta h3 {
    font-size: 32px;
    color: white;
    margin-bottom: 10px;
    margin-top: 0;
    background: linear-gradient(135deg, #FF4000 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.info_cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.btn_info_cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(255, 64, 0, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn_info_cta::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_info_cta:hover::before {
    left: 100%;
}

.btn_info_cta:hover {
    background: linear-gradient(135deg, #FF5500, #FFD700);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 50px rgba(255, 64, 0, 0.7);
}

.btn_info_cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn_info_cta:hover i {
    transform: translateY(-3px);
}

/* Responsivo */
@media (max-width: 1200px) {
    .info_content_grid {
        grid-template-columns: 1fr;
    }
    
    .benefits_grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .optimization_info_section {
        padding: 60px 0;
    }
    
    .info_header h2 {
        font-size: 32px;
    }
    
    .info_card {
        padding: 30px 20px;
    }
    
    .info_card h3 {
        font-size: 22px;
    }
    
    .benefits_section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .benefit_item {
        padding: 25px 20px;
    }
    
    .info_cta {
        padding: 40px 25px;
    }
    
    .info_cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .optimization_info_section {
        padding: 40px 0;
    }
    
    .info_container {
        padding: 0 15px;
    }
    
    .info_header h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .info_header p {
        font-size: 14px;
    }
    
    .info_content_grid {
        gap: 25px;
        margin-bottom: 50px;
    }
    
    .info_card {
        padding: 20px 15px;
    }
    
    .info_card h3 {
        font-size: 18px;
    }
    
    .info_card p {
        font-size: 14px;
    }
    
    .info_list li {
        font-size: 13px;
    }
    
    .benefits_grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .benefits_section h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }
    
    .benefit_item {
        padding: 20px 15px;
    }
    
    .benefit_icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .benefit_item h4 {
        font-size: 16px;
    }
    
    .benefit_item p {
        font-size: 13px;
    }
    
    .info_cta {
        padding: 30px 15px;
        margin-top: 40px;
    }
    
    .info_cta h3 {
        font-size: 20px;
    }
    
    .info_cta p {
        font-size: 13px;
    }
}/* ========================================
   SEÇÃO OTIMIZAÇÃO DE SITES - CSS MODERNO
   ======================================== */

.optimization_section_modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Grid Background */
.optimization_grid_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 64, 0, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 64, 0, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    pointer-events: none;
}

/* Floating Particles */
.optimization_particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF4000;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticleOptimization 4s ease-in-out infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 1s; }
.particle:nth-child(3) { left: 50%; animation-delay: 2s; }
.particle:nth-child(4) { left: 70%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 90%; animation-delay: 0.5s; }

@keyframes floatParticleOptimization {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Container */
.optimization_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

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

.optimization_header {
    text-align: center;
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

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

.optimization_header h4 {
    color: #FF4000;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    margin-top: 40px;
}

.optimization_header h2 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.optimization_header h2 .highlight {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.optimization_header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

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

.optimization_content_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: stretch;
}

/* ========================================
   LEFT SIDE - FORM CARD
   ======================================== */

.optimization_left {
    opacity: 0;
    animation: fadeInLeft 0.8s ease 0.2s forwards;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.optimization_form_card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a0a 100%);
    border: 2px solid rgba(255, 64, 0, 0.4);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.2), inset 0 1px 0 rgba(255, 140, 0, 0.2);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.optimization_form_card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 64, 0, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.optimization_form_card:hover {
    border-color: rgba(255, 64, 0, 0.8);
    box-shadow: 0 30px 80px rgba(255, 64, 0, 0.3), inset 0 1px 0 rgba(255, 140, 0, 0.3);
    background: linear-gradient(135deg, #2a1a0a 0%, #3a2a1a 100%);
}

.optimization_form_card h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0 0 10px 0;
    background: linear-gradient(135deg, #FF4000, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.form_subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 30px;
}

/* ========================================
   FORM STYLING
   ======================================== */

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

.form_question {
    animation: slideIn 0.4s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form_question label:first-of-type {
    display: block;
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 18px;
    text-transform: capitalize;
}

.option_group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option_radio {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid rgba(255, 64, 0, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.option_radio:hover {
    background: rgba(255, 64, 0, 0.1);
    border-color: rgba(255, 64, 0, 0.5);
    transform: translateX(5px);
}

.option_radio input[type="radio"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #FF6D00;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.option_radio input[type="radio"]:checked {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-color: transparent;
    box-shadow: 0 0 15px rgba(255, 64, 0, 0.6);
}

.option_radio input[type="radio"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.option_radio input[type="radio"]:checked::after {
    opacity: 1;
}

.option_radio span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.option_radio:hover span {
    color: white;
}

/* ========================================
   FORM CONTROLS
   ======================================== */

.form_controls {
    display: flex;
    gap: 12px;
    margin-top: 30px;
    justify-content: flex-end;
}

.btn_prev,
.btn_next,
.btn_submit {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: 2px solid rgba(255, 64, 0, 0.3);
    background: rgba(255, 64, 0, 0.1);
    color: #FF8C00;
    font-size: 15px;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn_prev:hover,
.btn_next:hover,
.btn_submit:hover {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 64, 0, 0.4);
}

.btn_submit {
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border-color: transparent;
    color: white;
}

.btn_submit:hover {
    background: linear-gradient(135deg, #FF5500, #FF9500);
}

/* ========================================
   PROGRESS BAR
   ======================================== */

.form_progress {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
}

.progress_bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.progress_fill {
    height: 100%;
    background: linear-gradient(90deg, #FF4000, #FF8C00);
    transition: width 0.5s ease;
    box-shadow: 0 0 15px rgba(255, 64, 0, 0.6);
}

.progress_text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 600;
    min-width: 35px;
}

/* ========================================
   RIGHT SIDE - STATISTICS
   ======================================== */

.optimization_right {
    opacity: 0;
    animation: fadeInRight 0.8s ease 0.2s forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.optimization_stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #1a2a2a 100%);
    border: 2px solid rgba(255, 64, 0, 0.4);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 64, 0, 0.2), inset 0 1px 0 rgba(255, 140, 0, 0.2);
}

.optimization_stats::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.optimization_stats:hover {
    border-color: rgba(255, 64, 0, 0.8);
    box-shadow: 0 30px 80px rgba(255, 64, 0, 0.3), inset 0 1px 0 rgba(255, 140, 0, 0.3);
    background: linear-gradient(135deg, #2a1a1a 0%, #2a3a3a 100%);
}

.optimization_stats > h3 {
    font-size: 22px;
    color: white;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(135deg, #FF8C00, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

/* ========================================
   SCORE CIRCLE
   ======================================== */

.optimization_score {
    margin-bottom: 40px;
    text-align: center;
}

.score_circle {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
}

.score_svg {
    transform: rotate(-90deg);
    width: 100%;
    height: 100%;
}

.score_bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.score_progress {
    fill: none;
    stroke: url(#scoreGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 596;
    stroke-dashoffset: 596;
    transition: stroke-dashoffset 0.8s ease;
}

.score_content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.score_number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.score_label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 5px;
}

.score_text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   METRICS
   ======================================== */

.optimization_metrics {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid rgba(255, 64, 0, 0.2);
}

.metric_item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.metric_label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric_bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.metric_fill {
    height: 100%;
    background: linear-gradient(90deg, #FF4000, #FF8C00);
    border-radius: 10px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 64, 0, 0.6);
}

.metric_value {
    font-size: 12px;
    color: #FF8C00;
    font-weight: 700;
}

/* ========================================
   BENEFITS LIST
   ======================================== */

.optimization_benefits h4 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.optimization_benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.optimization_benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s ease;
}

.optimization_benefits li:hover {
    color: white;
    transform: translateX(5px);
}

.optimization_benefits li i {
    color: #FF8C00;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.optimization_benefits li:hover i {
    transform: scale(1.2);
    color: #FF4000;
}

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

.optimization_cta {
    text-align: center;
    padding: 50px;
    background: linear-gradient(135deg, rgba(255, 64, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 2px solid rgba(255, 64, 0, 0.3);
    border-radius: 24px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

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

.optimization_cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.optimization_cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.btn_whatsapp_optimization {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

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

.btn_whatsapp_optimization:hover::before {
    left: 100%;
}

.btn_whatsapp_optimization:hover {
    background: linear-gradient(135deg, #128C7E, #0d6b5f);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

.btn_whatsapp_optimization i {
    font-size: 20px;
}

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

@media (max-width: 768px) {
    .optimization_section_modern {
        padding: 0px 0;
		margin-top: -10px;
    }
    
    .optimization_container {
        padding: 0 15px;
    }
    
    .optimization_header h2 {
        font-size: 28px;
    }
    
    .optimization_header p {
        font-size: 16px;
    }
    
    .optimization_form_card,
    .optimization_stats {
        padding: 30px 20px;
        height: auto;
    }
    
    .optimization_form {
        gap: 20px;
    }
    
    .form_controls {
        flex-direction: column;
        gap: 10px;
    }
    
    .btn_prev,
    .btn_next,
    .btn_submit {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .optimization_metrics {
        gap: 15px;
        margin-bottom: 25px;
        padding-bottom: 25px;
    }
    
    .optimization_stats > h3 {
        font-size: 18px;
    }
    
    .score_number {
        font-size: 40px;
    }
    
    .score_circle {
        width: 150px;
        height: 150px;
        margin: 0 auto 15px;
    }
    
    .optimization_cta {
        padding: 35px 20px;
        margin-top: 40px;
    }
    
    .optimization_cta h3 {
        font-size: 24px;
    }
    
    .optimization_cta p {
        font-size: 14px;
    }
    
    .btn_whatsapp_optimization {
        padding: 15px 30px;
        font-size: 14px;
    }
    
    .optimization_info_section {
        padding: 60px 0;
    }
    
    .info_header h2 {
        font-size: 32px;
    }
    
    .info_card {
        padding: 30px 20px;
    }
    
    .info_card h3 {
        font-size: 22px;
    }
    
    .benefits_section h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }
    
    .benefit_item {
        padding: 25px 20px;
    }
    
    .info_cta {
        padding: 40px 25px;
    }
    
    .info_cta h3 {
        font-size: 24px;
    }
} (max-width: 1200px) {
    .optimization_content_grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .optimization_header h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .optimization_section_modern {
        padding: 0px 0;
    }
    
    .optimization_container {
        padding: 0 15px;
    }
    
    .optimization_header h2 {
        font-size: 28px;
    }
    
    .optimization_header p {
        font-size: 16px;
    }
    
    .optimization_form_card,
    .optimization_stats {
        padding: 30px 20px;
    }
    
    .form_controls {
        flex-direction: column;
    }
    
    .btn_prev,
    .btn_next,
    .btn_submit {
        width: 100%;
        justify-content: center;
    }
    
    .optimization_cta {
        padding: 35px 20px;
    }
    
    .optimization_cta h3 {
        font-size: 24px;
    }
    
    .optimization_cta p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .optimization_section_modern {
        padding: 0px 0;
    }
    
    .optimization_container {
        padding: 0 10px;
    }
    
    .optimization_header {
        margin-bottom: 30px;
    }
    
    .optimization_header h4 {
        font-size: 12px;
        letter-spacing: 2px;
    }
    
    .optimization_header h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .optimization_header p {
        font-size: 13px;
    }
    
    .optimization_content_grid {
        gap: 25px;
    }
    
    .optimization_form_card,
    .optimization_stats {
        padding: 20px 15px;
    }
    
    .optimization_form_card h3,
    .optimization_stats > h3 {
        font-size: 18px;
    }
    
    .form_subtitle {
        font-size: 12px;
    }
    
    .form_question {
        margin-bottom: 20px;
    }
    
    .form_question label:first-of-type {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .option_group {
        gap: 10px;
    }
    
    .option_radio {
        padding: 12px 12px;
        gap: 10px;
    }
    
    .option_radio span {
        font-size: 13px;
    }
    
    .btn_prev,
    .btn_next,
    .btn_submit {
        padding: 11px 16px;
        font-size: 12px;
        gap: 6px;
    }
    
    .progress_bar {
        height: 4px;
    }
    
    .progress_text {
        font-size: 11px;
    }
    
    .optimization_score {
        margin-bottom: 25px;
    }
    
    .score_circle {
        width: 140px;
        height: 140px;
        margin: 0 auto 15px;
    }
    
    .score_number {
        font-size: 32px;
    }
    
    .score_label {
        font-size: 11px;
    }
    
    .score_text {
        font-size: 12px;
    }
    
    .metric_item {
        gap: 6px;
    }
    
    .metric_label {
        font-size: 11px;
    }
    
    .metric_value {
        font-size: 11px;
    }
    
    .optimization_benefits h4 {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .optimization_benefits ul {
        gap: 10px;
    }
    
    .optimization_benefits li {
        font-size: 12px;
        gap: 8px;
    }
    
    .optimization_benefits li i {
        font-size: 14px;
    }
    
    .optimization_cta {
        padding: 25px 15px;
        margin-top: 30px;
    }
    
    .optimization_cta h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }
    
    .optimization_cta p {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .btn_whatsapp_optimization {
        padding: 13px 25px;
        font-size: 12px;
        gap: 8px;
    }
    
    .btn_whatsapp_optimization i {
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .optimization_section_modern {
        padding: 0px 0;
    }
    
    .optimization_container {
        padding: 0 8px;
    }
    
    .optimization_header h2 {
        font-size: 18px;
    }
    
    .optimization_header p {
        font-size: 12px;
    }
    
    .optimization_form_card h3,
    .optimization_stats > h3 {
        font-size: 16px;
    }
    
    .form_question label:first-of-type {
        font-size: 13px;
    }
    
    .option_radio {
        padding: 10px 10px;
    }
    
    .option_radio span {
        font-size: 12px;
    }
}

/* SVG Gradient para Score */
svg defs {
    display: none;
}










/* ========================================
   APENAS ADICIONE ISTO NO FINAL DO ARQUIVO
   SEÇÃO 6 CARDS COLORIDOS - NÃO MEXA NO RESTO
   ======================================== */

.benefits_colorful_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 100px;
    margin-top: 120px;
}

.benefit_colorful_card {
    position: relative;
    padding: 40px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefit_colorful_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color-1), var(--card-color-2));
}

.benefit_colorful_card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.benefit_card_icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.3s ease;
}

.benefit_card_icon svg {
    width: 40px;
    height: 40px;
    stroke: #fff;
}

.card-velocity {
    --card-color-1: #FF6400;
    --card-color-2: #FF8C00;
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
}

.card-velocity .velocity-icon {
    background: linear-gradient(135deg, #FF6400 0%, #FF8C00 100%);
    box-shadow: 0 0 30px rgba(255, 100, 0, 0.3);
}

.card-velocity:hover .velocity-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(255, 100, 0, 0.6);
}

.card-responsive {
    --card-color-1: #00C8FF;
    --card-color-2: #0090FF;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.15) 0%, rgba(0, 144, 255, 0.05) 100%);
}

.card-responsive .responsive-icon {
    background: linear-gradient(135deg, #00C8FF 0%, #0090FF 100%);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
}

.card-responsive:hover .responsive-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 50px rgba(0, 200, 255, 0.6);
}

.card-seo {
    --card-color-1: #8B00FF;
    --card-color-2: #D700FF;
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.15) 0%, rgba(215, 0, 255, 0.05) 100%);
}

.card-seo .seo-icon {
    background: linear-gradient(135deg, #8B00FF 0%, #D700FF 100%);
    box-shadow: 0 0 30px rgba(139, 0, 255, 0.3);
}

.card-seo:hover .seo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(139, 0, 255, 0.6);
}

.card-experience {
    --card-color-1: #00FF88;
    --card-color-2: #00DD88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 221, 136, 0.05) 100%);
}

.card-experience .experience-icon {
    background: linear-gradient(135deg, #00FF88 0%, #00DD88 100%);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.card-experience:hover .experience-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.6);
}

.card-conversions {
    --card-color-1: #FFD700;
    --card-color-2: #FFA500;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 165, 0, 0.05) 100%);
}

.card-conversions .conversions-icon {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
}

.card-conversions:hover .conversions-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
}

.card-security {
    --card-color-1: #FF1493;
    --card-color-2: #FF69B4;
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.15) 0%, rgba(255, 105, 180, 0.05) 100%);
}

.card-security .security-icon {
    background: linear-gradient(135deg, #FF1493 0%, #FF69B4 100%);
    box-shadow: 0 0 30px rgba(255, 20, 147, 0.3);
}

.card-security:hover .security-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 0 50px rgba(255, 20, 147, 0.6);
}

.benefit_colorful_card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    margin-top: 0;
}

.benefit_colorful_card p {
    font-size: 15px;
    color: #ddd;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .benefits_colorful_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .benefits_colorful_grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
        margin-top: 60px;
    }

    .benefit_colorful_card {
        padding: 30px;
        min-height: auto;
    }

    .benefit_card_icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .benefit_card_icon svg {
        width: 35px;
        height: 35px;
    }

    .benefit_colorful_card h3 {
        font-size: 20px;
    }

    .benefit_colorful_card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .benefits_colorful_grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .benefit_colorful_card {
        padding: 25px;
    }

    .benefit_card_icon {
        width: 55px;
        height: 55px;
    }

    .benefit_card_icon svg {
        width: 30px;
        height: 30px;
    }

    .benefit_colorful_card h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .benefit_colorful_card p {
        font-size: 13px;
        line-height: 1.5;
    }
}













/* Título dos 6 Cards Coloridos */
.benefits_colorful_title {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.benefits_colorful_title h2 {
    font-size: 42px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    background: linear-gradient(135deg, #FF4000 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits_colorful_title p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .benefits_colorful_title h2 {
        font-size: 32px;
    }

    .benefits_colorful_title p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .benefits_colorful_title h2 {
        font-size: 24px;
        margin-bottom: 10px;
    }

    .benefits_colorful_title p {
        font-size: 14px;
    }
}











/* ========================================
   SEÇÃO PROCESSO - INFOGRÁFICO CSS
   ======================================== */

.processo_section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.processo_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Header */
.processo_header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.processo_header h2 {
    font-size: 48px;
    color: white;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 0;
    background: linear-gradient(135deg, #FF4000 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processo_header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Chart Wrapper */
.processo_chart_wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.05) 0%, transparent 100%);
    border-radius: 24px;
    border: 2px solid rgba(255, 100, 0, 0.2);
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.processo_chart {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.processo_chart canvas {
    max-height: 100%;
}

/* Legenda */
.processo_legenda {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.legenda_item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.legenda_item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.legenda_color {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legenda_item span:last-child {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Etapas Grid */
.processo_etapas {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.etapa_card {
    position: relative;
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.etapa_card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--etapa-color-1), var(--etapa-color-2));
}

.etapa_card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Etapa 1 */
.etapa_1 {
    --etapa-color-1: #FF6400;
    --etapa-color-2: #FF8C00;
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.15) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-color: rgba(255, 100, 0, 0.3);
}

.etapa_1 .etapa_icon {
    background: linear-gradient(135deg, #FF6400 0%, #FF8C00 100%);
}

/* Etapa 2 */
.etapa_2 {
    --etapa-color-1: #00C8FF;
    --etapa-color-2: #0090FF;
    background: linear-gradient(135deg, rgba(0, 200, 255, 0.15) 0%, rgba(0, 144, 255, 0.05) 100%);
    border-color: rgba(0, 200, 255, 0.3);
}

.etapa_2 .etapa_icon {
    background: linear-gradient(135deg, #00C8FF 0%, #0090FF 100%);
}

/* Etapa 3 */
.etapa_3 {
    --etapa-color-1: #8B00FF;
    --etapa-color-2: #D700FF;
    background: linear-gradient(135deg, rgba(139, 0, 255, 0.15) 0%, rgba(215, 0, 255, 0.05) 100%);
    border-color: rgba(139, 0, 255, 0.3);
}

.etapa_3 .etapa_icon {
    background: linear-gradient(135deg, #8B00FF 0%, #D700FF 100%);
}

/* Etapa 4 */
.etapa_4 {
    --etapa-color-1: #00FF88;
    --etapa-color-2: #00DD88;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.15) 0%, rgba(0, 221, 136, 0.05) 100%);
    border-color: rgba(0, 255, 136, 0.3);
}

.etapa_4 .etapa_icon {
    background: linear-gradient(135deg, #00FF88 0%, #00DD88 100%);
}

/* Icones e Numero */
.etapa_icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.etapa_card:hover .etapa_icon {
    transform: scale(1.1);
}

.etapa_numero {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

.etapa_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.etapa_card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Stats */
.etapa_stats {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat_number {
    font-size: 28px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--etapa-color-1), var(--etapa-color-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat_label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* CTA */
.processo_cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 100, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border: 2px solid rgba(255, 100, 0, 0.3);
    border-radius: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.processo_cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    margin-top: 0;
    background: linear-gradient(135deg, #FF4000 0%, #FFD700 50%, #FF8C00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processo_cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    margin-top: 0;
}

.btn_processo_cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #FF4000, #FF8C00);
    border: none;
    border-radius: 12px;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 12px 35px rgba(255, 64, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.btn_processo_cta::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_processo_cta:hover::before {
    left: 100%;
}

.btn_processo_cta:hover {
    background: linear-gradient(135deg, #FF5500, #FFD700);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 18px 50px rgba(255, 64, 0, 0.7);
}

.btn_processo_cta i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn_processo_cta:hover i {
    transform: translateY(-3px);
}

/* RESPONSIVO */
@media (max-width: 1200px) {
    .processo_chart_wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .processo_etapas {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .processo_section {
        padding: 60px 0;
    }

    .processo_container {
        padding: 0 20px;
    }

    .processo_header h2 {
        font-size: 32px;
    }

    .processo_chart {
        height: 300px;
    }

    .processo_chart_wrapper {
        padding: 30px 20px;
    }

    .processo_etapas {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .etapa_card {
        padding: 30px 25px;
        min-height: auto;
    }

    .processo_cta {
        padding: 40px 25px;
    }

    .processo_cta h3 {
        font-size: 24px;
    }
}

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

    .processo_container {
        padding: 0 15px;
    }

    .processo_header h2 {
        font-size: 24px;
    }

    .processo_chart {
        height: 250px;
    }

    .processo_chart_wrapper {
        padding: 25px 15px;
    }

    .legenda_item {
        padding: 12px 15px;
    }

    .etapa_card {
        padding: 25px 15px;
    }

    .etapa_numero {
        font-size: 36px;
    }

    .etapa_card h3 {
        font-size: 18px;
    }

    .etapa_card p {
        font-size: 13px;
    }

    .stat_number {
        font-size: 24px;
    }

    .processo_cta {
        padding: 30px 15px;
    }

    .processo_cta h3 {
        font-size: 20px;
    }

    .btn_processo_cta {
        padding: 14px 28px;
        font-size: 14px;
    }
}

























/* ========================================
   ESTILOS 3D PARA O GRÁFICO - CORES MELHORADAS
   ======================================== */

/* Efeito de profundidade no gráfico */
.processo_chart {
    filter: drop-shadow(0 20px 40px rgba(255, 100, 0, 0.2));
    perspective: 1200px;
}

.processo_chart canvas {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

.processo_chart:hover canvas {
    filter: drop-shadow(0 15px 40px rgba(255, 100, 0, 0.4)) brightness(1.05);
}

/* Cores com gradientes 3D para cada segmento */
.legenda_item {
    position: relative;
    transition: all 0.3s ease;
}

.legenda_item:hover {
    transform: translateX(8px) scale(1.02);
}

/* Laranja 3D - Auditoria */
.legenda_item:nth-child(1) .legenda_color {
    background: linear-gradient(135deg, #FF6400 0%, #FF8C00 50%, #FF4000 100%);
    box-shadow: 0 8px 20px rgba(255, 100, 0, 0.5), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.legenda_item:nth-child(1):hover .legenda_color {
    box-shadow: 0 12px 30px rgba(255, 100, 0, 0.8), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

/* Azul Ciano 3D - Planejamento */
.legenda_item:nth-child(2) .legenda_color {
    background: linear-gradient(135deg, #00C8FF 0%, #00E5FF 50%, #0090FF 100%);
    box-shadow: 0 8px 20px rgba(0, 200, 255, 0.5), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.legenda_item:nth-child(2):hover .legenda_color {
    box-shadow: 0 12px 30px rgba(0, 200, 255, 0.8), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

/* Roxo 3D - Implementação */
.legenda_item:nth-child(3) .legenda_color {
    background: linear-gradient(135deg, #8B00FF 0%, #D700FF 50%, #B000FF 100%);
    box-shadow: 0 8px 20px rgba(139, 0, 255, 0.5), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.legenda_item:nth-child(3):hover .legenda_color {
    box-shadow: 0 12px 30px rgba(139, 0, 255, 0.8), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

/* Verde 3D - Testes */
.legenda_item:nth-child(4) .legenda_color {
    background: linear-gradient(135deg, #00FF88 0%, #00FFAA 50%, #00DD88 100%);
    box-shadow: 0 8px 20px rgba(0, 255, 136, 0.5), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}

.legenda_item:nth-child(4):hover .legenda_color {
    box-shadow: 0 12px 30px rgba(0, 255, 136, 0.8), 
                inset -2px -2px 5px rgba(0, 0, 0, 0.3);
}





/* ========================================
   CORREÇÃO - REDUZIR ESPAÇO ENTRE BOXES E SEÇÃO PROCESSO (FIXO)
   ======================================== */

/* Reduzir o margin-bottom dos 6 cards coloridos */
.benefits_colorful_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 10px;  /* Reduzido de 100px para 50px */
    margin-top: 120px;
}

/* Reduzir padding superior da seção processo */
.processo_section {
    padding: 60px 0;  /* Reduzido de 120px para 60px */
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Responsivo tablet - 1200px */
@media (max-width: 1200px) {
    .benefits_colorful_grid {
        margin-bottom: 45px;
        margin-top: 80px;
    }

    .processo_section {
        padding: 50px 0;
    }
}

/* Responsivo mobile - 768px */
@media (max-width: 768px) {
    .benefits_colorful_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 50px;
        margin-top: 60px;
    }

    .processo_section {
        padding: 60px 0;
    }
}

/* Responsivo pequeno - 480px */
@media (max-width: 480px) {
    .benefits_colorful_grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .processo_section {
        padding: 40px 0;
    }
}

/* Muito pequeno - 320px */
@media (max-width: 320px) {
    .benefits_colorful_grid {
        margin-bottom: 30px;
        margin-top: 30px;
    }

    .processo_section {
        padding: 35px 0;
    }
}
















/* ========================================
   CORREÇÃO - NÚMEROS AO LADO DOS ÍCONES
   ======================================== */

.etapa_card {
    position: relative;
    padding: 40px 30px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 2px solid;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Container do ícone e número juntos */
.etapa_icon_number_container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.etapa_icon {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.etapa_numero {
    font-size: 48px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.15);
    line-height: 1;
}

.etapa_card:hover .etapa_numero {
    color: rgba(255, 255, 255, 0.25);
}

.etapa_card h3 {
    font-size: 22px;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
}

.etapa_card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0 0 30px 0;
}

/* Responsivo Tablet */
@media (max-width: 768px) {
    .etapa_card {
        padding: 30px 25px;
        min-height: auto;
    }

    .etapa_icon_number_container {
        gap: 12px;
        margin-bottom: 15px;
    }

    .etapa_icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .etapa_numero {
        font-size: 40px;
    }
}

/* Responsivo Mobile */
@media (max-width: 480px) {
    .etapa_card {
        padding: 25px 15px;
    }

    .etapa_icon_number_container {
        gap: 10px;
        margin-bottom: 12px;
    }

    .etapa_icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .etapa_numero {
        font-size: 36px;
    }

    .etapa_card h3 {
        font-size: 18px;
    }

    .etapa_card p {
        font-size: 13px;
    }
}
















/* ========================================
   EFEITO DE LUZ SUAVE NO GRÁFICO
   ======================================== */

.processo_chart {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    perspective: 1200px;
}

.processo_chart canvas {
    max-height: 100%;
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
    /* Efeito de brilho suave */
    animation: suaveBrilho 4s ease-in-out infinite;
}

/* Animação de brilho suave passando */
@keyframes suaveBrilho {
    0% {
        filter: brightness(100%) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
    25% {
        filter: brightness(102%) drop-shadow(0 15px 40px rgba(255, 100, 0, 0.2));
    }
    50% {
        filter: brightness(103%) drop-shadow(0 20px 50px rgba(255, 100, 0, 0.3));
    }
    75% {
        filter: brightness(102%) drop-shadow(0 15px 40px rgba(255, 100, 0, 0.2));
    }
    100% {
        filter: brightness(100%) drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    }
}

.processo_chart:hover canvas {
    filter: brightness(105%) drop-shadow(0 20px 50px rgba(255, 100, 0, 0.4));
    animation: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .processo_chart {
        height: 300px;
    }

    .processo_chart canvas {
        animation: suaveBrilhoMobile 4s ease-in-out infinite;
    }
}

@keyframes suaveBrilhoMobile {
    0% {
        filter: brightness(100%) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    }
    50% {
        filter: brightness(102%) drop-shadow(0 12px 30px rgba(255, 100, 0, 0.2));
    }
    100% {
        filter: brightness(100%) drop-shadow(0 8px 20px rgba(0, 0, 0, 0.2));
    }
}