/* ============================================
   Route Landing Page CSS - Mudanças24 v1.1
   High-conversion, compact, calculator-in-hero
   ============================================ */

/* ===== HERO ===== */
.rl-hero {
    background: linear-gradient(135deg, #1B365D 0%, #2a4f82 50%, #1B365D 100%);
    color: #fff;
    padding: 2.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}
.rl-hero::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -15%;
    width: 55%;
    height: 220%;
    background: radial-gradient(ellipse, rgba(255,107,53,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.rl-hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 2.5rem;
    align-items: start;
}
.rl-hero-badge {
    display: inline-block;
    background: rgba(255,107,53,0.12);
    border: 1px solid rgba(255,107,53,0.25);
    color: #FF6B35;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 0.75rem;
}
.rl-hero-copy h1 {
    color: #fff;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.rl-hero-sub {
    font-size: 1.08rem;
    opacity: 0.85;
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 480px;
}
.rl-hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1rem;
    font-size: 0.9rem;
}
.rl-hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.85;
}
.rl-hero-trust svg { flex-shrink: 0; }
.rl-hero-mobile-cta { display: none; }

/* ===== HERO CALCULATOR CARD ===== */
.rl-calc-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    overflow: hidden;
}
.rl-calc-header {
    background: #f8f9fa;
    padding: 0.85rem 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}
.rl-calc-header h3 {
    color: #1B365D;
    font-size: 1.1rem;
    margin: 0;
}
.rl-calc-badge {
    background: #FF6B35;
    color: #fff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.rl-calc-body {
    padding: 1.1rem 1.25rem 1.25rem;
}
.rl-calc-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}
.rl-calc-field { display: flex; flex-direction: column; gap: 0.2rem; }
.rl-calc-field label {
    font-weight: 600;
    font-size: 0.82rem;
    color: #1B365D;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.rl-calc-field .m24-input,
.rl-calc-field .m24-select {
    padding: 0.5rem 0.65rem;
    font-size: 0.95rem;
    border-width: 1.5px;
    border-radius: 6px;
}
.rl-calc-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}
.rl-calc-result {
    border-top: 1px solid #e8ecf0;
    padding: 1rem 0 0 !important;
    margin-top: 0.75rem;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}
.rl-calc-result .m24-result-inner {
    flex-direction: column;
    gap: 0.75rem;
}
.rl-calc-result .m24-result-price { text-align: center; }
.rl-calc-result .m24-result-value { font-size: 2.2rem; }
.rl-calc-result .m24-result-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

/* ===== BENEFITS ===== */
.rl-benefits {
    background: #fff;
    padding: 1.75rem 0;
    border-bottom: 1px solid #eee;
}
.rl-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.rl-benefit-card {
    text-align: center;
    padding: 0.75rem;
}
.rl-benefit-icon {
    width: 50px;
    height: 50px;
    background: #FFF3EC;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.6rem;
}
.rl-benefit-card h4 {
    font-size: 1.02rem;
    color: #1B365D;
    margin-bottom: 0.25rem;
}
.rl-benefit-card p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.5;
}

/* ===== SECTIONS (compact) ===== */
.rl-section {
    padding: 2.5rem 0;
}
.rl-section-alt {
    background: #f8f9fa;
}
.rl-section-header {
    text-align: center;
    margin-bottom: 1.5rem;
}
.rl-section-header h2 {
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    margin-bottom: 0.5rem;
}
.rl-section-header p {
    color: #777;
    font-size: 1rem;
}

