/* =============================================
   SEÇÃO DE MANUTENÇÃO DE AQUECEDOR DE PISCINA
   Aquaflex Aquecedores - CSS Ultra Sofisticado
   Prefixo: map-
   ============================================= */

/* =============================================
   VARIÁVEIS E RESET
   ============================================= */

.map-hero *,
.map-hero *::before,
.map-hero *::after,
.map-maintenance-types *,
.map-diagnostic *,
.map-problems *,
.map-process *,
.map-stats *,
.map-faq *,
.map-cta * {
    box-sizing: border-box;
}

/* =============================================
   HERO SECTION - TEMA ÁGUA/PISCINA
   ============================================= */

.map-hero {
    position: relative;
    padding: 10px 0;
    background: linear-gradient(135deg, #010f34 0%, #0a1f3d 30%, #1a4a6e 60%, #2693FF 100%);
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Efeito de água animada no fundo */
.map-hero-water {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 80%, rgba(38, 147, 255, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0, 191, 255, 0.2) 0%, transparent 40%);
    animation: map-water-flow 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes map-water-flow {
    0%, 100% { 
        transform: translateX(0) translateY(0);
        opacity: 0.8;
    }
    50% { 
        transform: translateX(-20px) translateY(10px);
        opacity: 1;
    }
}

/* Ondas animadas */
.map-hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    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,255,255,0.05)' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,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") repeat-x;
    animation: map-waves-move 15s linear infinite;
    pointer-events: none;
}

@keyframes map-waves-move {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Bolhas flutuantes */
.map-hero-bubbles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.map-hero-bubbles span {
    position: absolute;
    bottom: -50px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(38, 147, 255, 0.3));
    border-radius: 50%;
    animation: map-bubble-rise 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.map-hero-bubbles span:nth-child(1) { left: 10%; width: 15px; height: 15px; animation-delay: 0s; animation-duration: 7s; }
.map-hero-bubbles span:nth-child(2) { left: 20%; width: 25px; height: 25px; animation-delay: 1s; animation-duration: 9s; }
.map-hero-bubbles span:nth-child(3) { left: 35%; width: 18px; height: 18px; animation-delay: 2s; animation-duration: 6s; }
.map-hero-bubbles span:nth-child(4) { left: 50%; width: 22px; height: 22px; animation-delay: 0.5s; animation-duration: 8s; }
.map-hero-bubbles span:nth-child(5) { left: 65%; width: 12px; height: 12px; animation-delay: 3s; animation-duration: 10s; }
.map-hero-bubbles span:nth-child(6) { left: 75%; width: 28px; height: 28px; animation-delay: 1.5s; animation-duration: 7s; }
.map-hero-bubbles span:nth-child(7) { left: 85%; width: 16px; height: 16px; animation-delay: 2.5s; animation-duration: 9s; }
.map-hero-bubbles span:nth-child(8) { left: 5%; width: 20px; height: 20px; animation-delay: 4s; animation-duration: 8s; }
.map-hero-bubbles span:nth-child(9) { left: 45%; width: 14px; height: 14px; animation-delay: 0.8s; animation-duration: 11s; }
.map-hero-bubbles span:nth-child(10) { left: 90%; width: 24px; height: 24px; animation-delay: 3.5s; animation-duration: 6s; }

@keyframes map-bubble-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-700px) scale(0.5);
        opacity: 0;
    }
}

/* Linhas de calor */
.map-hero-heat-lines {
    position: absolute;
    top: 0;
    right: 10%;
    width: 300px;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.map-hero-heat-lines::before,
.map-hero-heat-lines::after {
    content: '';
    position: absolute;
    width: 3px;
    height: 100px;
    background: linear-gradient(to top, transparent, rgba(255, 85, 0, 0.6), transparent);
    animation: map-heat-rise 3s ease-in-out infinite;
    border-radius: 10px;
}

.map-hero-heat-lines::before {
    left: 30%;
    animation-delay: 0s;
}

.map-hero-heat-lines::after {
    left: 60%;
    animation-delay: 1s;
}

@keyframes map-heat-rise {
    0%, 100% {
        transform: translateY(400px) scaleY(0.5);
        opacity: 0;
    }
    50% {
        transform: translateY(100px) scaleY(1);
        opacity: 1;
    }
}

/* Grid futurista */
.map-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(38, 147, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(38, 147, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: map-grid-move 25s linear infinite;
    pointer-events: none;
}

@keyframes map-grid-move {
    from { transform: translateY(0); }
    to { transform: translateY(60px); }
}

/* Overlay gradiente */
.map-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 85, 0, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, transparent 50%, rgba(0, 0, 0, 0.3) 100%);
    pointer-events: none;
}

