/* landing-servicios.css
   CSS común para ECG, Holter y Presurometría MAPA
*/

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0076ff;
    --primary-dark: #005ecb;
    --primary-soft: #dff8f6;
    --accent-mint: #eefbf6;
    --accent-teal: #eefbf6;

    --gray-50: #f8fbfc;
    --gray-100: #eefafa;
    --gray-200: #e1e8ef;
    --gray-500: #7a8794;
    --gray-600: #607080;
    --gray-700: #27364a;
    --gray-800: #071111;

    --white: #ffffff;
    --green-wa: #25D366;
    --green-wa-dark: #1DA851;

    --border-light: #dfe7ef;

    --shadow-sm: 0 10px 24px rgba(0,0,0,.04);
    --shadow-md: 0 20px 44px rgba(0,0,0,.07);
    --shadow-lg: 0 28px 60px rgba(0,0,0,.10);

    --radius: 16px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--gray-50);
    color: var(--gray-800);
    font-size: 1.2rem;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
}

/* Navegación */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.nav-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    text-decoration: none;
    color: #07958f;
    background: linear-gradient(135deg, #07958f 0%, #2C7DA0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--gray-700);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: -0.2px;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

/* Hero simple */
.hero-container {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    background: #ffffff;
    color: #1e293b;
    padding: 150px 5rem 120px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-left {
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.badge-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: max-content;
    max-width: 100%;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: var(--primary);
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 700;
    white-space: nowrap;
}

.badge-dot {
    width: 8px;
    height: 8px;
    display: inline-block;
    background: var(--primary);
    border-radius: 50%;
}

.badge-top i {
    font-size: 16px;
    line-height: 1;
    animation: pulse-heart 1.2s infinite;
}

.hero-title {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: clamp(2.2rem,4vw,3.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #132238;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 900px;
    text-align: center;
}

.hero-lead {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-align: center;
}

/* Compatibilidad con hero viejo */
.hero {
    padding-top: 64px;
    min-height: 90vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(180deg, #fff8e8 0%, #eefafa 100%);
    position: relative;
}

.hero .hero-left {
    padding: 4rem 3rem 4rem 5rem;
    position: relative;
    z-index: 1;
}

.hero .hero-right {
    padding: 3rem 3rem 3rem 1rem;
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.hero h1 span {
    color: var(--primary);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 650px;
    line-height: 1.55;
}

.availability-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-mint);
    border-radius: 60px;
    padding: .5rem 1.25rem;
    margin-bottom: 2rem;
    width: fit-content;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #2A9D8F;
    border-radius: 50%;
    animation: pulse-anim 2s ease-in-out infinite;
}

.availability-bar span {
    font-size: 1.2rem;
    font-weight: 500;
    color: #1a5c53;
}

/* CTA */
.cta-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: var(--green-wa);
    color: #fff;
    padding: 18px 30px;
    border-radius: 14px;
    font-size: 1.15rem;
    font-weight: 800;
    text-decoration: none;
    text-align: center;
    box-shadow: 0 10px 25px rgba(37,211,102,.25);
    transition: all .25s ease;
}

.cta-whatsapp:hover {
    background: var(--green-wa-dark);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 14px 30px rgba(37,211,102,.30);
}

.cta-whatsapp .cta-icon,
.cta-whatsapp i {
    font-size: 1.35rem;
}

.cta-whatsapp .cta-text small {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    opacity: .9;
}

/* CTA principal */
.cta-bottom {
    background: linear-gradient(180deg, #fff8e8 0%, #eefafa 100%);
    padding: 5rem 1.5rem;
    text-align: center;
}

.cta-bottom h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem,4vw,3rem);
    font-weight: 900;
    line-height: 1.25;
    letter-spacing: -.03em;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.cta-bottom h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 500;
    line-height: 1.4;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}
.cta-bottom p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 1.8rem;
}

.coverage {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--gray-600);
}

/* Barra métodos de pago / urgencia */
.urgency-strip {
    background: var(--primary-soft);
    color: #008080;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-top: 1px solid #c7eeee;
    border-bottom: 1px solid #c7eeee;
}

.payment-methods {
    line-height: 1.5;
    font-size: 1.2rem;
}

.payment-methods span i {
    margin-left: 6px;
    margin-right: 3px;
    opacity: .9;
}

