/* ==========================================================================
   EcoLoft — Landing "Diagnóstico Estructural Post-Sismo"
   HOJA AUTÓNOMA. No depende de styles.css del sitio principal.
   Pensada para publicarse en un subdominio propio.
   ========================================================================== */

/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #172A28;    /* Verde muy oscuro */
    --primary-light: #A5CD88;   /* Verde claro */
    --primary-cream: #EAE8D6;   /* Beige/crema */
    --primary-medium: #4C6548;  /* Verde medio */
    --white: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;

    --eq-alert: #B3402B;      /* Rojo tierra, sobrio (no rojo alarma) */
    --eq-alert-soft: #FBEDE9;
    --eq-warn: #C98A2E;
    --eq-safe: #4C6548;
    --eq-safe-soft: #EDF3E7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
}

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

/* --------------------------------------------------------------------------
   Header y navegación (menú colapsado en todos los tamaños)
   -------------------------------------------------------------------------- */
.header {
    background: linear-gradient(135deg, #f5f4ea 0%, rgba(245, 244, 234, 0.95) 100%);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.07);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 5px 0 5px 10px;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    list-style: none;
    display: flex;
    position: fixed;
    left: -100%;
    top: 90px;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f4ea 0%, rgba(245, 244, 234, 0.97) 100%);
    width: 100%;
    text-align: center;
    transition: left 0.3s ease;
    padding: 2rem 0;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.nav-menu.active {
    left: 0;
}

.nav-item {
    margin: 1rem 0;
}

.nav-link {
    color: var(--primary-dark);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 3px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-medium);
}

.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    background: none;
    border: none;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(165, 205, 136, 0.2);
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.hamburger:hover .bar {
    background-color: var(--primary-medium);
}

/* El ícono pasa a "X" cuando el menú está abierto */
.hamburger.active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --------------------------------------------------------------------------
   Botones base
   -------------------------------------------------------------------------- */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary-medium);
    color: var(--white);
    border-color: var(--primary-medium);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Botón de WhatsApp */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 32px;
    background-color: #25D366;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.5);
    color: #fff;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--primary-light);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    border-top: 1px solid var(--primary-medium);
    padding-top: 1rem;
    text-align: center;
    color: var(--primary-cream);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.eq-hero {
    padding: 150px 0 80px;
    background: radial-gradient(circle at top left, rgba(76, 101, 72, 0.92) 0%, var(--primary-dark) 35%, var(--primary-dark) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.eq-hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -100px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: rgba(165, 205, 136, 0.08);
    pointer-events: none;
}

.eq-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.eq-hero h1 {
    font-size: 3.1rem;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.2rem;
}

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

.eq-hero-points {
    list-style: none;
    margin-bottom: 2.2rem;
}

.eq-hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.92);
}

.eq-hero-points i {
    color: var(--primary-light);
    margin-top: 5px;
    flex-shrink: 0;
}

.eq-cta-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.eq-cta-row .btn,
.eq-cta-row .whatsapp-btn {
    margin-top: 0;
}

.eq-btn-light {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 8px;
    background: var(--primary-light);
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 4px 14px rgba(165, 205, 136, 0.28);
}

.eq-btn-light:hover {
    background: #b8db9e;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(165, 205, 136, 0.38);
}

/* Tarjeta lateral del hero */
.eq-hero-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
}

.eq-hero-card h3 {
    color: var(--primary-light);
    font-size: 1.25rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eq-hero-card ol {
    padding-left: 1.1rem;
    color: rgba(255, 255, 255, 0.88);
}

.eq-hero-card ol li {
    margin-bottom: 0.9rem;
    padding-left: 6px;
    line-height: 1.5;
}

.eq-hero-card ol li strong {
    color: var(--white);
}

/* --------------------------------------------------------------------------
   Secciones genéricas
   -------------------------------------------------------------------------- */
.eq-section {
    padding: 80px 0;
}

.eq-section--cream {
    background: var(--primary-cream);
}

.eq-section--white {
    background: var(--white);
}

.eq-section--dark {
    background: var(--primary-dark);
    color: var(--white);
}

.eq-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem auto;
}

