/* ============================================================
   Servicio Tex Coco - Pemex  |  gasolinera/css/gasolinera.css
   Version 3.0
   ============================================================ */

/* Variables de color */
:root {
    --verde:        #1a7230;
    --verde-oscuro: #0f4d1f;
    --verde-claro:  #2a9e44;
    --rojo:         #c8102e;
    --rojo-oscuro:  #9e0c24;
    --blanco:       #ffffff;
    --fondo:        #f5f5f0;
    --texto:        #1a1a1a;
    --texto-medio:  #555555;
}

/* Reset base */
body.stc-page {
    margin: 0 !important;
    padding: 0 !important;
    font-family: 'Open Sans', sans-serif;
    background: var(--fondo);
    color: var(--texto);
}

body.stc-page * {
    box-sizing: border-box;
}

body.stc-page img {
    display: block;
    max-width: 100%;
}

/* Ocultar header del tema padre */
body.stc-page #masthead,
body.stc-page .site-header,
body.stc-page .ast-above-header-wrap,
body.stc-page .ast-primary-header-bar,
body.stc-page .main-header-bar,
body.stc-page header.site-header {
    display: none !important;
}

body.stc-page #page,
body.stc-page #content,
body.stc-page .site-content,
body.stc-page .ast-container,
body.stc-page main,
body.stc-page article,
body.stc-page .entry-content,
body.stc-page .hentry {
    margin: 0 !important;
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

body.stc-page.admin-bar .gx-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.stc-page.admin-bar .gx-nav {
        top: 46px;
    }
}


/* ──────────────────────────────────────────────
   NAVEGACION
────────────────────────────────────────────── */
.gx-nav {
    background: var(--verde-oscuro);
    height: 64px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.gx-logo {
    display: flex;
    align-items: center;
}

.gx-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.gx-nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    padding: 7px 12px;
    border-radius: 3px;
    transition: all 0.2s;
}

.gx-nav-links a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.gx-nav-fac {
    background: var(--rojo) !important;
    color: #ffffff !important;
}

.gx-nav-fac:hover {
    background: var(--rojo-oscuro) !important;
}

/* Hamburguesa (movil) */
.gx-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.gx-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
}

/* Menu movil */
.gx-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--verde-oscuro);
    z-index: 999;
    flex-direction: column;
    padding: 12px 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.gx-mobile-menu.abierto {
    display: flex;
}

.gx-mobile-menu a {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 14px 32px;
    display: block;
}

.gx-mobile-menu a:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
}


/* ──────────────────────────────────────────────
   PARALLAX BASE (usado en slider, precios y facturacion)
────────────────────────────────────────────── */
.gx-px-bg {
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    bottom: -120px;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateY(120px);
}

.gx-px-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


/* ──────────────────────────────────────────────
   SLIDER
────────────────────────────────────────────── */
.gx-slider {
    position: relative;
    height: 560px;
    overflow: hidden;
    background: var(--verde-oscuro);
}

.gx-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    display: flex;
    align-items: flex-end;
}

.gx-slide-active {
    opacity: 1;
}

.gx-slide-bg {
    position: absolute;
    top: -120px;
    left: 0;
    right: 0;
    bottom: -120px;
    background-size: cover;
    background-position: center;
    will-change: transform;
    transform: translateY(120px);
}

.gx-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(10, 40, 15, 0.85) 0%, rgba(10, 40, 15, 0.45) 55%, transparent 100%);
}

.gx-slide-content {
    position: relative;
    z-index: 2;
    padding: 0 56px 56px;
    max-width: 560px;
}

.gx-slide-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.gx-slide-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--rojo);
    flex-shrink: 0;
}

.gx-slide-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1;
    margin: 0 0 14px;
}

.gx-slide-titulo span,
.gx-slide-titulo em {
    color: #6dd67e;
    font-style: normal;
}

.gx-slide-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 24px;
}

.gx-slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--verde);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 26px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s;
}