/* Tarjetas de imagen */
.hero-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.hero-img-card {
    width: 100%;
    max-width: 440px;
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-img-card img,
.img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-card-body {
    padding: 24px;
    border-top: 3px solid var(--primary);
    background: #fff;
}

.hero-card-body strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.hero-card-body p {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.55;
}

.card-tag {
    display: inline-block;
    font-size: .85rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.card-tag.tag-delivery {
    background: #fef3c7;
    color: #d97706;
}

/* Secciones generales */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(2rem,3vw,2.7rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.02em;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.section-desc {
    font-size: 1.2rem;
    color: var(--gray-600);
    line-height: 1.7;
    max-width: 900px;
    margin-bottom: 2rem;
}

/* Qué es / Qué registra */
.what {
    padding: 5rem;
    background: #fff;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 1.2rem;
    color: var(--gray-600);
}

.feature-list li strong {
    color: var(--gray-800);
    font-weight: 700;
}

.feat-icon,
.benefit-icon {
    width: 34px;
    height: 34px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feat-icon i,
.benefit-icon i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* MAPA */
.mapa-infographic,
.use-cases {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.infog-card,
.uc-card {
    background: var(--gray-50);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 16px 34px rgba(0,0,0,.03);
    transition: all .2s ease;
}

.infog-card:hover,
.uc-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.infog-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    min-width: 55px;
    line-height: 1;
}

.infog-card h4,
.uc-card h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.infog-card p,
.uc-card p {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.45;
}

.use-case-label {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: .5rem;
}

.uc-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.uc-icon i {
    color: var(--primary);
}

/* Holter duración */
.duration-toggle {
    display: flex;
    gap: 1rem;
    width: 100%;
    max-width: 420px;
}

.dur-card {
    flex: 1;
    background: #fff;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    padding: 1rem .8rem;
    text-align: center;
    transition: all .2s ease;
}

.dur-card.active {
    border-color: var(--primary);
    background: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}

.dur-num {
    display: block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
}

.dur-lbl {
    display: block;
    font-size: 1.05rem;
    color: var(--gray-500);
    font-weight: 500;
}

.dur-card.active .dur-lbl {
    color: var(--primary-dark);
}

.dur-badge,
.badge-rec,
.badge-popular {
    display: inline-block;
    margin-top: 6px;
    background: var(--primary);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 999px;
}

/* Servicios ECG */
.services {
    padding: 5rem;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(230px,1fr));
    gap: 1.8rem;
}

.service-card {
    background: var(--gray-50);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 1.8rem 1.5rem;
    box-shadow: 0 20px 44px rgba(0,0,0,.05);
    transition: all .25s ease;
}

.service-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.service-icon i {
    color: var(--primary);
    font-size: 1.4rem;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: .5rem;
}

.service-card p {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Proceso */
.how {
    padding: 5rem;
    background: linear-gradient(180deg, #fff8e8 0%, #eefafa 100%);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 2rem;
    margin-top: 1rem;
}

.step {
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: 28px;
    padding: 2rem 1.2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all .25s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.step-num {
    width: 58px;
    height: 58px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    background: var(--primary-soft);
    color: #07958f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
}

.step h4 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: .6rem;
}

.step p {
    color: var(--gray-600);
    line-height: 1.45;
    max-width: 220px;
    margin: 0 auto;
}

/* Comparativa Holter */
.compare {
    padding: 5rem;
    background: #fff;
}

.compare-grid {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 2rem;
    margin-top: 2.5rem;
}

.compare-card {
    background: var(--gray-50);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    transition: all .2s ease;
}

.compare-card.featured {
    border: 2px solid var(--primary);
    background: #fff;
}

.compare-top-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: #fff;
    font-size: .9rem;
    font-weight: 800;
    padding: 5px 14px;
    border-radius: 0 20px 0 18px;
}

.compare-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: .1rem;
}

.compare-card .sub {
    font-size: 1.15rem;
    color: var(--gray-500);
    margin-bottom: 1.2rem;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
}

.compare-list li {
    display: flex;
    gap: 10px;
    color: var(--gray-600);
}

.compare-list li i {
    color: var(--primary);
    margin-top: 4px;
}

/* FAQ */
.faq {
    padding: 5rem;
    background: #fff;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.faq-item h4 {
    display: flex;
    gap: 10px;
    font-size: 1.2rem;
    font-weight: 800;
    color: #f43f5e;
    margin-bottom: 1rem;
}

.faq-item h4 i {
    color: var(--primary);
    margin-top: 4px;
}

.faq-item p {
    color: #4a5568;
    margin-bottom: .5rem;
    line-height: 1.55;
}

/* Bloques ECG */
.section-search-intent {
    padding: 45px 15px;
    background: #f5f9ff;
}

.intent-card {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 22px;
    padding: 32px 26px;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
    border: 1px solid #e1ecf8;
}

.intent-badge {
    display: inline-block;
    background: #e8f2ff;
    color: #0b5cab;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 14px;
    margin-bottom: 14px;
}

.intent-card h2 {
    font-size: 30px;
    line-height: 1.2;
    color: #123;
    margin-bottom: 14px;
}

.intent-card p {
    font-size: 18px;
    color: #445;
    line-height: 1.6;
    margin-bottom: 18px;
}

.intent-card ul {
    padding-left: 20px;
    margin-bottom: 24px;
}

.intent-card li {
    font-size: 17px;
    margin-bottom: 8px;
    color: #333;
}

.btn-intent,
.btn-pediatrico {
    display: inline-block;
    background: var(--green-wa);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
}

.btn-intent:hover,
.btn-pediatrico:hover {
    color: #fff;
    filter: brightness(.95);
}

.pediatrico-section {
    padding: 50px 15px;
    background: #fff8f8;
}

.pediatrico-card {
    max-width: 950px;
    margin: 0 auto;
    background: #fff;
    border-radius: 24px;
    padding: 35px 28px;
    border: 1px solid #ffe0e0;
    box-shadow: 0 8px 28px rgba(0,0,0,.08);
}

.pediatrico-badge {
    display: inline-block;
    background: #ffeaea;
    color: #c62828;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 15px;
}

.pediatrico-card h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #222;
}

.pediatrico-text {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 28px;
}

.pediatrico-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.pediatrico-item {
    background: #fff5f5;
    border-radius: 14px;
    padding: 16px;
    font-size: 16px;
    color: #333;
}

.hero-keywords-box {
    max-width: 1100px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 22px;
    margin: 35px auto;
}

.hero-keywords-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-keywords {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-keywords span {
    background: #fff;
    border: 1px solid #dbeafe;
    color: #0f172a;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 1.05rem;
    line-height: 1.2;
    box-shadow: 0 2px 4px rgba(0,0,0,.04);
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 24px 0;
}

.hero-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 900px;
    font-size: 1.2rem;
    line-height: 1.45;
    color: var(--gray-700);
    text-align: left;
}

.hero-benefit i {
    color: var(--primary);
    margin-top: 3px;
    min-width: 18px;
}

/* Cierre */
.promo-final {
    background: var(--gray-50);
    padding: 4rem 1.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
}

.promo-final .hero-img-card {
    max-width: 380px;
}

.promo-final .cta-whatsapp {
    max-width: 460px;
}

/* Footer */
footer {
    background: var(--gray-50);
    text-align: center;
    padding: 1.8rem;
    font-size: 1.1rem;
}

/* Floating */
.floating-cta {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 200;
    display: none;
}

.floating-cta a {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--green-wa);
    color: #fff;
    border-radius: 60px;
    padding: 12px 20px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    box-shadow: var(--shadow-md);
}

/* Animaciones */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-anim {
    0%,100% { opacity: 1; transform: scale(1); background: #2A9D8F; }
    50% { opacity: .6; transform: scale(.9); background: #49C6B0; }
}

@keyframes pulse-heart {
    0% { transform: scale(1); }
    14% { transform: scale(1.2); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    70% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 1000px) {
    .what {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }

    .compare-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 950px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero .hero-left {
        padding: 3rem 2rem 2rem;
        background: #fff;
    }

    .hero .hero-right {
        padding: 2rem;
        background: var(--primary-soft);
    }

    .hero-container {
        padding: 120px 2rem 70px;
    }

    .how,
    .faq,
    .cta-bottom,
    .compare,
    .services {
        padding: 4rem 2rem;
    }

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

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .floating-cta {
        display: block;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .hero-img-card {
        max-width: 100% !important;
        margin: 0 auto !important;
    }

    .hero-right {
        padding: 0 15px !important;
    }
}

@media (max-width: 640px) {
    body {
        font-size: 1.05rem;
    }

    nav {
        padding: 0 1.2rem;
    }

    .hero-container {
        padding: 110px 1.2rem 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero .hero-left {
        padding: 2rem 1.2rem 1rem;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 1rem;
    }

    .cta-whatsapp {
        padding: 15px 22px;
        font-size: 1.05rem;
    }

    .what,
    .how,
    .faq,
    .compare,
    .services {
        padding: 3rem 1.2rem;
    }

    .duration-toggle {
        flex-direction: column;
    }

    .coverage {
        flex-direction: column;
        gap: 6px;
    }
}