.eq-head h2 {
    font-size: 2.4rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.eq-head p {
    color: var(--text-light);
    font-size: 1.08rem;
}

.eq-section--dark .eq-head h2 {
    color: var(--primary-light);
}

.eq-section--dark .eq-head p {
    color: rgba(255, 255, 255, 0.8);
}

.eq-head-line {
    width: 70px;
    height: 3px;
    background: var(--primary-light);
    border-radius: 2px;
    margin: 1.4rem auto 0 auto;
}

/* --------------------------------------------------------------------------
   Seguridad inmediata — semáforo de habitabilidad
   -------------------------------------------------------------------------- */
.eq-triage {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.eq-triage-card {
    background: var(--white);
    border-radius: 14px;
    padding: 1.8rem;
    border-top: 5px solid;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.eq-triage-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
}

.eq-triage-card .eq-triage-sub {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.eq-triage-card ul {
    list-style: none;
}

.eq-triage-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 0.97rem;
    line-height: 1.5;
}

.eq-triage-card ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
}

.eq-triage-card--red { border-top-color: var(--eq-alert); }
.eq-triage-card--red h3,
.eq-triage-card--red ul li::before { color: var(--eq-alert); }

.eq-triage-card--yellow { border-top-color: var(--eq-warn); }
.eq-triage-card--yellow h3,
.eq-triage-card--yellow ul li::before { color: var(--eq-warn); }

.eq-triage-card--green { border-top-color: var(--eq-safe); }
.eq-triage-card--green h3,
.eq-triage-card--green ul li::before { color: var(--eq-safe); }

/* Aviso oficial */
.eq-official {
    margin-top: 2.5rem;
    background: var(--eq-alert-soft);
    border-left: 5px solid var(--eq-alert);
    border-radius: 10px;
    padding: 1.6rem 1.8rem;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.eq-official i {
    color: var(--eq-alert);
    font-size: 1.4rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.eq-official h4 {
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.eq-official p {
    color: var(--text-dark);
    font-size: 0.98rem;
    line-height: 1.6;
}

.eq-official p + p {
    margin-top: 0.6rem;
}

/* --------------------------------------------------------------------------
   Servicios
   -------------------------------------------------------------------------- */
.eq-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.eq-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(23, 42, 40, 0.07);
}

.eq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.13);
}

.eq-card-img {
    height: 190px;
    overflow: hidden;
    position: relative;
    background: var(--primary-dark);
}

.eq-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.eq-card:hover .eq-card-img img {
    transform: scale(1.08);
}

.eq-card-icon {
    position: absolute;
    bottom: -26px;
    left: 24px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-medium));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    border: 3px solid var(--white);
}

.eq-card-body {
    padding: 2.4rem 1.6rem 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.eq-card-body h3 {
    color: var(--primary-dark);
    font-size: 1.22rem;
    margin-bottom: 0.7rem;
    line-height: 1.35;
}

.eq-card-body > p {
    color: var(--text-light);
    font-size: 0.97rem;
    margin-bottom: 1.1rem;
    line-height: 1.6;
}

.eq-card-body ul {
    list-style: none;
}

.eq-card-body ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
    font-size: 0.93rem;
    color: var(--text-dark);
}

.eq-card-body ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-medium);
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 0.8rem;
}

.eq-card-flag {
    display: inline-block;
    align-self: flex-start;
    background: var(--eq-safe-soft);
    color: var(--primary-medium);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    margin-bottom: 0.9rem;
}

.eq-card-flag--urgent {
    background: var(--eq-alert-soft);
    color: var(--eq-alert);
}

/* --------------------------------------------------------------------------
   Proceso
   -------------------------------------------------------------------------- */
.eq-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2rem;
    counter-reset: eqstep;
}

.eq-step {
    position: relative;
    padding: 2.2rem 1.5rem 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
}

.eq-step::before {
    counter-increment: eqstep;
    content: counter(eqstep);
    position: absolute;
    top: -22px;
    left: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.eq-step h3 {
    color: var(--primary-light);
    font-size: 1.12rem;
    margin-bottom: 0.6rem;
    margin-top: 0.6rem;
}

.eq-step p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Cobertura
   -------------------------------------------------------------------------- */
.eq-coverage {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.eq-city {
    background: var(--white);
    border: 1px solid rgba(23, 42, 40, 0.12);
    border-radius: 50px;
    padding: 10px 22px;
    font-weight: 600;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.eq-city i {
    color: var(--primary-medium);
    font-size: 0.85rem;
}

.eq-city--priority {
    background: var(--primary-medium);
    border-color: var(--primary-medium);
    color: var(--white);
}

.eq-city--priority i {
    color: var(--primary-light);
}

/* --------------------------------------------------------------------------
   Copropiedades / bloque destacado
   -------------------------------------------------------------------------- */
.eq-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.eq-split h2 {
    font-size: 2.1rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.eq-split p {
    color: var(--text-light);
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.eq-split-sub {
    color: var(--primary-medium);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.9rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-cream);
}

.eq-split ul {
    list-style: none;
    margin-bottom: 1.8rem;
}

.eq-split ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.55;
}

.eq-split ul li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--primary-medium);
}

.eq-split-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.eq-split-img img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
}

/* --------------------------------------------------------------------------
   Credenciales / confianza
   -------------------------------------------------------------------------- */
.eq-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.8rem;
}