/* Feixe de luz passando */
.map-hero-light-beam {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 100%
    );
    transform: skewX(-20deg);
    animation: map-light-beam 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes map-light-beam {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

/* Conteúdo do Hero */
.map-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.map-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(38, 147, 255, 0.9) 0%, rgba(0, 119, 204, 0.9) 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(38, 147, 255, 0.4);
    animation: map-float 3s ease-in-out infinite;
}

.map-hero-badge i {
    font-size: 16px;
    animation: map-icon-wave 2s ease-in-out infinite;
}

@keyframes map-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes map-icon-wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-10deg); }
    75% { transform: rotate(10deg); }
}

.map-hero-title {
    font-size: 54px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.15;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

.map-hero-title span {
    background: linear-gradient(135deg, #2693FF 0%, #00d4ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.8;
    font-family: "DM Sans", sans-serif;
    max-width: 600px;
}

.map-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* =============================================
   BOTÕES - ESTILO PREMIUM
   ============================================= */

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    font-size: 16px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: none;
}

.map-btn::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;
}

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

.map-btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    color: #ffffff;
    box-shadow: 0 10px 35px rgba(40, 167, 69, 0.4);
    cursor: pointer;
}

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

.map-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.map-btn-secondary:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

.map-btn-outline {
    background: transparent;
    color: #ff5500;
    border: 2px solid #ff5500;
    cursor: pointer;
}

.map-btn-outline:hover {
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.3);
}

.map-btn-white {
    background: #ffffff;
    color: #28a745;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.map-btn-white:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.3);
    color: #1e7e34;
}

.map-btn-white-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    cursor: pointer;
}

.map-btn-white-outline:hover {
    background: #ffffff;
    color: #2693FF;
    transform: translateY(-5px);
}

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

.map-btn:hover i {
    transform: scale(1.1);
}

/* =============================================
   SEÇÃO TIPOS DE MANUTENÇÃO
   ============================================= */

.map-maintenance-types {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
    position: relative;
    overflow: hidden;
}

.map-floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.map-floating-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #2693FF 0%, #00d4ff 100%);
    border-radius: 50%;
    opacity: 0.3;
    animation: map-particle-float 20s linear infinite;
}

.map-floating-particles span:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; }
.map-floating-particles span:nth-child(2) { top: 30%; left: 80%; animation-delay: 4s; }
.map-floating-particles span:nth-child(3) { top: 60%; left: 20%; animation-delay: 8s; }
.map-floating-particles span:nth-child(4) { top: 80%; left: 70%; animation-delay: 12s; }
.map-floating-particles span:nth-child(5) { top: 50%; left: 50%; animation-delay: 16s; }

@keyframes map-particle-float {
    0%, 100% {
        transform: translateY(0) translateX(0);
    }
    25% {
        transform: translateY(-30px) translateX(20px);
    }
    50% {
        transform: translateY(-10px) translateX(-20px);
    }
    75% {
        transform: translateY(-40px) translateX(10px);
    }
}

/* Section Header */
.map-section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.map-section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.map-section-title {
    font-size: 46px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin-bottom: 20px;
    line-height: 1.2;
}

.map-section-subtitle {
    font-size: 18px;
    color: #788094;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    font-family: "DM Sans", sans-serif;
}

/* Types Grid */
.map-types-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.map-type-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.map-type-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2693FF, #00d4ff);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.map-type-card:hover::before {
    opacity: 1;
}

/* Card Featured (Corretiva) */
.map-type-featured {
    background: linear-gradient(135deg, #010f34 0%, #1a2f5a 100%);
    color: #ffffff;
}

.map-type-featured::before {
    background: linear-gradient(90deg, #ff5500, #ffcc00);
    opacity: 1;
    height: 5px;
}

.map-type-featured .map-type-title {
    color: #ffffff;
}

.map-type-featured .map-type-description {
    color: rgba(255, 255, 255, 0.85);
}

.map-type-featured .map-type-features li {
    color: rgba(255, 255, 255, 0.9);
}

.map-type-featured .map-type-features li i {
    color: #28a745;
}

.map-type-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(38, 147, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
    animation: map-glow-pulse 4s ease-in-out infinite;
}

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

.map-type-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2693FF 0%, #00d4ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.map-type-icon i {
    font-size: 36px;
    color: #ffffff;
}

.map-type-icon-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(38, 147, 255, 0.3);
    border-radius: 20px;
    animation: map-ring-pulse 2s ease-in-out infinite;
}

