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

    :root {
        --verde: #6BBF54;
        --verde-osc: #4b8c3a;
        --verde-med: #1D9E75;
        --verde-clr: #E8F5E1;
        --gris-txt: #2C2C2A;
        --gris-med: #5F5E5A;
        --gris-clr: #E8F5E1;
        --blanco: #fff;
    }

    html {
        scroll-behavior: smooth
    }

    body {
        font-family: 'Barlow', sans-serif;
        color: var(--gris-txt);
        background: #fff;
        overflow-x: hidden
    }

    /* ── NAV ── */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 200;
        /* background: rgba(8, 80, 65, 0.97); */
        background: var(--verde);
        backdrop-filter: blur(8px);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        height: 64px
    }

    .nav-logo img {
        height: 75px;
        filter: brightness(0) invert(1)
    }

    .nav-links {
        display: flex;
        gap: 28px;
        list-style: none
    }

    .nav-links a {
        color: rgba(255, 255, 255, .85);
        text-decoration: none;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: .06em;
        text-transform: uppercase;
        transition: color .2s
    }

    .nav-links a:hover {
        color: #fff
    }

    .nav-cta {
        background: var(--verde-osc) !important;
        color: #fff !important;
        padding: 8px 18px;
        border-radius: 4px
    }

    .nav-cta:hover {
        background: var(--verde-med) !important;
        color: #fff !important;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px
    }

    .hamburger span {
        width: 24px;
        height: 2px;
        background: #fff;
        border-radius: 2px;
        transition: all .3s
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        width: 100%;
        background: var(--verde-osc);
        padding: 24px 5%;
        z-index: 199;
        flex-direction: column
    }

    .mobile-menu a {
        color: #fff;
        text-decoration: none;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        font-weight: 600;
        text-transform: uppercase;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        display: block
    }

    .mobile-menu.open {
        display: flex
    }

    /* ── HERO ── */
    #inicio {
        min-height: 100vh;
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
        padding-top: 64px
    }

    .hero-slideshow {
        position: absolute;
        inset: 0;
        z-index: 0
    }

    .hero-slide {
        position: absolute;
        inset: 0;
        background-size: cover;
        background-position: center;
        opacity: 0;
        transition: opacity 1.4s ease-in-out
    }

    .hero-slide.active {
        opacity: 1
    }

    .hero-slide-placeholder {
        position: absolute;
        inset: 0;
        background: var(--verde-osc)
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        /* background: linear-gradient(135deg, rgba(8, 80, 65, .88) 0%, rgba(8, 80, 65, .65) 100%); */
        background: linear-gradient(135deg, rgb(8 80 65 / 65%) 0%, rgb(8 80 65 / 50%) 100%);
        z-index: 1
    }

    .hero-pattern-lines {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: .04;
        background-image: repeating-linear-gradient(45deg, #fff 0, #fff 1px, transparent 0, transparent 50%);
        background-size: 20px 20px
    }

    .hero-inner {
        position: relative;
        z-index: 2;
        max-width: 1100px;
        margin: 0 auto;
        padding: 80px 5%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center
    }

    .hero-badge {
        display: inline-block;
        background: rgba(107, 191, 84, .7);
        border: 1px solid rgba(107, 191, 84, .7);
        color: #b8f0a0;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: .12em;
        text-transform: uppercase;
        padding: 6px 14px;
        border-radius: 3px;
        margin-bottom: 24px
    }

    .hero-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: clamp(42px, 6vw, 72px);
        font-weight: 800;
        line-height: 1.05;
        color: #fff;
        margin-bottom: 20px
    }

    .hero-title span {
        color: var(--verde)
    }

    .hero-sub {
        font-size: 17px;
        color: rgba(255, 255, 255, .78);
        line-height: 1.7;
        margin-bottom: 36px;
        max-width: 480px
    }

    .hero-btns {
        display: flex;
        gap: 14px;
        flex-wrap: wrap
    }

    .btn-primary {
        background: var(--verde);
        color: #fff;
        padding: 14px 28px;
        border-radius: 4px;
        text-decoration: none;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 17px;
        font-weight: 700;
        letter-spacing: .04em;
        text-transform: uppercase;
        transition: background .2s;
        display: inline-flex;
        align-items: center;
        gap: 8px
    }

    .btn-primary:hover {
        background: #5aaa45
    }

    .btn-outline {
        border: 2px solid rgba(255, 255, 255, .45);
        color: #fff;
        padding: 14px 28px;
        border-radius: 4px;
        text-decoration: none;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 17px;
        font-weight: 700;
        text-transform: uppercase;
        transition: all .2s
    }

    .btn-outline:hover {
        border-color: #fff;
        background: rgba(255, 255, 255, .08)
    }

    .hero-cards {
        display: flex;
        flex-direction: column;
        gap: 16px
    }

    .hero-card {
        background: rgba(255, 255, 255, 0.35);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 10px;
        padding: 20px 22px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: transform .2s, background .2s
    }

    .hero-card:hover {
        background: rgba(255, 255, 255, .11);
        transform: translateX(4px)
    }

    .hero-card-icon {
        width: 46px;
        height: 46px;
        background: var(--verde);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0
    }

    .hero-card h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        font-weight: 700;
        color: #fff
    }

    .hero-card p {
        font-size: 13px;
        color: rgb(255, 255, 255);
        margin-top: 3px
    }

    .hero-stats {
        display: flex;
        gap: 32px;
        margin-top: 40px;
        padding-top: 32px;
        border-top: 1px solid rgba(255, 255, 255, .25)
    }

    .stat-num {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 36px;
        font-weight: 800;
        color: var(--verde);
        line-height: 1
    }

    .stat-lbl {
        font-size: 12px;
        color: rgb(255, 255, 255);
        margin-top: 4px;
        text-transform: uppercase;
        letter-spacing: .06em
    }

    .hero-dots {
        position: absolute;
        bottom: 28px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
        display: flex;
        gap: 8px
    }

    .hero-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .35);
        cursor: pointer;
        transition: background .3s, transform .3s
    }

    .hero-dot.active {
        background: var(--verde);
        transform: scale(1.3)
    }

    /* ── SECCIONES ── */
    section {
        padding: 90px 5%
    }

    .container {
        max-width: 1100px;
        margin: 0 auto
    }

    .sec-label {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: .14em;
        text-transform: uppercase;
        color: var(--verde);
        margin-bottom: 12px
    }

    .sec-title {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: clamp(30px, 5vw, 50px);
        font-weight: 800;
        line-height: 1.1;
        color: var(--gris-txt);
        margin-bottom: 16px
    }

    .sec-title span {
        color: var(--verde)
    }

    .sec-sub {
        font-size: 17px;
        color: var(--gris-med);
        line-height: 1.7;
        max-width: 600px;
        margin-bottom: 52px
    }

    /* ── SERVICIOS ── */
    #servicios {
        background: var(--gris-clr)
    }

    .materiales-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
        margin-bottom: 64px
    }

    .material-card {
        background: #fff;
        border-radius: 12px;
        padding: 28px 24px;
        border: 1px solid #e0ddd6;
        transition: transform .2s, box-shadow .2s;
        position: relative;
        overflow: hidden
    }

    .material-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 100%;
        background: var(--verde)
    }

    .material-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(0, 0, 0, .08)
    }

    .material-icon {
        font-size: 32px;
        margin-bottom: 14px
    }

    .material-card h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 8px
    }

    .material-card p {
        font-size: 14px;
        color: var(--gris-med);
        line-height: 1.6
    }

    .pasos {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        position: relative
    }

    .pasos::before {
        content: '';
        position: absolute;
        top: 28px;
        left: 16%;
        right: 16%;
        height: 4px;
        background: var(--verde);
        opacity: .5
    }

    .paso {
        text-align: center;
        position: relative;
        z-index: 1
    }

    .paso-num {
        width: 56px;
        height: 56px;
        background: var(--verde);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 24px;
        font-weight: 800;
        color: #fff;
        margin: 0 auto 16px
    }

    .paso h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 8px
    }

    .paso p {
        font-size: 14px;
        color: var(--gris-med);
        line-height: 1.6
    }

    /* ── POR QUÉ ── */
    #porque {
        background: #fff
    }

    .ventajas-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px
    }

    .ventaja-card {
        background: var(--gris-clr);
        border-radius: 12px;
        padding: 24px;
        display: flex;
        gap: 16px;
        align-items: flex-start
    }

    .ventaja-icon {
        width: 46px;
        height: 46px;
        background: var(--verde-clr);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        flex-shrink: 0
    }

    .ventaja-card h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        font-weight: 700;
        margin-bottom: 6px
    }

    .ventaja-card p {
        font-size: 14px;
        color: var(--gris-med);
        line-height: 1.6
    }

    /* ── NOSOTROS ── */
    #nosotros {
        background: var(--verde-osc)
    }

    #nosotros .sec-label {
        color: #b8f0a0
    }

    #nosotros .sec-title {
        color: #fff
    }

    .nosotros-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center
    }

    .nosotros-texto p {
        font-size: 18px;
        color: rgba(255, 255, 255, .8);
        line-height: 1.8;
        margin-bottom: 18px
    }

    .nosotros-dato {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .nosotros-dato:last-child {
        border-bottom: none
    }

    .nosotros-dato span:first-child {
        font-size: 12px;
        color: rgba(255, 255, 255, .45);
        text-transform: uppercase;
        letter-spacing: .06em;
        min-width: 120px
    }

    .nosotros-dato span:last-child {
        color: #fff;
        font-size: 15px
    }

    .nosotros-foto {
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, .35);
        font-size: 14px;
        text-align: center;
        padding: 10px
    }

    .nosotros-foto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 14px;
    }

    /* ── ACREDITADOS ── */
    #acreditados {
        background: var(--blanco)
    }

    .acreditados-inner {
        display: grid;
        grid-template-columns: auto 1fr;
        column-gap: 60px;
        align-items: center;
        justify-content: center;
    }

    .acreditados-texto p {
        font-size: 18px;
        color: var(--gris-txt);
        line-height: 1.8;
        margin-bottom: 18px;
        text-align: justify;
    }

    .acreditados-textos strong {
        color: var(--verde);
        font-weight: 600;
    }

    /* Imagen de autorización con animación de sello */
    .acreditados-sello {
        /* grid-column: 2;
        grid-row: 1 / 3; */
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 240px;
        height: 240px;
        margin-top: 0;
        /* margin-left: 60px; */
        border-radius: 50%;
        overflow: hidden;
        /* background: #f8f9fa; */
        text-align: center;
    }

    .acreditados-sello img {
        width: 90%;
        height: 90%;
        object-fit: cover;
        border-radius: 50%;
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
        animation: selloPulso 2.5s ease-in-out infinite;
    }

    @keyframes selloPulso {
        0% {
            transform: scale(1) rotate(0deg);
        }

        50% {
            transform: scale(1.08) rotate(-3deg);
        }

        100% {
            transform: scale(1) rotate(0deg);
        }
    }

    /* Grid de tarjetas acreditadas */
    .acreditados-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 32px;
        justify-items: center;
        /* margin-top: 48px; */
    }

    .acreditado-card {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 24px;
        background: #fff;
        border-radius: 12px;
        /* border: 1px solid #e8e8e8; */
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        overflow: hidden;
        position: relative;
        width: 100%;
        max-width: 320px;
        aspect-ratio: 1.4 / 1;
    }

    .acreditado-card img {
        width: 85%;
        height: auto;
        filter: grayscale(40%);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Efecto hover: brillo + color */
    .acreditado-card:hover {
        border-color: var(--verde);
        box-shadow: 0 12px 36px rgba(46, 184, 92, 0.15);
        transform: translateY(-4px);
    }

    .acreditado-card:hover img {
        filter: grayscale(0%) brightness(1.15) drop-shadow(0 0 12px rgba(46, 184, 92, 0.25));
    }

    /* ── GALERÍA ── */
    #galeria {
        background: var(--verde-clr);
    }

    /* ── CARRUSEL MÓVIL GALERÍA ── */
    .galeria-carousel-wrapper {
        display: none;
        position: relative;
        width: 100%;
        margin-bottom: 48px;
    }

    .galeria-carousel {
        position: relative;
        width: 100%;
        aspect-ratio: 1;
        overflow: hidden;
        border-radius: 12px;
        background: #f0f0f0;
    }

    .carousel-item {
        position: absolute;
        inset: 0;
        opacity: 0;
        transition: opacity 0.5s ease;
    }

    .carousel-item.active {
        opacity: 1;
    }

    .carousel-item img,
    .carousel-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background: rgba(0, 0, 0, 0.5);
        border: none;
        color: #fff;
        font-size: 28px;
        width: 48px;
        height: 48px;
        border-radius: 4px;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

    .carousel-btn:hover {
        background: rgba(0, 0, 0, 0.8);
    }

    .carousel-prev {
        left: 12px;
    }

    .carousel-next {
        right: 12px;
    }

    .carousel-dots {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 8px;
        z-index: 10;
    }

    .carousel-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .carousel-dot.active {
        background: #fff;
    }

    .galeria-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
        margin-bottom: 48px;
    }

    .galeria-item {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        aspect-ratio: 1;
        display: block;
        cursor: pointer;
    }

    .galeria-item img,
    .galeria-item video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
    }

    .galeria-item:hover img,
    .galeria-item:hover video {
        transform: scale(1.08);
    }

    .galeria-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 42px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .galeria-item:hover .galeria-overlay {
        opacity: 1;
    }

    .galeria-empty {
        text-align: center;
        padding: 60px 20px;
        color: var(--gris-med);
        font-size: 18px;
        background: #f8f9fa;
        border-radius: 12px;
    }

    /* ── CONTROLES PAGINACIÓN ── */
    #galeria-paginacion {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 16px;
        padding: 32px 0;
        margin-top: 40px;
    }

    .gal-btn-pag {
        background: var(--verde);
        color: #fff;
        border: none;
        padding: 10px 18px;
        border-radius: 6px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .gal-btn-pag:hover:not(.disabled) {
        background: var(--verde-osc);
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(46, 184, 92, 0.3);
    }

    .gal-btn-pag.disabled {
        background: #ccc;
        cursor: not-allowed;
        opacity: 0.5;
    }

    .gal-numeros-pag {
        display: flex;
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gal-num-pag {
        width: 40px;
        height: 40px;
        border: 2px solid var(--verde);
        background: var(--verde-clr);
        color: var(--verde);
        border-radius: 6px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .gal-num-pag:hover {
        background: var(--verde-clr);
    }

    .gal-num-pag.activa {
        background: var(--verde);
        color: #fff;
        font-weight: 800;
    }

    .gal-info-pag {
        font-size: 14px;
        color: var(--gris-med);
        width: 100%;
        text-align: center;
        margin-top: 8px;
    }

    /* Responsive */

    /* ── TESTIMONIOS ── */
    #testimonios {
        background: #fff
    }

    .testi-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px
    }

    .testi-card {
        background: var(--gris-clr);
        border-radius: 12px;
        padding: 28px 24px;
        position: relative
    }

    .testi-quote {
        font-size: 90px;
        line-height: 1;
        color: var(--verde);
        font-family: Georgia, serif;
        position: absolute;
        top: 14px;
        left: 18px;
        opacity: .25
    }

    .testi-texto {
        font-size: 15px;
        color: var(--gris-txt);
        line-height: 1.7;
        font-style: italic;
        margin-top: 30px;
        margin-bottom: 18px
    }

    .testi-autor {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 15px;
        font-weight: 700
    }

    .testi-cargo {
        font-size: 12px;
        color: var(--gris-med);
        margin-top: 2px
    }

    /* ── COBERTURA ── */
    #cobertura {
        background: var(--gris-clr)
    }

    .cobertura-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 48px;
        align-items: center
    }

    .cobertura-mapa {
        border-radius: 14px;
        overflow: hidden;
        aspect-ratio: 4/3;
        background: #c8e6da;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        color: var(--verde-osc);
        font-size: 14px;
        text-align: center;
        padding: 10px;
        border: 2px dashed var(--verde)
    }

    .cobertura-mapa iframe {
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 14px;
    }

    .zona-lista {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 28px
    }

    .zona-lista li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 16px
    }

    .zona-dot {
        width: 10px;
        height: 10px;
        background: var(--verde);
        border-radius: 50%;
        flex-shrink: 0
    }

    /* ── CONTACTO ── */
    #contacto {
        background: var(--verde-osc)
    }

    #contacto .sec-label {
        color: #b8f0a0
    }

    #contacto .sec-title {
        color: #fff;
        margin-bottom: 52px
    }

    .contacto-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 52px;
        align-items: start
    }

    .contacto-info p {
        font-size: 16px;
        color: rgba(255, 255, 255, .75);
        line-height: 1.7;
        margin-bottom: 28px
    }

    .dato-contacto {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 14px 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .dato-contacto:last-of-type {
        border-bottom: none
    }

    .dato-icon {
        width: 42px;
        height: 42px;
        background: rgba(107, 191, 84, .2);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        flex-shrink: 0
    }

    .dato-contacto span {
        font-size: 15px;
        color: #fff
    }

    .dato-contacto small {
        font-size: 12px;
        color: rgba(255, 255, 255, .45);
        display: block;
        margin-top: 2px
    }

    .form-card {
        background: #fff;
        border-radius: 14px;
        padding: 34px 30px
    }

    .form-card h3 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 22px;
        font-weight: 700;
        color: var(--gris-txt);
        margin-bottom: 22px
    }

    .form-group {
        margin-bottom: 16px
    }

    .form-group label {
        font-size: 12px;
        font-weight: 700;
        color: var(--gris-med);
        text-transform: uppercase;
        letter-spacing: .06em;
        display: block;
        margin-bottom: 6px
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 11px 13px;
        border: 1.5px solid #e0ddd6;
        border-radius: 6px;
        font-family: 'Barlow', sans-serif;
        font-size: 15px;
        color: var(--gris-txt);
        transition: border .2s;
        outline: none
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--verde)
    }

    .form-group textarea {
        resize: vertical;
        min-height: 100px
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px
    }

    .btn-form {
        width: 100%;
        background: var(--verde-osc);
        color: #fff;
        padding: 14px;
        border: none;
        border-radius: 6px;
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        cursor: pointer;
        transition: background .2s;
        margin-top: 6px
    }

    .btn-form:hover {
        background: var(--verde)
    }

    .btn-form:disabled {
        background: #aaa;
        cursor: not-allowed
    }

    .form-aviso {
        font-size: 12px;
        color: var(--gris-med);
        text-align: center;
        margin-top: 10px
    }

    .form-msg {
        display: none;
        padding: 12px 16px;
        border-radius: 6px;
        margin-top: 14px;
        font-size: 14px;
        font-weight: 600;
        text-align: center
    }

    .form-msg.ok {
        background: #E8F5E1;
        color: #2d6a1a;
        border: 1px solid var(--verde)
    }

    .form-msg.error {
        background: #FCEBEB;
        color: #A32D2D;
        border: 1px solid #E24B4A
    }

    /* ── FOOTER ── */
    footer {
        background: #414141;
        color: #fff;
        padding: 48px 5% 24px
    }

    .footer-inner {
        max-width: 1100px;
        margin: 0 auto
    }

    .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 36px;
        border-bottom: 1px solid rgba(255, 255, 255, .1)
    }

    .footer-brand img {
        height: 75px;
        filter: brightness(0) invert(1);
        margin-bottom: 14px;
        display: block
    }

    .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, .45);
        line-height: 1.7;
        max-width: 280px
    }

    .footer-col h4 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, .35);
        margin-bottom: 14px
    }

    .footer-col a {
        display: block;
        font-size: 14px;
        color: rgba(255, 255, 255, .6);
        text-decoration: none;
        margin-bottom: 9px;
        transition: color .2s
    }

    .footer-col a:hover {
        color: #fff
    }

    .footer-rrss {
        display: flex;
        gap: 10px;
        margin-top: 18px
    }

    .rrss-btn {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: opacity .2s
    }

    .rrss-btn:hover {
        opacity: .8
    }

    .rrss-fb {
        background: #1877F2
    }

    .rrss-tt {
        background: #000
    }

    .rrss-yt {
        background: #FF0000
    }

    .footer-bottom {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 22px;
        flex-wrap: wrap;
        gap: 10px
    }

    .footer-bottom p {
        font-size: 13px;
        color: rgba(255, 255, 255, .3)
    }

    .footer-bottom p a {
        font-size: 13px;
        color: rgba(255, 255, 255, .3)
    }

    /* ── WHATSAPP ── */
    .whatsapp-fab {
        position: fixed;
        bottom: 28px;
        right: 28px;
        z-index: 999;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        gap: 10px
    }

    .whatsapp-btn {
        width: 58px;
        height: 58px;
        background: #25D366;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(37, 211, 102, .4);
        transition: transform .2s
    }

    .whatsapp-btn:hover {
        transform: scale(1.1)
    }

    .whatsapp-tooltip {
        background: var(--verde-osc);
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        padding: 7px 13px;
        border-radius: 8px;
        white-space: nowrap;
        opacity: 0;
        transform: translateX(8px);
        transition: all .25s;
        pointer-events: none
    }

    .whatsapp-fab:hover .whatsapp-tooltip {
        opacity: 1;
        transform: translateX(0)
    }

    /* ── ANIMACIONES ── */
    .fade-up {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .6s ease, transform .6s ease
    }

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

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

        .hero-inner,
        .nosotros-inner,
        .contacto-inner,
        .acreditados-inner,
        .cobertura-inner {
            grid-template-columns: 1fr
        }

        .acreditados-sello {
            margin: 30px 0;
            height: 160px;
            width: 160px
        }

        .hero-cards {
            display: none
        }

        .pasos {
            grid-template-columns: 1fr;
            gap: 28px
        }

        .pasos::before {
            display: none
        }

        .testi-grid {
            grid-template-columns: 1fr
        }

        .galeria-carousel-wrapper {
            display: none !important
        }

        .galeria-grid {
            display: grid !important;
            grid-template-columns: 1fr 1fr
        }

        #galeria-paginacion {
            display: flex !important
        }

        .footer-top {
            grid-template-columns: 1fr 1fr
        }

        .form-row {
            grid-template-columns: 1fr
        }
    }

    @media(max-width:768px) {
        .nav-links {
            display: none
        }

        .hamburger {
            display: flex
        }

        section {
            padding: 64px 5%
        }

        .galeria-carousel-wrapper {
            display: block !important
        }

        .galeria-grid {
            display: none !important
        }

        #galeria-paginacion {
            display: none !important
        }

        .footer-top {
            grid-template-columns: 1fr
        }

        .footer-bottom {
            flex-direction: column;
            text-align: center
        }

        .form-card {
            padding: 24px 18px
        }
    }

    /* ── ENCUESTA DE SATISFACCIÓN ── */
    .encuesta-modal {
        display: none;
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: var(--blanco);
        border-radius: 8px;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        padding: 24px;
        width: 320px;
        z-index: 150;
        animation: slideUp 0.3s ease-out;
    }

    .encuesta-modal.show {
        display: block;
    }

    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .encuesta-modal .close-btn {
        position: absolute;
        top: 12px;
        right: 12px;
        background: none;
        border: none;
        font-size: 20px;
        cursor: pointer;
        color: var(--gris-txt);
    }

    .encuesta-modal h3 {
        margin-bottom: 16px;
        color: var(--gris-txt);
        font-size: 16px;
        font-weight: 600;
    }

    .encuesta-question {
        margin-bottom: 20px;
    }

    .encuesta-question label {
        display: block;
        font-size: 13px;
        font-weight: 500;
        margin-bottom: 10px;
        color: var(--gris-med);
    }

    .stars-rating {
        display: flex;
        gap: 8px;
        justify-content: flex-start;
    }

    .star {
        font-size: 28px;
        cursor: pointer;
        color: #ddd;
        transition: all 0.2s;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    }

    .star:hover,
    .star.active {
        color: var(--verde);
        transform: scale(1.2);
    }

    .encuesta-textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-family: 'Barlow', sans-serif;
        font-size: 13px;
        resize: vertical;
        min-height: 60px;
        border-color: var(--verde-clr);
    }

    .encuesta-textarea:focus {
        outline: none;
        border-color: var(--verde);
        box-shadow: 0 0 0 3px rgba(107, 191, 84, 0.1);
    }

    .encuesta-btn {
        width: 100%;
        padding: 12px;
        background: var(--verde);
        color: white;
        border: none;
        border-radius: 4px;
        font-weight: 600;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.3s;
        margin-top: 12px;
    }

    .encuesta-btn:hover {
        background: var(--verde-osc);
    }

    .encuesta-btn:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .encuesta-msg {
        display: none;
        padding: 10px;
        border-radius: 4px;
        font-size: 13px;
        margin-top: 10px;
        text-align: center;
    }

    .encuesta-msg.ok {
        background: rgba(107, 191, 84, 0.2);
        color: var(--verde-osc);
    }

    .encuesta-msg.error {
        background: rgba(220, 53, 69, 0.2);
        color: #d9534f;
    }

    /* ── SECCIÓN DE ENCUESTA ── */
    #encuesta-seccion {
        background: linear-gradient(135deg, var(--verde-clr) 0%, rgba(107, 191, 84, 0.05) 100%);
        padding: 60px 5%;
    }

    .encuesta-container {
        max-width: 900px;
        margin: 0 auto;
    }

    .encuesta-header {
        text-align: center;
        margin-bottom: 48px;
    }

    .encuesta-header h2 {
        font-size: 36px;
        font-weight: 700;
        color: var(--gris-txt);
        margin-bottom: 12px;
        letter-spacing: -0.02em;
    }

    .encuesta-header p {
        color: var(--gris-med);
        font-size: 15px;
        line-height: 1.6;
    }

    .encuesta-cards {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .encuesta-card {
        background: white;
        padding: 32px;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s, box-shadow 0.3s;
    }

    .encuesta-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    .encuesta-card h3 {
        font-size: 16px;
        font-weight: 600;
        color: var(--gris-txt);
        margin-bottom: 20px;
    }

    .encuesta-card .stars-rating {
        gap: 12px;
        margin-bottom: 16px;
    }

    .encuesta-card .star {
        font-size: 32px;
    }

    .stars-value {
        display: inline-block;
        font-size: 13px;
        color: var(--gris-med);
        margin-top: 8px;
    }

    .encuesta-form-section {
        background: white;
        padding: 32px;
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    }

    .encuesta-form-section h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--gris-txt);
        margin-bottom: 24px;
        text-align: center;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        margin-bottom: 24px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 13px;
        font-weight: 600;
        color: var(--gris-txt);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .stars-input {
        display: flex;
        gap: 12px;
    }

    .stars-input .star {
        font-size: 32px;
    }

    .encuesta-form-section textarea {
        width: 100%;
        grid-column: 1 / -1;
        padding: 12px;
        border: 1px solid #e0e0e0;
        border-radius: 4px;
        font-family: 'Barlow', sans-serif;
        font-size: 14px;
        resize: vertical;
        min-height: 100px;
        margin-bottom: 24px;
    }

    .encuesta-form-section textarea:focus {
        outline: none;
        border-color: var(--verde);
        box-shadow: 0 0 0 3px rgba(107, 191, 84, 0.1);
    }

    .encuesta-form-section button {
        width: 100%;
        padding: 14px;
        background: var(--verde);
        color: white;
        border: none;
        border-radius: 4px;
        font-weight: 700;
        font-size: 15px;
        cursor: pointer;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        transition: all 0.3s;
    }

    .encuesta-form-section button:hover {
        background: var(--verde-osc);
    }

    .encuesta-form-section button:disabled {
        background: #ccc;
        cursor: not-allowed;
    }

    .encuesta-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        text-align: center;
    }

    .encuesta-stat {
        padding: 24px;
        background: var(--verde-clr);
        border-radius: 8px;
        border-left: 4px solid var(--verde);
    }

    .encuesta-stat .value {
        font-size: 32px;
        font-weight: 700;
        color: var(--verde);
        margin: 12px 0;
    }

    .encuesta-stat .label {
        font-size: 13px;
        color: var(--gris-med);
        font-weight: 600;
    }

    .encuesta-stat .count {
        font-size: 12px;
        color: var(--gris-med);
        margin-top: 8px;
    }

    @media (max-width: 768px) {
        .encuesta-cards {
            grid-template-columns: 1fr;
            gap: 24px;
        }

        .form-row {
            grid-template-columns: 1fr;
        }

        .encuesta-modal {
            width: calc(100% - 20px);
            bottom: 10px;
            right: 10px;
            left: 10px;
        }

        .encuesta-header h2 {
            font-size: 28px;
        }

        .encuesta-stats {
            grid-template-columns: 1fr;
        }
    }