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

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

.mas-section *,
.mas-section *::before,
.mas-section *::after {
    box-sizing: border-box;
}

/* =============================================
   HERO SECTION - FUTURISTA COM SOL ANIMADO
   ============================================= */

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

/* Sol animado no background */
.mas-hero-sun {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.8) 0%, rgba(255, 119, 0, 0.4) 40%, transparent 70%);
    border-radius: 50%;
    animation: mas-sun-pulse 4s ease-in-out infinite;
    pointer-events: none;
}

.mas-hero-sun::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.9) 0%, rgba(255, 85, 0, 0.6) 50%, transparent 70%);
    border-radius: 50%;
    animation: mas-sun-core 3s ease-in-out infinite;
}

/* Raios solares */
.mas-hero-rays {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    pointer-events: none;
}

.mas-hero-rays::before,
.mas-hero-rays::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: conic-gradient(from 0deg, transparent, rgba(255, 85, 0, 0.1), transparent, rgba(255, 85, 0, 0.1), transparent, rgba(255, 85, 0, 0.1), transparent, rgba(255, 85, 0, 0.1), transparent);
    border-radius: 50%;
    animation: mas-rays-rotate 20s linear infinite;
}

.mas-hero-rays::after {
    width: 500px;
    height: 500px;
    animation: mas-rays-rotate 15s linear infinite reverse;
    opacity: 0.5;
}

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

@keyframes mas-sun-core {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        filter: blur(0px);
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.1);
        filter: blur(2px);
    }
}

@keyframes mas-rays-rotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Grid de energia fluindo */
.mas-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: 50px 50px;
    animation: mas-grid-move 20s linear infinite;
    pointer-events: none;
}

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

/* Overlay com gradiente */
.mas-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(255, 85, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.mas-hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.mas-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.9) 0%, rgba(255, 119, 0, 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(255, 85, 0, 0.4);
    animation: mas-float 3s ease-in-out infinite;
}

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

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

@keyframes mas-icon-glow {
    0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5)); }
    50% { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.8)); }
}

.mas-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);
}

.mas-hero-title span {
    background: linear-gradient(135deg, #ff5500 0%, #ffcc00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mas-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;
}

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

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

.mas-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;
}

.mas-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;
}

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

.mas-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;
}

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

.mas-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;
}

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

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

.mas-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);
}

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

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

/* =============================================
   SEÇÃO INTERATIVA - DIAGNÓSTICO SOLAR
   ============================================= */

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

.mas-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mas-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;
}

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

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

/* Quiz Container */
.mas-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;
}

.mas-quiz-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #ff5500, #ffcc00, #28a745, #2693FF);
    background-size: 300% 100%;
    animation: mas-gradient-move 3s ease infinite;
}

@keyframes mas-gradient-move {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

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

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

.mas-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff5500, #ffcc00);
    border-radius: 10px;
    transition: width 0.5s ease;
    position: relative;
}

.mas-progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: mas-shimmer 2s infinite;
}

@keyframes mas-shimmer {
    from { transform: translateX(-100%); }
    to { transform: translateX(100%); }
}

.mas-progress-text {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #788094;
    font-family: "DM Sans", sans-serif;
}

.mas-progress-text span:last-child {
    font-weight: 700;
    color: #ff5500;
}

/* Question */
.mas-quiz-question {
    display: none;
}

.mas-quiz-question.active {
    display: block;
    animation: mas-fade-in 0.5s ease;
}

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

.mas-question-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    border-radius: 50%;
    font-size: 36px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.3);
}

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

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

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

.mas-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 85, 0, 0.05) 0%, rgba(38, 147, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mas-option:hover {
    border-color: #ff5500;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.15);
}

.mas-option:hover::before {
    opacity: 1;
}

.mas-option.selected {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.05);
}

.mas-option.selected::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.mas-option-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2693FF 0%, #1a75d9 100%);
    border-radius: 50%;
    font-size: 26px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mas-option:hover .mas-option-icon {
    transform: scale(1.1) rotate(10deg);
}

.mas-option-text {
    font-size: 16px;
    font-weight: 600;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin: 0;
}

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