.gx-slide-btn:hover {
    background: var(--verde-claro);
}

/* Flechas del slider */
.gx-prev,
.gx-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.gx-prev { left: 20px; }
.gx-next { right: 20px; }

.gx-prev:hover,
.gx-next:hover {
    background: var(--verde);
    border-color: var(--verde);
}

/* Puntos del slider */
.gx-dots {
    position: absolute;
    bottom: 18px;
    right: 28px;
    display: flex;
    gap: 7px;
    z-index: 5;
}

.gx-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.35s;
}

.gx-dot-active {
    background: #ffffff;
    width: 24px;
    border-radius: 4px;
}


/* ──────────────────────────────────────────────
   BARRA DE ESTADISTICAS
────────────────────────────────────────────── */
.gx-stats {
    background: var(--verde);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 32px;
    flex-wrap: wrap;
}

.gx-stat-item {
    text-align: center;
    color: #ffffff;
    flex: 1;
    min-width: 100px;
    max-width: 200px;
    padding: 8px 20px;
    position: relative;
}

.gx-stat-item + .gx-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.25);
}

.gx-stat-num {
    font-family: 'Montserrat', sans-serif;
    font-size: 28px;
    font-weight: 900;
}

.gx-stat-lbl {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    font-weight: 600;
    margin-top: 2px;
}


/* ──────────────────────────────────────────────
   SECCIONES: ESTILOS COMUNES
────────────────────────────────────────────── */
.gx-sec {
    padding: 64px 56px;
}

.gx-sec-header {
    margin-bottom: 36px;
}

.gx-center {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.gx-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--verde);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.gx-eyebrow::after {
    content: '';
    display: inline-block;
    width: 48px;
    height: 1px;
    background: var(--verde);
    opacity: 0.25;
}

.gx-center .gx-eyebrow {
    justify-content: center;
}

.gx-center .gx-eyebrow::after {
    display: none;
}

.gx-sec-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--texto);
    line-height: 1.1;
    margin: 0 0 8px;
}

.gx-sec-sub {
    font-size: 14px;
    color: var(--texto-medio);
    line-height: 1.6;
    margin: 0;
}


/* ──────────────────────────────────────────────
   SECCION 1: SERVICIOS
   3 tarjetas horizontales — foto arriba, texto abajo
────────────────────────────────────────────── */
.gx-sec-servicios {
    background: #ffffff;
}

.gx-svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
    margin-top: 8px;
}

.gx-svc-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
    transition: transform 0.3s, box-shadow 0.3s;
}

.gx-svc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.15);
}

.gx-svc-foto {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: var(--verde-oscuro);
}

.gx-svc-body {
    padding: 24px 22px 28px;
    border-top: 3px solid var(--verde);
}

.gx-svc-body h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--verde);
    letter-spacing: 0.5px;
    margin: 0 0 10px;
}

.gx-svc-body p {
    font-size: 13px;
    color: var(--texto-medio);
    line-height: 1.65;
    margin: 0;
}


/* ──────────────────────────────────────────────
   SECCION 2: PRECIOS (con parallax)
────────────────────────────────────────────── */
.gx-sec-precios {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.gx-precios-inner {
    position: relative;
    z-index: 2;
    padding: 64px 56px;
}

.gx-fuel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.gx-fuel-card {
    border-radius: 10px;
    padding: 28px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gx-fuel-hi {
    border-color: rgba(109, 214, 126, 0.45);
    background: rgba(109, 214, 126, 0.07);
}

.gx-fuel-nombre {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 10px;
}

.gx-fuel-precio {
    font-family: 'Montserrat', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #6dd67e;
    line-height: 1;
}

.gx-fuel-signo {
    font-size: 20px;
    vertical-align: top;
    margin-top: 7px;
    display: inline-block;
}

.gx-fuel-unidad {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.28);
    margin-top: 6px;
    letter-spacing: 0.8px;
}

.gx-fuel-badge {
    display: inline-block;
    margin-top: 12px;
    background: var(--rojo);
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 3px 12px;
    border-radius: 12px;
}

.gx-precios-nota {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.22);
    text-align: center;
    margin-top: 24px;
}


