/* =============================================
   SEÇÃO DE MANUTENÇÃO DE PRESSURIZADORES
   Aquaflex Aquecedores - Design Original v2.0
   Prefixo: mpr-
   ============================================= */

/* =============================================
   RESET E BASE
   ============================================= */

.mpr-hero *, .mpr-services *, .mpr-diagnostic *, 
.mpr-problems *, .mpr-process *, .mpr-stats *, 
.mpr-faq *, .mpr-cta * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* =============================================
   CONTAINER PRINCIPAL
   ============================================= */

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

/* =============================================
   DIVISOR
   ============================================= */

.mpr-divider {
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2693FF, #ff5500, #2693FF);
    background-size: 200% 100%;
    animation: mpr-divider-flow 3s linear infinite;
}

@keyframes mpr-divider-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

/* =============================================
   COMPONENTES GLOBAIS
   ============================================= */

.mpr-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.1), rgba(255, 85, 0, 0.05));
    color: #ff5500;
    font-size: 12px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    border: 1px solid rgba(255, 85, 0, 0.2);
    margin-bottom: 15px;
}

.mpr-tag-light {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.mpr-title-section {
    font-size: 40px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin-bottom: 15px;
    line-height: 1.2;
    text-align: center;
}

.mpr-title-light {
    color: #ffffff;
}

.mpr-subtitle-section {
    font-size: 17px;
    color: #788094;
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.mpr-subtitle-light {
    color: rgba(255, 255, 255, 0.7);
}

/* =============================================
   HERO SECTION - MANÔMETRO
   ============================================= */

.mpr-hero {
    position: relative;
    min-height: 200px;
    background: linear-gradient(135deg, #010f34 0%, #0a1a35 50%, #122a4a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.mpr-hero .mpr-container {
    display: flex;
    flex-direction: column;
}

.mpr-hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 80% 20%, rgba(38, 147, 255, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(255, 85, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Tubulações decorativas */
.mpr-hero-pipes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.mpr-pipe {
    position: absolute;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 100%);
    border-radius: 10px;
}

.mpr-pipe-1 {
    width: 20px;
    height: 300px;
    left: 5%;
    top: -50px;
    transform: rotate(15deg);
}

.mpr-pipe-2 {
    width: 15px;
    height: 400px;
    right: 8%;
    bottom: -100px;
    transform: rotate(-10deg);
}

.mpr-pipe-3 {
    width: 200px;
    height: 15px;
    left: 0;
    top: 70%;
}

/* Fluxo de água nas tubulações */
.mpr-water-flow {
    position: absolute;
    background: linear-gradient(90deg, transparent, rgba(38, 147, 255, 0.6), transparent);
    border-radius: 10px;
    animation: mpr-water-flow 3s linear infinite;
}

.mpr-water-flow-1 {
    width: 60px;
    height: 12px;
    left: 5%;
    top: calc(70% + 1.5px);
    animation-delay: 0s;
}

.mpr-water-flow-2 {
    width: 60px;
    height: 12px;
    left: 5%;
    top: calc(70% + 1.5px);
    animation-delay: 1.5s;
}

@keyframes mpr-water-flow {
    0% { transform: translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateX(200px); opacity: 0; }
}

/* Sweep de luz */
.mpr-hero-light-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-20deg);
    animation: mpr-light-sweep 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes mpr-light-sweep {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Grid do Hero */
.mpr-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Texto do Hero */
.mpr-hero-text {
    max-width: 580px;
}

.mpr-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2693FF;
    font-size: 14px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mpr-label-dot {
    width: 8px;
    height: 8px;
    background: #ff5500;
    border-radius: 50%;
    animation: mpr-dot-pulse 2s ease-in-out infinite;
}

@keyframes mpr-dot-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
}

.mpr-hero-title {
    font-size: 48px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 20px;
}

.mpr-text-gradient {
    background: linear-gradient(135deg, #ff5500 0%, #ff8c42 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mpr-hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 30px;
    font-family: "DM Sans", sans-serif;
}

/* Botões do Hero */
.mpr-hero-cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.mpr-btn-main {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.4);
    cursor: pointer;
    border: none;
}

.mpr-btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
    color: #ffffff;
}

.mpr-btn-ghost {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mpr-btn-ghost:hover {
    color: #ffffff;
}

.mpr-btn-ghost-text {
    font-weight: 600;
}

.mpr-bounce {
    animation: mpr-bounce 2s ease-in-out infinite;
}

@keyframes mpr-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Trust badges */
.mpr-hero-trust {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.mpr-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
}

.mpr-trust-item i {
    color: #28a745;
    font-size: 14px;
}

/* Visual do Hero - Manômetro */
.mpr-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mpr-gauge-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpr-gauge {
    position: relative;
    width: 280px;
    height: 280px;
}

.mpr-gauge-body {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #1a2a4a 0%, #0a1a35 100%);
    border-radius: 50%;
    border: 8px solid #2a3a5a;
    box-shadow: 
        0 0 0 4px rgba(38, 147, 255, 0.3),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.mpr-gauge-body::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: conic-gradient(
        from 210deg,
        #28a745 0deg,
        #28a745 60deg,
        #ffc107 60deg,
        #ffc107 90deg,
        #ff5500 90deg,
        #ff5500 120deg,
        transparent 120deg
    );
    opacity: 0.3;
}

.mpr-gauge-scale {
    position: absolute;
    width: 100%;
    height: 100%;
}

.mpr-scale-mark {
    position: absolute;
    top: 15%;
    left: 50%;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    font-family: "Outfit", sans-serif;
    transform-origin: center 150px;
    transform: translateX(-50%) rotate(var(--rotation));
}

.mpr-gauge-needle {
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 4px;
    height: 90px;
    background: linear-gradient(to top, #ff5500, #ff8c42);
    transform-origin: bottom center;
    transform: translateX(-50%) rotate(-30deg);
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.5);
    animation: mpr-needle-move 4s ease-in-out infinite;
}

@keyframes mpr-needle-move {
    0%, 100% { transform: translateX(-50%) rotate(-30deg); }
    50% { transform: translateX(-50%) rotate(45deg); }
}

.mpr-gauge-center {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    background: linear-gradient(145deg, #3a4a6a, #1a2a4a);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.mpr-gauge-center::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 12px;
    background: #ff5500;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.mpr-gauge-label {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 2px;
}

.mpr-gauge-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 147, 255, 0.2) 0%, transparent 70%);
    animation: mpr-glow-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes mpr-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.mpr-gauge-status {
    margin-top: 25px;
    text-align: center;
}

.mpr-status-text {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 5px;
}

.mpr-status-value {
    display: block;
    color: #28a745;
    font-size: 22px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
}

/* =============================================
   SEÇÃO SERVIÇOS - TOGGLE
   ============================================= */

.mpr-services {
    padding: 40px 0;
    background: #f8f9fa;
}

.mpr-services .mpr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpr-services-header {
    text-align: center;
    margin-bottom: 40px;
    width: 100%;
}

/* Toggle Switch */
.mpr-service-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    background: #ffffff;
    padding: 8px;
    border-radius: 60px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    max-width: 550px;
    margin: 0 auto 50px;
    position: relative;
    width: 100%;
}

.mpr-toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    background: transparent;
    border: none;
    color: #788094;
    font-size: 15px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.mpr-toggle-btn.active {
    color: #ffffff;
}

.mpr-toggle-btn i {
    font-size: 16px;
}

.mpr-toggle-slider {
    position: absolute;
    top: 8px;
    left: 8px;
    width: calc(50% - 8px);
    height: calc(100% - 16px);
    background: linear-gradient(135deg, #ff5500 0%, #ff8c42 100%);
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1;
}

.mpr-toggle-btn[data-service="preventiva"].active ~ .mpr-toggle-slider {
    left: calc(50% + 0px);
}

/* Conteúdo dos Serviços */
.mpr-service-content {
    display: none;
    animation: mpr-fade-up 0.5s ease;
    width: 100%;
}

.mpr-service-content.active {
    display: block;
}

@keyframes mpr-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.mpr-service-showcase {
    background: linear-gradient(135deg, #010f34 0%, #0a1a35 100%);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    margin: 0 auto;
}

.mpr-service-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff5500, #2693FF, #28a745);
}

.mpr-showcase-secondary {
    background: linear-gradient(135deg, #1a2a4a 0%, #0a1a35 100%);
}

.mpr-showcase-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #ff5500 0%, #ff8c42 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
}

.mpr-showcase-icon i {
    font-size: 36px;
    color: #ffffff;
}

.mpr-icon-pulse {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid rgba(255, 85, 0, 0.4);
    border-radius: 28px;
    animation: mpr-pulse-ring 2s ease-out infinite;
}

@keyframes mpr-pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

.mpr-showcase-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 30px;
}

.mpr-service-showcase h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    font-family: "Outfit", sans-serif;
    margin-bottom: 15px;
}

