  :root {
            --azul: #1a3358;
            --azul-mid: #254878;
            --azul-lt: #eef2f8;
            --rojo: #c0392b;
            --rojo-lt: #fdecea;
            --verde: #008f39;
            --bg: #f2f5fb;
            --card: #ffffff;
            --texto: #2d3748;
            --suave: #6b7280;
            --borde: rgba(26, 51, 88, 0.10);
            --sombra: 0 4px 24px rgba(26, 51, 88, 0.08);
            --sombra-h: 0 14px 40px rgba(26, 51, 88, 0.16);
            --r: 18px;
            --r-sm: 10px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        body {
            background: var(--bg);
            font-family: 'Sora', sans-serif;
            color: var(--texto);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            text-decoration: none;
        }

   
        .text-inicio {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--rojo);
            margin-bottom: 6px;
        }

        .text-inicio::before {
            content: '';
            width: 20px;
            height: 2px;
            background: var(--rojo);
            border-radius: 2px;
        }

        .section-inicio {
            font-family: 'DM Serif Display', serif;
            font-size: 30px;
            color: var(--azul);
            margin-bottom: 6px;
            line-height: 1.25;
        }

        .bar-inicio {
            width: 48px;
            height: 3px;
            background: linear-gradient(90deg, var(--rojo), var(--azul));
            border-radius: 3px;
            margin-bottom: 28px;
        }

        .page-section {
            padding: 64px 24px;
            max-width: 1180px;
            margin: 0 auto;
        }

       
        .fade-up {
            opacity: 0;
            transform: translateY(28px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

       
        .hero-inicio {
            padding: 24px 24px 0;
        }

        .hero-inicio .carousel {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra-h);
        }

        .hero-inicio .carousel img {
            width: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .carousel-item:hover img {
            transform: scale(1.01);
        }

        .aviso-wrap {
            padding: 40px 24px;
            max-width: 900px;
            margin: 0 auto;
        }

        .aviso-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            border-top: 4px solid var(--rojo);
            padding: 36px 40px;
            text-align: center;
            transition: transform .3s, box-shadow .3s;
        }

        .aviso-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra-h);
        }

        .aviso-icon {
            font-size: 36px;
            color: var(--rojo);
            margin-bottom: 14px;
        }

        .aviso-card h2 {
            font-family: 'DM Serif Display', serif;
            font-size: 22px;
            color: var(--azul);
            margin-bottom: 12px;
        }

        .aviso-card p {
            font-size: 14px;
            color: var(--suave);
            line-height: 1.75;
            margin-bottom: 22px;
            max-width: 580px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-aviso {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(90deg, var(--rojo), #e74c3c);
            color: #fff;
            padding: 13px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: all .3s;
            box-shadow: 0 4px 16px rgba(192, 57, 43, 0.25);
        }

        .btn-aviso:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(192, 57, 43, 0.35);
            color: #fff;
        }

        .banner-wrap {
            padding: 0 24px;
        }

        .banner-wrap img {
            width: 100%;
            border-radius: var(--r);
            box-shadow: var(--sombra);
            transition: transform .5s;
        }

        .banner-wrap img:hover {
            transform: scale(1.01);
        }

        .quick-section {
            padding: 56px 24px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .quick-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .quick-header p {
            font-size: 14px;
            color: var(--suave);
            margin-top: 6px;
        }

        .quick-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .quick-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            padding: 28px 20px;
            text-align: center;
            text-decoration: none;
            transition: transform .3s, box-shadow .3s;
            position: relative;
            overflow: hidden;
        }

        .quick-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--azul), var(--rojo));
        }

        .quick-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--sombra-h);
            text-decoration: none;
        }

        .quick-card img {
            width: 100px;
            margin: 0 auto 18px;
            transition: transform .3s;
        }

        .quick-card:hover img {
            transform: scale(1.1);
        }

        .quick-card h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--azul);
            margin: 0;
        }

 
        .avanzamos-banner {
            padding: 0 24px;
        }

        .avanzamos-banner img {
            width: 100%;
            border-radius: var(--r);
            box-shadow: var(--sombra);
        }

        .alianzas-wrap {
            max-width: 900px;
            margin: 0 auto;
            padding: 32px 24px 56px;
        }

        .alianzas-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            padding: 32px 40px;
            text-align: center;
            transition: transform .3s, box-shadow .3s;
        }

        .alianzas-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra-h);
        }

        .alianzas-card p {
            font-size: 15px;
            color: var(--suave);
            line-height: 1.85;
        }

      
        .qs-section {
            padding: 56px 24px;
            max-width: 1180px;
            margin: 0 auto;
        }

        .qs-banner {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra);
            margin-bottom: 32px;
        }

        .qs-banner img {
            width: 100%;
            transition: transform .5s;
        }

        .qs-banner:hover img {
            transform: scale(1.01);
        }

        .qs-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 40px;
            align-items: center;
            padding: 40px;
            transition: transform .3s, box-shadow .3s;
        }

        .qs-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra-h);
        }

        .qs-card img {
            width: 100%;
            border-radius: var(--r-sm);
            box-shadow: var(--sombra);
        }

        .qs-card p {
            font-size: 14px;
            color: var(--suave);
            line-height: 1.85;
            text-align: justify;
            margin-bottom: 22px;
        }

        .btn-outline-opys {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--azul);
            color: var(--azul);
            padding: 11px 26px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: all .3s;
        }

        .btn-outline-opys:hover {
            background: var(--azul);
            color: #fff;
        }

        .planta-section {
            padding: 0 24px 64px;
            max-width: 1180px;
            margin: 0 auto;
        }

        .planta-banner {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra);
            margin-bottom: 28px;
        }

        .planta-banner img {
            width: 100%;
            transition: transform .5s;
        }

        .planta-banner:hover img {
            transform: scale(1.01);
        }

        .planta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: center;
        }

   
        .showcase-wrap {
            position: relative;
            height: 460px;
        }

        .show-card {
            position: absolute;
            width: 200px;
            height: 300px;
            border-radius: 28px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
            transition: all .5s ease;
            cursor: pointer;
        }

        .show-card::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 51, 88, 0.6), transparent 60%);
        }

        .show-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .show-card:hover {
            transform: translateY(-16px) scale(1.03);
            z-index: 5;
        }

        .show-card:hover img {
            transform: scale(1.08);
        }

        .show-card .card-label {
            position: absolute;
            bottom: 20px;
            left: 20px;
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .sc1 {
            left: 0;
            top: 40px;
            z-index: 1;
        }

        .sc2 {
            left: 185px;
            top: 0;
            z-index: 3;
        }

        .sc3 {
            left: 370px;
            top: 60px;
            z-index: 2;
        }

        .planta-texto h3 {
            font-family: 'DM Serif Display', serif;
            font-size: 26px;
            color: var(--azul);
            margin-bottom: 16px;
        }

        .planta-texto p {
            font-size: 14px;
            color: var(--suave);
            line-height: 1.85;
            margin-bottom: 0;
        }

        .serv-section {
            background: #eaeff8;
            padding: 64px 24px;
        }

        .serv-inner {
            max-width: 1180px;
            margin: 0 auto;
        }

        .serv-header {
            margin-bottom: 36px;
        }

        .serv-banner {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra);
            margin-bottom: 36px;
        }

        .serv-banner img {
            width: 100%;
            transition: transform .5s;
        }

        .serv-banner:hover img {
            transform: scale(1.01);
        }

        .serv-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 22px;
        }

        .serv-card {
            background: var(--card);
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            transition: transform .3s, box-shadow .3s;
        }

        .serv-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--sombra-h);
        }

        .serv-card-img {
            position: relative;
            overflow: hidden;
            height: 220px;
        }

        .serv-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s;
        }

        .serv-card:hover .serv-card-img img {
            transform: scale(1.06);
        }

        .serv-card-img .serv-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(26, 51, 88, 0.5), transparent 60%);
            opacity: 0;
            transition: opacity .3s;
        }

        .serv-card:hover .serv-overlay {
            opacity: 1;
        }

        .serv-card-body {
            padding: 20px 22px;
        }

        .serv-card-body h5 {
            font-size: 14px;
            font-weight: 700;
            color: var(--azul);
            margin-bottom: 4px;
        }

        .serv-card-body span {
            font-size: 13px;
            color: var(--suave);
        }

        .contact-section {
            padding: 64px 24px;
            max-width: 1180px;
            margin: 0 auto;
        }

        .contact-banner {
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: var(--sombra);
            margin-bottom: 36px;
        }

        .contact-banner img {
            width: 100%;
            transition: transform .5s;
        }

        .contact-banner:hover img {
            transform: scale(1.01);
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
            align-items: start;
        }

        .contact-form-card {
            background: var(--card);
            border-radius: var(--r);
            box-shadow: var(--sombra);
            border: 1px solid var(--borde);
            overflow: hidden;
            transition: transform .3s, box-shadow .3s;
        }

        .contact-form-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--sombra-h);
        }

        .contact-form-head {
            background: linear-gradient(90deg, var(--rojo), #a93226);
            padding: 20px 28px;
        }

        .contact-form-head h3 {
            color: #fff;
            font-family: 'DM Serif Display', serif;
            font-size: 20px;
            margin: 0 0 3px;
        }

        .contact-form-head p {
            color: rgba(255, 255, 255, 0.60);
            font-size: 12px;
            margin: 0;
        }

        .contact-form-body {
            padding: 28px;
        }

        .f-label {
            display: block;
            font-size: 11px;
            font-weight: 600;
            color: var(--azul);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 7px;
        }

        .f-ctrl {
            width: 100%;
            padding: 11px 14px;
            border: 1.5px solid #dde3ed;
            border-radius: var(--r-sm);
            font-family: 'Sora', sans-serif;
            font-size: 14px;
            color: var(--texto);
            background: #f8fafc;
            transition: all .25s;
            outline: none;
            margin-bottom: 16px;
        }

        .f-ctrl:focus {
            border-color: var(--rojo);
            background: #fff;
            box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08);
        }

        .f-ctrl::placeholder {
            color: #a0aec0;
        }

        textarea.f-ctrl {
            resize: vertical;
            min-height: 90px;
        }

        .btn-enviar {
            display: block;
            width: 100%;
            padding: 13px;
            background: linear-gradient(90deg, var(--rojo), #e74c3c);
            color: #fff;
            border: none;
            border-radius: var(--r-sm);
            font-family: 'Sora', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all .3s;
            box-shadow: 0 4px 16px rgba(192, 57, 43, 0.22);
        }

        .btn-enviar:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(192, 57, 43, 0.32);
        }

      
        .contact-info-col {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .info-item {
            background: var(--card);
            border-radius: var(--r-sm);
            border: 1px solid var(--borde);
            box-shadow: var(--sombra);
            padding: 18px 20px;
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: transform .3s, box-shadow .3s;
        }

        .info-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--sombra-h);
        }

        .info-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            background: linear-gradient(135deg, var(--azul), var(--azul-mid));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
        }

        .info-content small {
            display: block;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--suave);
            margin-bottom: 4px;
        }

        .info-content p {
            font-size: 13px;
            font-weight: 500;
            color: var(--texto);
            margin: 0;
            line-height: 1.5;
        }

        .convenios-wrap {
            padding: 0 24px 32px;
        }

        .convenios-wrap img {
            width: 100%;
            border-radius: var(--r);
            box-shadow: var(--sombra);
        }

        .convenios-btn-wrap {
            text-align: center;
            margin-top: 20px;
        }

        .btn-convenios {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: 2px solid var(--azul);
            color: var(--azul);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            transition: all .3s;
        }

        .btn-convenios:hover {
            background: var(--azul);
            color: #fff;
        }

      
        .cierre-wrap {
            padding: 0 24px 64px;
        }

        .cierre-wrap img {
            width: 100%;
            border-radius: var(--r);
            box-shadow: var(--sombra);
        }

        /* =============================================
           WHATSAPP FLOTANTE
        ============================================= */
        .wa-fab {
            position: fixed;
            right: 20px;
            bottom: 90px;
            z-index: 1000;
        }

        .wa-fab a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 52px;
            height: 52px;
            background: #25d366;
            border-radius: 50%;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
            transition: transform .3s, box-shadow .3s;
        }

        .wa-fab a:hover {
            transform: scale(1.12);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.30);
        }

        .wa-fab a img {
            width: 28px;
            height: 28px;
            border-radius: 50%;
        }

        /* POPUP WA */
        .wa-box {
            position: fixed;
            right: 84px;
            bottom: 86px;
            width: 290px;
            background: #f4f6f8;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, .30);
            opacity: 0;
            pointer-events: none;
            transform: translateX(16px);
            transition: all .3s ease;
            z-index: 9999;
        }

        .wa-box.active {
            opacity: 1;
            pointer-events: auto;
            transform: translateX(0);
        }

        .wa-header {
            background: #25d366;
            color: #fff;
            padding: 13px 16px;
            border-radius: 16px 16px 0 0;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 14px;
        }

        .wa-close {
            cursor: pointer;
            font-size: 18px;
        }

        .wa-content {
            padding: 16px;
        }

        .wa-bubble {
            background: #fff;
            padding: 12px 14px;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, .10);
            margin-bottom: 14px;
            font-size: 14px;
            color: var(--texto);
        }

        .wa-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: #25d366;
            color: #fff;
            padding: 11px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 14px;
            text-decoration: none;
        }

        .wa-btn:hover {
            background: #1ebe5d;
            color: #fff;
        }

        .wa-btn img {
            width: 18px;
            height: 18px;
            border-radius: 50%;
        }

   
        .toast-ok {
            position: fixed;
            top: 24px;
            right: 24px;
            background: #22c55e;
            color: #fff;
            padding: 14px 20px;
            border-radius: var(--r-sm);
            font-weight: 600;
            font-size: 14px;
            opacity: 0;
            transform: translateY(-16px);
            transition: all .4s ease;
            z-index: 9999;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

        .toast-ok.show {
            opacity: 1;
            transform: translateY(0);
        }

        /* ACCESIBILIDAD */
        #accesibilidadBtn {
            position: fixed;
            left: 20px;
            bottom: 20px;
            width: 52px;
            height: 52px;
            background: var(--azul);
            color: #fff;
            font-size: 22px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 9999;
            box-shadow: 0 6px 20px rgba(26, 51, 88, 0.35);
            transition: background .3s, transform .2s;
        }

        #accesibilidadBtn:hover {
            background: var(--rojo);
            transform: scale(1.08);
        }

        #accesibilidadPanel {
            display: none;
            position: fixed;
            left: 20px;
            bottom: 84px;
            background: var(--card);
            border: 1px solid var(--borde);
            border-radius: var(--r-sm);
            padding: 18px;
            z-index: 9998;
            box-shadow: var(--sombra-h);
            min-width: 185px;
        }

        #accesibilidadPanel h4 {
            font-size: 11px;
            font-weight: 700;
            color: var(--azul);
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        #accesibilidadPanel button {
            display: block;
            width: 100%;
            background: var(--azul-lt);
            border: none;
            border-radius: 8px;
            padding: 9px 12px;
            margin-bottom: 8px;
            font-size: 13px;
            color: var(--azul);
            cursor: pointer;
            text-align: left;
            font-family: 'Sora', sans-serif;
            transition: background .2s;
            font-weight: 500;
        }

        #accesibilidadPanel button:hover {
            background: var(--azul);
            color: #fff;
        }

        #accesibilidadPanel button.activo {
            background: var(--rojo);
            color: #fff;
        }

       
        @media (max-width: 900px) {
            .quick-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .qs-card {
                grid-template-columns: 1fr;
            }

            .planta-grid {
                grid-template-columns: 1fr;
            }

            .showcase-wrap {
                height: 200px;
            }

            .show-card {
                width: 120px;
                height: 160px;
                border-radius: 14px;
            }

            .sc2 {
                left: 90px;
            }

            .sc3 {
                left: 185px;
            }

            .serv-grid {
                grid-template-columns: 1fr;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 600px) {
            .quick-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 14px;
            }

            .section-inicio {
                font-size: 24px;
            }
        }

      
        .divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--borde) 20%, var(--borde) 80%, transparent);
            max-width: 1100px;
            margin: 0 auto;
        }