/* ──────────────────────────────────────────────
   SECCION 3: UBICACION
────────────────────────────────────────────── */
.gx-sec-ubicacion {
    background: var(--fondo);
}

.gx-ubic-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 24px;
    margin-top: 32px;
}

.gx-mapa {
    border-radius: 12px;
    overflow: hidden;
    height: 260px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: var(--verde-oscuro);
}

.gx-mapa iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.gx-mapa-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    text-align: center;
}

.gx-mapa-placeholder p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

.gx-mapa-placeholder strong {
    color: rgba(255, 255, 255, 0.85);
}

.gx-ubic-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.gx-horarios {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 10px;
    padding: 20px;
    flex: 1;
}

.gx-horarios-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--verde);
    margin-bottom: 14px;
}

.gx-horario-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 13px;
}

.gx-horario-row:last-child {
    border-bottom: none;
}

.gx-horario-row span:first-child {
    color: var(--texto-medio);
}

.gx-horario-row span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}

.gx-open {
    font-size: 9px;
    background: #e7f6eb;
    color: var(--verde);
    padding: 2px 8px;
    border-radius: 10px;
    font-weight: 700;
    border: 1px solid rgba(26, 114, 48, 0.2);
}

.gx-direccion {
    background: var(--verde);
    border-radius: 8px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gx-direccion svg {
    flex-shrink: 0;
}

.gx-direccion p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin: 0;
}

.gx-nav-btns {
    display: flex;
    gap: 10px;
}