.mpr-service-showcase p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "DM Sans", sans-serif;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Chips */
.mpr-features-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 35px;
}

.mpr-feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-family: "DM Sans", sans-serif;
}

.mpr-feature-chip i {
    color: #28a745;
    font-size: 12px;
}

.mpr-btn-service {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(40, 167, 69, 0.4);
    cursor: pointer;
}

.mpr-btn-service:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(40, 167, 69, 0.5);
    color: #ffffff;
}

.mpr-btn-secondary {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: none;
}

.mpr-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

/* =============================================
   SEÇÃO DIAGNÓSTICO
   ============================================= */

.mpr-diagnostic {
    padding: 40px 0;
    background: linear-gradient(180deg, #f0f2f5 0%, #ffffff 100%);
}

.mpr-diagnostic .mpr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpr-diagnostic-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.mpr-quiz-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

/* Progress Steps */
.mpr-quiz-progress {
    padding: 30px 40px 20px;
    background: linear-gradient(135deg, #010f34 0%, #0a1a35 100%);
}

.mpr-progress-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

.mpr-step {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    transition: all 0.3s ease;
    position: relative;
}

.mpr-step.active {
    background: linear-gradient(135deg, #ff5500 0%, #ff8c42 100%);
    border-color: #ff5500;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 85, 0, 0.4);
}

.mpr-step.completed {
    background: #28a745;
    border-color: #28a745;
    color: #ffffff;
}

.mpr-progress-bar-bg {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.mpr-progress-bar-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #ff5500, #ff8c42);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Quiz Body */
.mpr-quiz-body {
    padding: 40px;
}

.mpr-question {
    display: none;
}

.mpr-question.active {
    display: block;
    animation: mpr-fade-up 0.4s ease;
}

.mpr-question-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.mpr-question-number {
    font-size: 48px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    color: rgba(255, 85, 0, 0.15);
    line-height: 1;
}

.mpr-question-header h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin: 0;
}

/* Options */
.mpr-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.mpr-option-card {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mpr-option-card:hover {
    border-color: #ff5500;
    background: rgba(255, 85, 0, 0.03);
}

.mpr-option-card.selected {
    border-color: #ff5500;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.08) 0%, rgba(255, 85, 0, 0.03) 100%);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.15);
}

.mpr-option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.mpr-option-content i {
    font-size: 24px;
    color: #788094;
    transition: all 0.3s ease;
}

.mpr-option-card:hover .mpr-option-content i,
.mpr-option-card.selected .mpr-option-content i {
    color: #ff5500;
}

.mpr-option-content span {
    font-size: 14px;
    font-weight: 600;
    color: #010f34;
    font-family: "DM Sans", sans-serif;
}

/* Quiz Result */
.mpr-quiz-result {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.mpr-quiz-result.active {
    display: block;
    animation: mpr-fade-up 0.5s ease;
}

.mpr-result-visual {
    margin-bottom: 25px;
}

.mpr-result-gauge {
    width: 150px;
    height: 80px;
    margin: 0 auto;
    position: relative;
}

.mpr-result-gauge svg {
    width: 100%;
    height: 100%;
    transform: rotate(180deg);
}

.mpr-gauge-bg {
    fill: none;
    stroke: #e9ecef;
    stroke-width: 8;
    stroke-linecap: round;
}

.mpr-gauge-fill {
    fill: none;
    stroke: url(#mpr-gradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 170;
    stroke-dashoffset: 170;
    transition: stroke-dashoffset 1s ease;
}

.mpr-result-indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ff5500;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 2px 10px rgba(255, 85, 0, 0.4);
}

.mpr-result-badge {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff5500 0%, #ff8c42 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    border-radius: 30px;
    margin-bottom: 20px;
}

.mpr-result-badge span {
    font-weight: 800;
}

.mpr-result-title {
    font-size: 26px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin-bottom: 10px;
}

.mpr-result-message {
    font-size: 15px;
    color: #788094;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 30px;
}

.mpr-result-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.mpr-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    border: 2px solid #ff5500;
    color: #ff5500;
    font-size: 14px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.mpr-btn-outline:hover {
    background: #ff5500;
    color: #ffffff;
}

/* Quiz Navigation */
.mpr-quiz-navigation {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px 30px;
    border-top: 1px solid #e9ecef;
}

.mpr-nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8f9fa;
    border: none;
    color: #788094;
    font-size: 14px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mpr-nav-btn:hover:not(:disabled) {
    background: #e9ecef;
    color: #010f34;
}

.mpr-nav-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.mpr-nav-btn.mpr-next {
    background: linear-gradient(135deg, #ff5500 0%, #ff8c42 100%);
    color: #ffffff;
}

.mpr-nav-btn.mpr-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 85, 0, 0.3);
}

/* =============================================
   SEÇÃO PROBLEMAS - GRID FIXO
   ============================================= */

.mpr-problems {
    padding: 80px 0;
    background: linear-gradient(135deg, #010f34 0%, #0a1a35 100%);
}

.mpr-problems .mpr-container {
    display: flex;
    flex-direction: column;
}

.mpr-problems-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.mpr-problems-text {
    max-width: 600px;
    margin: 0 auto;
}

/* Grid Fixo */
.mpr-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.mpr-problem-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpr-problem-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 85, 0, 0.3);
    transform: translateY(-5px);
}

.mpr-problem-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.2) 0%, rgba(255, 85, 0, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.mpr-problem-icon i {
    font-size: 28px;
    color: #ff5500;
}

.mpr-problem-card h4 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    margin-bottom: 10px;
}

.mpr-problem-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-family: "DM Sans", sans-serif;
    line-height: 1.6;
    margin: 0;
}

/* Remove os controles do carrossel */
.mpr-carousel-nav,
.mpr-carousel-dots {
    display: none;
}


/* =============================================
   SEÇÃO PROCESSO - FLUXO
   ============================================= */

.mpr-process {
    padding: 40px 0;
    background: #ffffff;
}

.mpr-process .mpr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpr-process-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.mpr-flow {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.mpr-flow-line {
    position: absolute;
    top: 45px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, #ff5500, #2693FF, #28a745);
    z-index: 1;
}

.mpr-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.mpr-flow-icon {
    width: 90px;
    height: 90px;
    background: #ffffff;
    border: 3px solid #ff5500;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.2);
    transition: all 0.3s ease;
}

.mpr-flow-step:hover .mpr-flow-icon {
    background: linear-gradient(135deg, #ff5500 0%, #ff8c42 100%);
    transform: scale(1.1);
}

.mpr-flow-icon i {
    font-size: 32px;
    color: #ff5500;
    transition: all 0.3s ease;
}

.mpr-flow-step:hover .mpr-flow-icon i {
    color: #ffffff;
}

.mpr-flow-content {
    text-align: center;
}

.mpr-flow-number {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #ff5500;
    font-family: "Outfit", sans-serif;
    margin-bottom: 5px;
}

.mpr-flow-content h4 {
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin-bottom: 5px;
}

.mpr-flow-content p {
    font-size: 13px;
    color: #788094;
    font-family: "DM Sans", sans-serif;
    max-width: 120px;
    margin: 0 auto;
}

/* =============================================
   SEÇÃO ESTATÍSTICAS - VERSÃO SIMPLIFICADA
   ============================================= */

.mpr-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #010f34 0%, #0a1a35 100%);
    position: relative;
    overflow: hidden;
}

.mpr-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
}

/* Cards Estatísticas */
.mpr-stat-card {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.mpr-stat-card:hover::before {
    left: 100%;
}

.mpr-stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 85, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 85, 0, 0.2);
}