.mas-quiz-nav .mas-btn {
    min-width: 150px;
}

/* Result */
.mas-quiz-result {
    display: none;
    text-align: center;
}

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

.mas-result-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border-radius: 50%;
    font-size: 50px;
    color: #ffffff;
    box-shadow: 0 20px 60px rgba(40, 167, 69, 0.3);
    animation: mas-pulse-glow 2s ease-in-out infinite;
}

@keyframes mas-pulse-glow {
    0%, 100% { box-shadow: 0 20px 60px rgba(40, 167, 69, 0.3); }
    50% { box-shadow: 0 20px 80px rgba(40, 167, 69, 0.5); }
}

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

.mas-result-text {
    font-size: 18px;
    color: #788094;
    margin-bottom: 30px;
    line-height: 1.7;
    font-family: "DM Sans", sans-serif;
}

.mas-result-score {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    font-family: "Outfit", sans-serif;
    border-radius: 50px;
    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.3);
}

.mas-result-cta {
    margin-top: 30px;
}

/* =============================================
   BENEFÍCIOS COM CARDS 3D
   ============================================= */

.mas-benefits {
    padding: 40px 0;
    background: linear-gradient(135deg, #010f34 0%, #1a2f5a 50%, #0a1628 100%);
    position: relative;
    overflow: hidden;
}

.mas-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 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%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.mas-benefits .mas-section-title {
    color: #ffffff;
}

.mas-benefits .mas-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.mas-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.mas-benefit-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.mas-benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.mas-benefit-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 85, 0, 0.3);
    box-shadow: 0 25px 60px rgba(255, 85, 0, 0.2);
}

.mas-benefit-card:hover::before {
    opacity: 1;
}

.mas-benefit-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    border-radius: 50%;
    font-size: 40px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.mas-benefit-card:hover .mas-benefit-icon {
    transform: scale(1.1) rotateY(360deg);
}

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

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

/* =============================================
   COMO FUNCIONA - TIMELINE INTERATIVA
   ============================================= */

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

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

.mas-timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #ff5500 0%, #ffcc00 50%, #28a745 100%);
    border-radius: 2px;
}

.mas-timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    align-items: flex-start;
}

.mas-timeline-number {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(255, 85, 0, 0.3);
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.mas-timeline-item:hover .mas-timeline-number {
    transform: scale(1.15);
    box-shadow: 0 20px 50px rgba(255, 85, 0, 0.4);
}

.mas-timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
}

.mas-timeline-content::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 35px;
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-right: 15px solid #f8f9fa;
    transition: all 0.4s ease;
}

.mas-timeline-item:hover .mas-timeline-content {
    background: #ffffff;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.mas-timeline-item:hover .mas-timeline-content::before {
    border-right-color: #ffffff;
}

.mas-timeline-title {
    font-size: 22px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mas-timeline-title i {
    color: #ff5500;
    font-size: 20px;
}

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

/* =============================================
   CONTADOR ANIMADO
   ============================================= */

.mas-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 50%, #ffcc00 100%);
    position: relative;
    overflow: hidden;
}

.mas-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L60 40H100L70 65L80 100L50 80L20 100L30 65L0 40H40Z' fill='%23ffffff' fill-opacity='0.05'/%3E%3C/svg%3E");
    background-size: 150px;
    animation: mas-stars-move 30s linear infinite;
    pointer-events: none;
}

@keyframes mas-stars-move {
    from { background-position: 0 0; }
    to { background-position: 150px 150px; }
}

.mas-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mas-stat-item {
    text-align: center;
    position: relative;
}

.mas-stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 30px;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.mas-stat-number {
    font-size: 52px;
    font-weight: 900;
    font-family: "Outfit", sans-serif;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

/* =============================================
   FAQ ACCORDION SOFISTICADO
   ============================================= */

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

.mas-faq-grid {
    max-width: 850px;
    margin: 60px auto 0;
}

.mas-faq-item {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.mas-faq-item:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 85, 0, 0.1);
}

.mas-faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 28px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mas-faq-question:hover {
    background: rgba(255, 85, 0, 0.02);
}