@keyframes map-ring-pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0; }
}

.map-type-tag {
    position: absolute;
    top: 30px;
    right: 30px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
    animation: map-tag-glow 2s ease-in-out infinite;
}

@keyframes map-tag-glow {
    0%, 100% { box-shadow: 0 5px 20px rgba(255, 85, 0, 0.4); }
    50% { box-shadow: 0 5px 30px rgba(255, 85, 0, 0.6); }
}

.map-type-title {
    font-size: 28px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin-bottom: 15px;
}

.map-type-description {
    font-size: 16px;
    color: #788094;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: "DM Sans", sans-serif;
}

.map-type-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.map-type-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #010f34;
    font-family: "DM Sans", sans-serif;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.map-type-features li:last-child {
    border-bottom: none;
}

.map-type-features li i {
    color: #28a745;
    font-size: 14px;
}

.map-type-card .map-btn {
    width: 100%;
    justify-content: center;
}

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

.map-diagnostic {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

/* Quiz Container */
.map-quiz-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.map-quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #2693FF, #00d4ff, #28a745);
}

/* Progress Bar */
.map-quiz-progress {
    margin-bottom: 40px;
}

.map-progress-bar {
    height: 8px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.map-progress-fill {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, #2693FF 0%, #00d4ff 100%);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.map-progress-glow {
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    animation: map-progress-shine 2s ease-in-out infinite;
}

@keyframes map-progress-shine {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

.map-progress-text {
    font-size: 14px;
    color: #788094;
    font-family: "DM Sans", sans-serif;
    text-align: center;
}

.map-progress-current {
    color: #2693FF;
    font-weight: 700;
}

/* Quiz Questions */
.map-quiz-questions {
    min-height: 350px;
}

.map-quiz-question {
    display: none;
    animation: map-fade-in 0.5s ease;
}

.map-quiz-question.active {
    display: block;
}

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

.map-question-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2693FF 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.map-question-icon i {
    font-size: 30px;
    color: #ffffff;
}

.map-question-title {
    font-size: 24px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    text-align: center;
    margin-bottom: 35px;
}

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

.map-option {
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.map-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(38, 147, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.map-option:hover {
    border-color: #2693FF;
    background: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(38, 147, 255, 0.15);
}

.map-option:hover::before {
    left: 100%;
}

.map-option.selected {
    background: linear-gradient(135deg, #2693FF 0%, #00d4ff 100%);
    border-color: #2693FF;
    color: #ffffff;
}

.map-option.selected .map-option-icon {
    background: rgba(255, 255, 255, 0.2);
}

.map-option.selected .map-option-icon i {
    color: #ffffff;
}

.map-option-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.map-option-icon i {
    font-size: 22px;
    color: #2693FF;
    transition: all 0.3s ease;
}

.map-option span {
    font-size: 15px;
    font-weight: 600;
    font-family: "DM Sans", sans-serif;
}

/* Quiz Result */
.map-quiz-result {
    display: none;
    text-align: center;
    padding: 40px 0;
    animation: map-result-pop 0.5s ease;
}

.map-quiz-result.active {
    display: block;
}

@keyframes map-result-pop {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.map-result-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: map-result-bounce 1s ease infinite;
}

@keyframes map-result-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.map-result-icon i {
    font-size: 45px;
    color: #ffffff;
}

.map-result-score {
    display: inline-block;
    padding: 10px 25px;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.map-result-title {
    font-size: 28px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin-bottom: 15px;
}

.map-result-text {
    font-size: 17px;
    color: #788094;
    margin-bottom: 35px;
    font-family: "DM Sans", sans-serif;
}

.map-result-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.map-quiz-prev {
    visibility: hidden;
}

/* =============================================
   SEÇÃO DE PROBLEMAS COMUNS
   ============================================= */

.map-problems {
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.map-problems-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #010f34 0%, #1a2f5a 50%, #2693FF 100%);
    z-index: 0;
}

.map-problems-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-section-header-light .map-section-badge {
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
}

.map-section-header-light .map-section-title {
    color: #ffffff;
}

.map-section-header-light .map-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.map-problems-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.map-problem-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.map-problem-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: none;
    pointer-events: none;
}

.map-problem-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.map-problem-card:hover::before {
    animation: map-light-sweep 0.8s ease forwards;
}

@keyframes map-light-sweep {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}

.map-problem-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

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

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

.map-problem-title {
    font-size: 20px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    margin-bottom: 12px;
}

.map-problem-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 0;
}

/* =============================================
   SEÇÃO PROCESSO / TIMELINE
   ============================================= */

.map-process {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.map-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.map-timeline-line {
    position: absolute;
    left: 45px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2693FF 0%, #00d4ff 50%, #28a745 100%);
    border-radius: 10px;
}

.map-timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.map-timeline-item:last-child {
    margin-bottom: 0;
}

.map-timeline-number {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: linear-gradient(135deg, #2693FF 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(38, 147, 255, 0.3);
}

.map-timeline-number span {
    font-size: 32px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
}

.map-timeline-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid #2693FF;
    border-radius: 50%;
    animation: map-timeline-pulse 2s ease-in-out infinite;
}

@keyframes map-timeline-pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.3); opacity: 0; }
}

.map-timeline-content {
    flex: 1;
    background: #ffffff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

.map-timeline-content::before {
    content: '';
    position: absolute;
    left: -10px;
    top: 30px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: -5px 5px 10px rgba(0, 0, 0, 0.03);
}

.map-timeline-content:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.map-timeline-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(38, 147, 255, 0.1) 0%, rgba(0, 212, 255, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.map-timeline-icon i {
    font-size: 22px;
    color: #2693FF;
}

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

.map-timeline-text {
    font-size: 16px;
    color: #788094;
    line-height: 1.6;
    font-family: "DM Sans", sans-serif;
    margin-bottom: 0;
}

/* =============================================
   SEÇÃO DE ESTATÍSTICAS
   ============================================= */

.map-stats {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.map-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
}

.map-stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 20.5V18H0v-2h20v-2H0v-2h20v-2H0V8h20V6H0V4h20V2H0V0h22v20h2V0h2v20h2V0h2v20h2V0h2v20h2V0h2v22H20v-1.5zM0 20h2v20H0V20zm4 0h2v20H4V20zm4 0h2v20H8V20zm4 0h2v20h-2V20zm4 0h2v20h-2V20zm4 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2zm0 4h20v2H20v-2z' fill='%23fff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.map-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.map-stat-item {
    text-align: center;
    color: #ffffff;
}

.map-stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.map-stat-icon i {
    font-size: 28px;
    color: #ffffff;
}

.map-stat-number {
    font-size: 52px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    display: inline;
    line-height: 1;
}

.map-stat-suffix {
    font-size: 32px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    display: inline;
}

.map-stat-label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    font-family: "DM Sans", sans-serif;
    margin-top: 10px;
    opacity: 0.9;
}

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

.map-faq {
    padding: 40px 0;
    background: #ffffff;
}

.map-faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.map-faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.map-faq-item:hover {
    border-color: #e9ecef;
}

.map-faq-item.active {
    background: #ffffff;
    border-color: #2693FF;
    box-shadow: 0 10px 40px rgba(38, 147, 255, 0.1);
}

.map-faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px 30px;
    cursor: pointer;
}

.map-faq-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #2693FF 0%, #00d4ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.map-faq-icon i {
    font-size: 20px;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.map-faq-item.active .map-faq-icon {
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
}

.map-faq-item.active .map-faq-icon i {
    transform: rotate(45deg);
}

.map-faq-question h3 {
    font-size: 18px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin: 0;
    line-height: 1.4;
}

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

.map-faq-item.active .map-faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 100px;
}

.map-faq-answer p {
    font-size: 16px;
    color: #788094;
    line-height: 1.7;
    font-family: "DM Sans", sans-serif;
    margin: 0;
}

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

.map-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #010f34 0%, #1a2f5a 50%, #2693FF 100%);
}