/* Círculo de Progresso */
.mpr-stat-circle {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mpr-stat-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

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

.mpr-circle-progress {
    fill: none;
    stroke: #ff5500;
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339;
    stroke-dashoffset: 339;
    transition: stroke-dashoffset 2s ease;
}

.mpr-stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.mpr-counter {
    font-size: 32px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    display: block;
    line-height: 1;
}

.mpr-counter-small {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-family: "Outfit", sans-serif;
    display: block;
    margin-top: 5px;
}

.mpr-stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    font-family: "DM Sans", sans-serif;
    font-weight: 600;
}

/* Efeitos de brilho */
.mpr-stat-card:hover .mpr-circle-progress {
    filter: drop-shadow(0 0 10px rgba(255, 85, 0, 0.5));
}

/* Responsivo */
@media (max-width: 991px) {
    .mpr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mpr-stat-circle {
        width: 100px;
        height: 100px;
    }
    
    .mpr-counter {
        font-size: 28px;
    }
}

@media (max-width: 575px) {
    .mpr-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .mpr-stat-card {
        padding: 30px 20px;
    }
    
    .mpr-stat-circle {
        width: 90px;
        height: 90px;
    }
    
    .mpr-counter {
        font-size: 24px;
    }
}

/* =============================================
   SEÇÃO FAQ
   ============================================= */