/* ===== PRICE CARDS ===== */
.rl-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}
.rl-price-card {
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 12px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: border-color .2s, box-shadow .2s;
}
.rl-price-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 4px 16px rgba(255,107,53,0.1);
}
.rl-price-highlight {
    border-color: #FF6B35;
    background: #FFFAF7;
    position: relative;
}
.rl-price-highlight::before {
    content: 'Mais comum';
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    background: #FF6B35;
    color: #fff;
    padding: 0.1rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
}
.rl-price-tipo {
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: #1B365D;
    margin-bottom: 0.5rem;
}
.rl-price-range {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.12rem;
    color: #FF6B35;
    margin-bottom: 0.3rem;
}
.rl-price-range span { color: #999; font-weight: 400; }
.rl-price-detail {
    font-size: 0.85rem;
    color: #999;
}
.rl-price-disclaimer {
    text-align: center;
    font-size: 0.9rem;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}
.rl-price-disclaimer strong { color: #666; }

/* ===== PROCESS STEPS ===== */
.rl-steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}
.rl-step {
    flex: 1;
    text-align: center;
    padding: 0 1rem;
    max-width: 200px;
}
.rl-step-num {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #FF6B35, #e55a25);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 0.6rem;
}
.rl-step h4 {
    font-size: 1.02rem;
    color: #1B365D;
    margin-bottom: 0.25rem;
}
.rl-step p {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.45;
}
.rl-step-arrow {
    display: flex;
    align-items: center;
    padding-top: 0.5rem;
    flex-shrink: 0;
}

/* ===== TWO COLUMNS (Factors + Why) ===== */
.rl-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.rl-col-card {
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 12px;
    padding: 1.5rem;
}
.rl-col-card-alt {
    background: #f8fdf8;
    border-color: #d4edda;
}
.rl-col-card h3 {
    font-size: 1.2rem;
    color: #1B365D;
    margin-bottom: 1rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid #FF6B35;
}
.rl-col-card-alt h3 {
    border-bottom-color: #25D366;
}
.rl-factor-list { display: flex; flex-direction: column; gap: 0.75rem; }
.rl-factor {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
}
.rl-factor svg { flex-shrink: 0; margin-top: 2px; }
.rl-factor strong {
    display: block;
    font-size: 0.98rem;
    color: #1B365D;
}
.rl-factor span {
    font-size: 0.88rem;
    color: #888;
}
.rl-checklist { display: flex; flex-direction: column; gap: 0.6rem; }
.rl-checklist li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.98rem;
    color: #444;
}
.rl-checklist svg { flex-shrink: 0; }

/* ===== OTHER SERVICES (cross-sell) ===== */
.rl-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.rl-service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 12px;
    padding: 1.5rem 1.25rem;
    text-decoration: none;
    color: inherit;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
}
.rl-service-card:hover {
    border-color: #FF6B35;
    box-shadow: 0 6px 20px rgba(255,107,53,0.1);
    transform: translateY(-3px);
    color: inherit;
}
.rl-service-highlight {
    border-color: #FF6B35;
    background: #FFFAF7;
}
.rl-service-badge {
    position: absolute;
    top: -9px;
    right: 14px;
    background: #FF6B35;
    color: #fff;
    padding: 0.15rem 0.6rem;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}
.rl-service-icon {
    width: 56px;
    height: 56px;
    background: #FFF3EC;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}
.rl-service-card h4 {
    font-size: 1.12rem;
    color: #1B365D;
    margin-bottom: 0.35rem;
}
.rl-service-card p {
    font-size: 0.92rem;
    color: #777;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    flex: 1;
}
.rl-service-link {
    font-size: 0.92rem;
    font-weight: 600;
    color: #FF6B35;
}

/* ===== TESTIMONIALS ===== */
.rl-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.rl-testimonial {
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
}
.rl-testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 0.65rem;
}
.rl-testimonial-text {
    font-size: 0.98rem;
    color: #444;
    line-height: 1.6;
    font-style: italic;
    flex: 1;
    margin-bottom: 0.85rem;
}
.rl-testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-top: 1px solid #f0f0f0;
    padding-top: 0.75rem;
}
.rl-testimonial-avatar {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #1B365D, #2a4f82);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    flex-shrink: 0;
}
.rl-testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: #1B365D;
}
.rl-testimonial-author span {
    font-size: 0.82rem;
    color: #999;
}