.map-cta-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    pointer-events: none;
}

.map-cta-waves svg {
    width: 100%;
    height: 100%;
}

.map-cta-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    animation: map-cta-glow 5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes map-cta-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.map-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.map-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.map-cta-badge i {
    font-size: 16px;
}

.map-cta-title {
    font-size: 44px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.map-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
    font-family: "DM Sans", sans-serif;
}

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

.map-cta-phones {
    margin-top: 40px;
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.map-phone-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-family: "DM Sans", sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    cursor: pointer;
}

.map-phone-item:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-3px);
}

.map-phone-item i {
    font-size: 18px;
    color: #28a745;
}

/* =============================================
   RESPONSIVO - TABLET
   ============================================= */

@media (max-width: 1200px) {
    .map-types-grid {
        grid-template-columns: 1fr;
    }
    
    .map-problems-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .map-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 991px) {
    .map-hero {
        padding: 30px 0;
        min-height: auto;
    }
    
    .map-hero-title {
        font-size: 40px;
    }
    
    .map-hero-heat-lines {
        display: none;
    }
    
    .map-section-title {
        font-size: 36px;
    }
    
    .map-quiz-container {
        padding: 35px;
    }
    
    .map-options-grid {
        grid-template-columns: 1fr;
    }
    
    .map-timeline-line {
        left: 35px;
    }
    
    .map-timeline-number {
        width: 70px;
        height: 70px;
        min-width: 70px;
    }
    
    .map-timeline-number span {
        font-size: 26px;
    }
    
    .map-timeline-content {
        padding: 25px;
    }
}