.mpr-faq {
    padding: 40px 0;
    background: #f8f9fa;
}

.mpr-faq .mpr-container {
    display: flex;
    flex-direction: column;
}

.mpr-faq-layout {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
    width: 100%;
}

.mpr-faq-intro {
    position: sticky;
    top: 120px;
}

.mpr-faq-contact {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.mpr-faq-contact p {
    font-size: 14px;
    color: #788094;
    margin-bottom: 15px;
    font-family: "DM Sans", sans-serif;
}

.mpr-faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mpr-faq-item {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mpr-faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mpr-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.mpr-faq-trigger span {
    font-size: 16px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    flex: 1;
    padding-right: 15px;
}

.mpr-faq-trigger i {
    width: 30px;
    height: 30px;
    background: rgba(255, 85, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5500;
    font-size: 12px;
    transition: all 0.3s ease;
}

.mpr-faq-item.active .mpr-faq-trigger i {
    background: #ff5500;
    color: #ffffff;
    transform: rotate(45deg);
}

.mpr-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

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

.mpr-faq-content p {
    padding: 0 25px 22px;
    font-size: 15px;
    color: #788094;
    line-height: 1.7;
    font-family: "DM Sans", sans-serif;
    margin: 0;
}

/* =============================================
   SEÇÃO CTA
   ============================================= */

.mpr-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #010f34 0%, #0a1a35 100%);
    position: relative;
    overflow: hidden;
}

.mpr-cta .mpr-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mpr-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.mpr-cta-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='rgba(255,85,0,0.1)' d='M0,96L48,112C96,128,192,160,288,186.7C384,213,480,235,576,213.3C672,192,768,128,864,128C960,128,1056,192,1152,208C1248,224,1344,192,1392,176L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
}

.mpr-cta-box {
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.1) 0%, rgba(255, 85, 0, 0.05) 100%);
    border: 1px solid rgba(255, 85, 0, 0.2);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.mpr-cta-content h2 {
    font-size: 36px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    margin-bottom: 15px;
}