/* ===== FAQ ACCORDION ===== */
.rl-faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.rl-faq-item {
    background: #fff;
    border: 1.5px solid #e8ecf0;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color .2s;
}
.rl-faq-item.active {
    border-color: #FF6B35;
}
.rl-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    margin: 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: #1B365D;
    text-align: left;
    line-height: 1.4;
    transition: color .2s;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.rl-faq-question:hover {
    color: #FF6B35;
}
.rl-faq-question span {
    flex: 1;
}
.rl-faq-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    transition: transform .25s ease;
    color: #999;
}
.rl-faq-item.active .rl-faq-icon {
    transform: rotate(180deg);
    color: #FF6B35;
}
.rl-faq-answer {
    display: none;
}
.rl-faq-item.active .rl-faq-answer {
    display: block;
}
.rl-faq-answer p {
    padding: 0 1.25rem 1.1rem;
    font-size: 0.98rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}
.rl-faq-answer a {
    color: #FF6B35;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .rl-hero-grid {
        grid-template-columns: 1fr 380px;
        gap: 2rem;
    }
}
@media (max-width: 968px) {
    .rl-hero { padding: 2rem 0 1.5rem; }
    .rl-hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .rl-hero-copy { text-align: center; }
    .rl-hero-sub { margin: 0 auto 1rem; }
    .rl-hero-trust {
        justify-content: center;
        grid-template-columns: 1fr 1fr;
        max-width: 360px;
        margin: 0 auto;
    }
    .rl-hero-mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    .rl-hero-calc {
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    .rl-benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .rl-price-grid { grid-template-columns: repeat(2, 1fr); }
    .rl-steps-grid { flex-wrap: wrap; gap: 0.5rem; }
    .rl-step-arrow { display: none; }
    .rl-step { min-width: 140px; }
    .rl-two-col { grid-template-columns: 1fr; }
    .rl-services-grid { grid-template-columns: 1fr 1fr 1fr; }
    .rl-testimonials-grid { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 768px) {
    .rl-services-grid { grid-template-columns: 1fr; }
    .rl-testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .rl-hero { padding: 1.5rem 0 1rem; }
    .rl-hero-copy h1 { font-size: 1.65rem; }
    .rl-hero-trust { grid-template-columns: 1fr; gap: 0.35rem; }
    .rl-benefits-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .rl-benefit-card { padding: 0.5rem; }
    .rl-benefit-icon { width: 40px; height: 40px; }
    .rl-benefit-icon svg { width: 20px; height: 20px; }
    .rl-price-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
    .rl-price-card { padding: 1rem 0.75rem; }
    .rl-steps-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .rl-calc-row { grid-template-columns: 1fr; }
    .rl-section { padding: 2rem 0; }
    .rl-faq-question { font-size: 0.95rem; padding: 0.85rem 1rem; }
    .rl-faq-answer p { padding: 0 1rem 0.85rem; font-size: 0.92rem; }
}

/* === Local Content Section === */
.rl-local-content { max-width: 800px; margin: 0 auto; }
.rl-local-content h2 { font-size: 1.65rem; color: #1a1a2e; margin-bottom: 1rem; }
.rl-local-content p { font-size: 1.08rem; line-height: 1.8; color: #444; margin-bottom: 1rem; }
.rl-local-highlights { margin-top: 1.25rem; display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; }
.rl-local-highlights strong { font-size: 0.95rem; color: #1a1a2e; margin-right: 0.25rem; }
.rl-local-tag { display: inline-block; background: #fff; border: 1px solid #e0e0e0; border-radius: 20px; padding: 0.35rem 0.85rem; font-size: 0.9rem; color: #555; transition: all 0.2s; }
.rl-local-tag:hover { border-color: #FF6B35; color: #FF6B35; }


/* ===== HERO BACKGROUND IMAGE ===== */
.rl-hero { position: relative; overflow: hidden; }
.rl-hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.18;
}
.rl-hero > .m24-container { position: relative; z-index: 1; }