/* =============================================
   RESPONSIVO - MOBILE
   ============================================= */

@media (max-width: 767px) {
    .map-hero {
        padding: 30px 0;
    }
    
    .map-hero-title {
        font-size: 32px;
    }
    
    .map-hero-subtitle {
        font-size: 16px;
    }
    
    .map-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .map-hero-bubbles span {
        display: none;
    }
    
    .map-hero-bubbles span:nth-child(1),
    .map-hero-bubbles span:nth-child(2),
    .map-hero-bubbles span:nth-child(3) {
        display: block;
    }
    
    .map-btn {
        width: 100%;
        justify-content: center;
    }
    
    .map-section-title {
        font-size: 30px;
    }
    
    .map-section-subtitle {
        font-size: 16px;
    }
    
    .map-type-card {
        padding: 30px 25px;
    }
    
    .map-type-tag {
        position: relative;
        top: 0;
        right: 0;
        display: inline-block;
        margin-bottom: 20px;
    }
    
    .map-quiz-container {
        padding: 25px;
        border-radius: 20px;
    }
    
    .map-question-title {
        font-size: 20px;
    }
    
    .map-problems-grid {
        grid-template-columns: 1fr;
    }
    
    .map-timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .map-timeline-line {
        display: none;
    }
    
    .map-timeline-content::before {
        display: none;
    }
    
    .map-timeline-content:hover {
        transform: none;
    }
    
    .map-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
    
    .map-stat-number {
        font-size: 38px;
    }
    
    .map-stat-suffix {
        font-size: 24px;
    }
    
    .map-faq-question {
        padding: 20px;
        gap: 15px;
    }
    
    .map-faq-icon {
        width: 45px;
        height: 45px;
        min-width: 45px;
    }
    
    .map-faq-icon i {
        font-size: 18px;
    }
    
    .map-faq-question h3 {
        font-size: 16px;
    }
    
    .map-faq-item.active .map-faq-answer {
        padding: 0 20px 20px 80px;
    }
    
    .map-cta-title {
        font-size: 30px;
    }
    
    .map-cta-buttons {
        flex-direction: column;
    }
    
    .map-cta-phones {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .map-hero-title {
        font-size: 28px;
    }
    
    .map-section-title {
        font-size: 26px;
    }
    
    .map-quiz-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .map-quiz-nav .map-btn {
        width: 100%;
    }
    
    .map-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .map-result-actions {
        flex-direction: column;
    }
    
    .map-cta-title {
        font-size: 26px;
    }
    
    .map-faq-item.active .map-faq-answer {
        padding: 0 20px 20px 20px;
    }
}

/* =============================================
   EFEITOS ESPECIAIS ADICIONAIS
   ============================================= */

/* Animação de shake para erro */
@keyframes map-shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Glow nos botões primários */
.map-btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
}

.map-btn-primary:active::after {
    width: 300px;
    height: 300px;
    opacity: 0;
}

/* Efeito ripple nos cards */
.map-type-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.03) 45%,
        rgba(255, 255, 255, 0.08) 50%,
        rgba(255, 255, 255, 0.03) 55%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    pointer-events: none;
}

.map-type-card:hover::after {
    animation: map-card-shine 0.8s ease forwards;
}

@keyframes map-card-shine {
    from { transform: translateX(-100%) rotate(45deg); }
    to { transform: translateX(100%) rotate(45deg); }
}