.eq-trust-item {
    text-align: center;
    padding: 1.8rem 1.2rem;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.eq-trust-item i {
    font-size: 2rem;
    color: var(--primary-medium);
    margin-bottom: 1rem;
    display: block;
}

.eq-trust-item h4 {
    color: var(--primary-dark);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.eq-trust-item p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.55;
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.eq-faq {
    max-width: 860px;
    margin: 0 auto;
}

.eq-faq details {
    background: var(--white);
    border: 1px solid rgba(23, 42, 40, 0.1);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.eq-faq summary {
    cursor: pointer;
    padding: 1.3rem 3rem 1.3rem 1.5rem;
    font-weight: 600;
    color: var(--primary-dark);
    font-size: 1.05rem;
    position: relative;
    list-style: none;
}

.eq-faq summary::-webkit-details-marker {
    display: none;
}

.eq-faq summary::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-medium);
    font-size: 0.85rem;
    transition: transform 0.25s ease;
}

.eq-faq details[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}

.eq-faq details[open] summary {
    background: var(--eq-safe-soft);
}

.eq-faq-body {
    padding: 0 1.5rem 1.4rem;
    color: var(--text-light);
    line-height: 1.7;
}

.eq-faq-body p + p {
    margin-top: 0.8rem;
}

/* --------------------------------------------------------------------------
   Cierre / contacto por WhatsApp
   -------------------------------------------------------------------------- */
.eq-final {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.eq-final h2 {
    color: var(--primary-light);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.eq-final > p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.eq-wa-big {
    margin-top: 0;
    padding: 18px 44px;
    font-size: 1.2rem;
}

.eq-wa-big i {
    font-size: 1.5rem;
}

.eq-final-phone {
    margin-top: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

.eq-final-phone a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(165, 205, 136, 0.4);
}

.eq-final-phone a:hover {
    border-bottom-color: var(--primary-light);
}

.eq-price {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.6rem;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(165, 205, 136, 0.12);
    border: 1px solid rgba(165, 205, 136, 0.35);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.97rem;
    line-height: 1.5;
    text-align: left;
}

.eq-price i {
    color: var(--primary-light);
    flex-shrink: 0;
}

.eq-price strong {
    color: var(--primary-light);
}

.eq-checklist {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
}

.eq-checklist h3 {
    color: var(--primary-light);
    font-size: 1.15rem;
    margin-bottom: 1.3rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.eq-checklist ul {
    list-style: none;
}

.eq-checklist ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.55;
}

.eq-checklist ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--primary-light);
    position: absolute;
    left: 0;
    top: 3px;
    font-size: 0.85rem;
}

.eq-checklist ul li strong {
    color: var(--white);
}

.eq-checklist-note {
    margin-top: 1.4rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* --------------------------------------------------------------------------
   Marcador de contenido pendiente (visible a propósito antes de publicar)
   -------------------------------------------------------------------------- */
.eq-todo {
    background: #FFF3CD;
    border: 1px dashed #C98A2E;
    color: #7A5312;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.9em;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Botón flotante de WhatsApp
   -------------------------------------------------------------------------- */
.eq-float-wa {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
    z-index: 9000;
    transition: transform 0.25s ease;
}

.eq-float-wa:hover {
    transform: scale(1.08);
}

/* --------------------------------------------------------------------------
   Nota legal al pie
   -------------------------------------------------------------------------- */
.eq-legal {
    background: var(--primary-cream);
    padding: 2rem 0;
    border-top: 1px solid rgba(23, 42, 40, 0.1);
}

.eq-legal p {
    font-size: 0.86rem;
    color: var(--text-light);
    line-height: 1.65;
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .eq-hero-grid,
    .eq-split {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .eq-hero h1 {
        font-size: 2.4rem;
    }

    .eq-split-img {
        order: -1;
    }
}

@media (max-width: 768px) {
    .eq-hero {
        padding: 130px 0 60px;
    }

    .eq-hero h1 {
        font-size: 2rem;
        text-align: center;
    }

    /* En móvil la segunda frase baja a su propia línea, separada de la pregunta */
    .eq-hero h1 span {
        display: block;
        margin-top: 0.6rem;
    }

    .eq-section {
        padding: 60px 0;
    }

    .eq-head h2 {
        font-size: 1.85rem;
    }

    .eq-cta-row {
        flex-direction: column;
        align-items: stretch;
    }

    .eq-cta-row .btn,
    .eq-cta-row .whatsapp-btn,
    .eq-cta-row .eq-btn-light {
        width: 100%;
        justify-content: center;
    }

    .eq-checklist {
        padding: 1.5rem;
    }

    .eq-wa-big {
        padding: 16px 24px;
        font-size: 1.05rem;
    }

    .eq-official {
        flex-direction: column;
    }
}