.gx-btn-waze,
.gx-btn-gmaps {
    flex: 1;
    display: block;
    text-align: center;
    padding: 11px 14px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.gx-btn-waze  { background: #05c8f7; color: #000000; }
.gx-btn-gmaps { background: var(--verde); color: #ffffff; }

.gx-btn-waze:hover,
.gx-btn-gmaps:hover { opacity: 0.85; }


/* ──────────────────────────────────────────────
   SECCION 4: FACTURACION (con parallax)
────────────────────────────────────────────── */
.gx-sec-facturacion {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.gx-fac-inner {
    position: relative;
    z-index: 2;
    padding: 64px 56px;
}

.gx-fac-layout {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.gx-fac-lista {
    flex: 1;
    min-width: 240px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.gx-fac-lista li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.gx-fac-lista li::before {
    content: '✓';
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.gx-fac-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.gx-fac-btn {
    background: #ffffff;
    color: var(--rojo);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 32px;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: opacity 0.2s;
    white-space: nowrap;
}

.gx-fac-btn:hover { opacity: 0.92; }

.gx-fac-nota {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}


/* ──────────────────────────────────────────────
   FOOTER
────────────────────────────────────────────── */
.gx-footer {
    background: #071409;
    padding: 28px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.gx-footer-logo p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    margin: 6px 0 0;
}

.gx-footer-info {
    text-align: right;
}

.gx-footer-info p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 4px;
}

.gx-footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2) !important;
    margin-top: 8px !important;
}


/* ──────────────────────────────────────────────
   RESPONSIVE — Tablet (max 900px)
────────────────────────────────────────────── */
@media ( max-width: 900px ) {

    .gx-nav { padding: 0 28px; }
    .gx-sec { padding: 48px 32px; }
    .gx-slider { height: 460px; }
    .gx-slide-titulo { font-size: 42px; }
    .gx-slide-content { padding: 0 36px 44px; }
    .gx-svc-grid { grid-template-columns: 1fr 1fr; }
    .gx-fuel-grid { grid-template-columns: repeat(3, 1fr); }
    .gx-precios-inner { padding: 48px 32px; }
    .gx-fac-inner { padding: 48px 32px; }
    .gx-footer { padding: 24px 32px; }

}


/* ──────────────────────────────────────────────
   RESPONSIVE — Movil (max 640px)
────────────────────────────────────────────── */
@media ( max-width: 640px ) {

    .gx-nav { padding: 0 20px; }
    .gx-nav-links { display: none; }
    .gx-hamburger { display: flex; }
    .gx-sec { padding: 36px 20px; }
    .gx-slider { height: 380px; }
    .gx-slide-titulo { font-size: 32px; }
    .gx-slide-content { padding: 0 24px 36px; }
    .gx-svc-grid { grid-template-columns: 1fr; }
    .gx-svc-foto { height: 180px; }
    .gx-fuel-grid { grid-template-columns: 1fr; }
    .gx-ubic-grid { grid-template-columns: 1fr; }
    .gx-fac-layout { flex-direction: column; }
    .gx-precios-inner { padding: 36px 20px; }
    .gx-fac-inner { padding: 36px 20px; }
    .gx-stats { gap: 0; }
    .gx-footer { padding: 20px; flex-direction: column; text-align: center; }
    .gx-footer-info { text-align: center; }

}

/* ══════════════════════════════════════════════
   MODAL DE FACTURACIÓN
   Agregar al final de gasolinera/css/gasolinera.css
══════════════════════════════════════════════ */

/* Fondo oscuro */
.gx-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.65);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gx-modal-backdrop.abierto {
    opacity: 1;
    visibility: visible;
}

/* Cuadro de diálogo */
.gx-modal {
    background: #ffffff;
    border-radius: 14px;
    max-width: 560px;
    width: 100%;
    padding: 40px 40px 36px;
    position: relative;
    transform: scale(0.85);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25);
}

.gx-modal-backdrop.abierto .gx-modal {
    transform: scale(1);
    opacity: 1;
}

/* Franja verde superior */
.gx-modal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(to right, #1a7230, #2a9e44);
    border-radius: 14px 14px 0 0;
}

/* Botón cerrar X */
.gx-modal-cerrar {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f5f5f0;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
}

.gx-modal-cerrar:hover {
    background: #e0e0e0;
    color: #1a1a1a;
}

/* Icono superior */
.gx-modal-icono {
    width: 52px;
    height: 52px;
    background: #e7f6eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.gx-modal-icono svg {
    width: 26px;
    height: 26px;
    stroke: #1a7230;
    fill: none;
    stroke-width: 2;
}

/* Título */
.gx-modal-titulo {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #1a1a1a;
    text-transform: uppercase;
    margin: 0 0 10px;
    line-height: 1.2;
}

/* Texto editable del modal */
.gx-modal-texto {
    font-size: 14px;
    color: #555;
    line-height: 1.75;
    margin: 0 0 28px;
}

.gx-modal-texto p    { margin: 0 0 10px; }
.gx-modal-texto p:last-child { margin: 0; }
.gx-modal-texto ul   { padding-left: 20px; margin: 8px 0; }
.gx-modal-texto li   { margin-bottom: 5px; }
.gx-modal-texto strong { color: #1a1a1a; font-weight: 700; }

/* Botones */
.gx-modal-footer {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.gx-modal-btn-abrir {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #1a7230;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 24px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    white-space: nowrap;
}

.gx-modal-btn-abrir:hover {
    background: #2a9e44;
}

.gx-modal-btn-abrir svg {
    width: 14px;
    height: 14px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
}

.gx-modal-btn-cancelar {
    background: none;
    border: 1px solid #ddd;
    color: #888;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 14px 20px;
    border-radius: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s;
    white-space: nowrap;
}

.gx-modal-btn-cancelar:hover {
    border-color: #bbb;
    color: #555;
}

@media (max-width: 480px) {
    .gx-modal { padding: 32px 24px 28px; }
    .gx-modal-titulo { font-size: 18px; }
    .gx-modal-footer { flex-direction: column; }
    .gx-modal-btn-abrir,
    .gx-modal-btn-cancelar { width: 100%; text-align: center; }
}