.mpr-cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    font-family: "DM Sans", sans-serif;
    margin-bottom: 30px;
}

.mpr-cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.mpr-cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 35px rgba(40, 167, 69, 0.4);
    cursor: pointer;
}

.mpr-cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(40, 167, 69, 0.5);
    color: #ffffff;
}

.mpr-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mpr-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.mpr-cta-contacts {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.mpr-cta-contacts a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    cursor: pointer;
}

.mpr-cta-contacts a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.mpr-cta-contacts a i {
    color: #28a745;
}

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

@media (max-width: 1200px) {
    .mpr-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mpr-hero-text {
        max-width: 100%;
    }
    
    .mpr-hero-cta-group {
        justify-content: center;
    }
    
    .mpr-hero-trust {
        justify-content: center;
    }
    
    .mpr-hero-visual {
        margin-top: 50px;
    }
    
    .mpr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mpr-faq-layout {
        grid-template-columns: 1fr;
    }
    
    .mpr-faq-intro {
        position: static;
        text-align: center;
    }
}

@media (max-width: 991px) {
    .mpr-hero {
        min-height: auto;
        padding: 30px 0;
    }
    
    .mpr-hero-title {
        font-size: 38px;
    }
    
    .mpr-title-section {
        font-size: 32px;
    }
    
    .mpr-flow {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .mpr-flow-line {
        display: none;
    }
    
    .mpr-flow-step {
        flex: 0 0 calc(33.333% - 20px);
    }
}

@media (max-width: 767px) {
    .mpr-hero-title {
        font-size: 32px;
    }
    
    .mpr-hero-description {
        font-size: 16px;
    }
    
    .mpr-gauge {
        width: 220px;
        height: 220px;
    }
    
    .mpr-service-toggle {
        flex-direction: column;
        border-radius: 20px;
    }
    
    .mpr-toggle-slider {
        width: calc(100% - 16px);
        height: calc(50% - 8px);
    }
    
    .mpr-toggle-btn[data-service="preventiva"].active ~ .mpr-toggle-slider {
        left: 8px;
        top: calc(50% + 0px);
    }
    
    .mpr-service-showcase {
        padding: 35px 25px;
    }
    
    .mpr-options {
        grid-template-columns: 1fr;
    }
    
    .mpr-quiz-body {
        padding: 30px 25px;
    }
    
    .mpr-quiz-navigation {
        padding: 20px 25px 30px;
    }
    
    .mpr-problems-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .mpr-flow-step {
        flex: 0 0 calc(50% - 15px);
    }
    
    .mpr-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .mpr-cta-box {
        padding: 40px 25px;
    }
    
    .mpr-cta-content h2 {
        font-size: 28px;
    }
    
    .mpr-cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 575px) {
    .mpr-hero-title {
        font-size: 28px;
    }
    
    .mpr-title-section {
        font-size: 26px;
    }
    
    .mpr-hero-cta-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mpr-hero-trust {
        flex-direction: column;
        gap: 10px;
    }
    
    .mpr-progress-steps {
        gap: 20px;
    }
    
    .mpr-step {
        width: 35px;
        height: 35px;
        font-size: 12px;
    }
    
    .mpr-question-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .mpr-question-header h3 {
        font-size: 18px;
    }
    
    .mpr-flow-step {
        flex: 0 0 100%;
    }
    
    .mpr-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .mpr-circular-progress {
        width: 100px;
        height: 100px;
    }
    
    .mpr-counter {
        font-size: 26px;
    }
    
    .mpr-cta-contacts {
        flex-direction: column;
    }
}



















@media (max-width: 991px) {
    .mpr-problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 575px) {
    .mpr-problems-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}