.mas-faq-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    border-radius: 50%;
    font-size: 22px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.mas-faq-item:hover .mas-faq-icon {
    transform: scale(1.1);
}

.mas-faq-question h3 {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    color: #010f34;
    margin: 0;
}

.mas-faq-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 50%;
    font-size: 14px;
    color: #788094;
    transition: all 0.3s ease;
}

.mas-faq-item.active .mas-faq-toggle {
    background: linear-gradient(135deg, #ff5500 0%, #ff7700 100%);
    color: #ffffff;
    transform: rotate(180deg);
}

.mas-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

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

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

/* =============================================
   CTA FINAL
   ============================================= */

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

.mas-cta::before {
    content: '';
    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: mas-cta-glow 5s ease-in-out infinite;
}

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

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

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

.mas-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;
}

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

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

.mas-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;
}

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

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

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

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

@media (max-width: 991px) {
    .mas-hero {
        padding: 30px 0;
        min-height: auto;
    }
    
    .mas-hero-title {
        font-size: 40px;
    }
    
    .mas-hero-sun {
        width: 250px;
        height: 250px;
        top: -50px;
        right: -50px;
    }
    
    .mas-hero-sun::before {
        width: 120px;
        height: 120px;
    }
    
    .mas-section-title {
        font-size: 36px;
    }
    
    .mas-quiz-container {
        padding: 35px;
    }
    
    .mas-options-grid {
        grid-template-columns: 1fr;
    }
    
    .mas-timeline::before {
        left: 35px;
    }
    
    .mas-timeline-number {
        width: 70px;
        height: 70px;
        font-size: 26px;
    }
    
    .mas-timeline-content {
        padding: 25px;
    }
}

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

@media (max-width: 767px) {
    .mas-hero {
        padding: 30px 0;
    }
    
    .mas-hero-title {
        font-size: 32px;
    }
    
    .mas-hero-subtitle {
        font-size: 16px;
    }
    
    .mas-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .mas-hero-sun,
    .mas-hero-rays {
        display: none;
    }
    
    .mas-btn {
        width: 100%;
        justify-content: center;
    }
    
    .mas-section-title {
        font-size: 30px;
    }
    
    .mas-section-subtitle {
        font-size: 16px;
    }
    
    .mas-quiz-container {
        padding: 25px;
        border-radius: 20px;
    }
    
    .mas-question-title {
        font-size: 20px;
    }
    
    .mas-benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .mas-timeline-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }
    
    .mas-timeline::before {
        display: none;
    }
    
    .mas-timeline-content::before {
        display: none;
    }
    
    .mas-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .mas-stat-number {
        font-size: 38px;
    }
    
    .mas-faq-question {
        padding: 22px;
    }
    
    .mas-faq-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .mas-faq-question h3 {
        font-size: 16px;
    }
    
    .mas-faq-item.active .mas-faq-answer {
        padding: 0 22px 22px 22px;
    }
    
    .mas-cta-title {
        font-size: 30px;
    }
    
    .mas-cta-buttons {
        flex-direction: column;
    }
    
    .mas-cta-phones {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .mas-hero-title {
        font-size: 28px;
    }
    
    .mas-section-title {
        font-size: 26px;
    }
    
    .mas-quiz-nav {
        flex-direction: column;
        gap: 15px;
    }
    
    .mas-quiz-nav .mas-btn {
        width: 100%;
    }
    
    .mas-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mas-cta-title {
        font-size: 26px;
    }
}

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

/* Luz passando nos cards */
.mas-benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.05) 45%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.05) 55%,
        transparent 60%
    );
    transform: translateX(-100%) rotate(45deg);
    transition: none;
    pointer-events: none;
}

.mas-benefit-card:hover::after {
    animation: mas-light-sweep 0.8s ease forwards;
}

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

/* Glow effect nos botões */
.mas-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;
}

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

/* Partículas de energia */
.mas-energy-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #ffcc00;
    border-radius: 50%;
    pointer-events: none;
    animation: mas-particle-float 3s ease-in-out infinite;
}

@keyframes mas-particle-float {
    0%, 100% { 
        transform: translateY(0) scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-30px) scale(1.5);
        opacity: 0.4;
    }
}