        @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Playfair+Display:ital@0;1&family=Tangerine:wght@400;700&display=swap');
        /* General */

        :root{            
        --swiper-theme-color:
            #042b2c;
        }

        
        *{
            padding: 0;
            margin: 0;
            box-sizing: border-box;
        }

        body{
            font-family: "Montserrat", sans-serif ;
            background-color: aliceblue;
            width: 100%;
        }

        /* LOADER */
        .loader-section {
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color: #ffffff;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 1;
        transition: opacity 1s ease-out;
        }

        .loader {
        width: 48px;
        height: 48px;
        border: 5px solid #042b2c;
        border-bottom-color: transparent;
        border-radius: 50%;
        animation: rotation 1s linear infinite;
        }

        @keyframes rotation {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
        }

        .loaded {
        opacity: 0;
        z-index: -1;
        }           

        /* =========================
        HEADER
        ========================= */

        header{
            display: flex;
            width: 100%;
            height: 100px;
            align-items: center;
            padding: 10px 50px;
            background-color: #ffffff;
            justify-content: space-between;
            color: black;
            position: sticky;
            top: 0;
            z-index: 999;
            font-family: "Montserrat", sans-serif;
        }

        /* LOGO */
        header img{
            height: 80px;
        }

        /* NAV */
        .container-nav ul{
            display: flex;
            gap: 40px;
        }

        .container-nav ul .item-nav{
            list-style: none;
        }

        .container-nav a{
            text-decoration: none;
            color: black;
            transition: all .2s ease;
        }

        .container-nav a:hover{
            color: cadetblue;
            transform: scale(1.1);
        }

        /* REDES */
        .section-media{
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .icon-media{
            transition: transform .2s ease;
            color: #042b2c;
        }

        .icon-media:hover{
            transform: scale(1.4);
        }

        /* BOTÓN HAMBURGUESA */
        .menu-toggle{
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span{
            width: 26px;
            height: 2px;
            background: #042b2c;
        }


        /* Main */
        .hero{
            display: flex;
            height: calc(100vh - 100px);
        }

        
        /* Swiper */
        .swiper{
            position: relative;
            width: 100%;
            height: 100%;
        }

        .swiper-slide{
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .swiper-slide::before{
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.253);
            z-index: 1;
        }        

        .swiper-slide img{
            width: 100%;
            height: auto;
            object-fit: cover;
            background-position: center center;
        }

        /* Textos de los slides */
        .swiper-slide{
            position: relative;
        }

        .slide-text{
            font-family: "Playfair Display", serif;
            font-style: italic;
            position: absolute;
            bottom: 30%;
            left: 40%;
            transform: translateX(-50%);
            text-align: left;
            color: white;
            opacity: 0;
            transform: translate(-50%, 30px);
            transition: all 0.8s ease;
            /* background-color: rgba(0, 0, 0, 0.322); */
            border-radius: 10px;
            padding: 10px 5px;
            z-index: 2;
        }

        .slide-text h2{
            font-size: clamp(4rem, 5rem, 15rem);
            font-weight: 400;
            margin-bottom: 10px;
        }

        .slide-text p{
            letter-spacing: 0.2em;
            font-size: clamp(0.9rem, 2vw, 1.3rem);
        }

        /* Cuando el slide está activo */
        .swiper-slide-active .slide-text{
            opacity: 1;
            transform: translate(-50%, 0);
        }

        /* SECCIONES */

        .section {
            padding: 140px 10vw;
            background: #ffffff;
        }

        .section.alt {
            background: #f7f7f5;
        }

        .section h2 {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.2rem, 3vw, 3rem);
            font-weight: 400;
            color: #042b2c;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .section p {
            max-width: 650px;
            font-size: 1.05rem;
            line-height: 1.9;
            color: #444;
            margin-bottom: 20px;
        }

        /* =========================
        INICIO
        ========================= */

        .section-inicio {
            padding: 140px 8vw;
            background: #ffffff;
        }

        .inicio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* --------- IMÁGENES --------- */

        .inicio-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 220px 220px;
            gap: 20px;
        }

        /* Todas */
        .inicio-images img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 4px;
        }

        /* Imagen grande vertical (como tu referencia) */
        .inicio-images img:nth-child(2) {
            grid-column: 2;
            grid-row: 1 / span 2;
        }

        .inicio-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 220px 220px;
            gap: 20px;
        }

        .img-box {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
        }

        /* Imagen */
        .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease;
        }

        /* Imagen grande */
        .img-box.big {
            grid-column: 2;
            grid-row: 1 / span 2;
        }

        /* Capa oscura */
        .hover-layer {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,.35);
            opacity: 0;
            transition: opacity .6s ease;
            pointer-events: none;
        }


        /* --------- TEXTO --------- */

        .inicio-content h1 {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.4rem, 3.5vw, 3.2rem);
            font-weight: 400;
            color: #042b2c;
            margin-bottom: 30px;
            line-height: 1.2;
        }

        .inicio-content p {
            font-size: 1.05rem;
            line-height: 1.9;
            color: #444;
            max-width: 520px;
            margin-bottom: 30px;
        }

        /* Lista elegante */
        .inicio-content ul {
            list-style: none;
            margin-bottom: 40px;
        }

        .inicio-content ul li {
            position: relative;
            padding-left: 22px;
            margin-bottom: 12px;
            color: #555;
            font-size: 0.95rem;
        }

        .inicio-content ul li::before {
            content: "•";
            position: absolute;
            left: 0;
            color: #b08a5a;
            font-size: 1.4rem;
            line-height: 1;
        }

        /* Boton CTA */ 
        .cta {
        position: relative;
        margin: auto;
        padding: 12px 18px;
        transition: all 0.2s ease;
        border: none;
        background: none;
        cursor: pointer;
        }

        .cta:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        border-radius: 50px;
        background: #b1dae7;
        width: 45px;
        height: 45px;
        transition: all 0.3s ease;
        }

        .cta span {
        position: relative;
        font-family: "Ubuntu", sans-serif;
        font-size: 18px;
        font-weight: 700;
        letter-spacing: 0.05em;
        color: #234567;
        }

        .cta svg {
        position: relative;
        top: 0;
        margin-left: 10px;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        stroke: #234567;
        stroke-width: 2;
        transform: translateX(-5px);
        transition: all 0.3s ease;
        }

        .cta:hover:before {
        width: 100%;
        background: #b1dae7;
        }

        .cta:hover svg {
        transform: translateX(0);
        }

        .cta:active {
        transform: scale(0.95);
        }

        /* --------- BOTÓN --------- */

        .btn-inicio {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 32px;
            background: #b08a5a;
            color: white;
            text-decoration: none;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-inicio:hover {
            background: #8f6d44;
            transform: translateY(-2px);
        }

        /* =========================
        EL LUGAR
        ========================= */

        .section-el-lugar {
            padding: 140px 8vw;
            background: #f7f7f5;
        }

        .el-lugar-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.3fr;
            align-items: center;
            position: relative;
        }

        /* BLOQUE AZUL */
        .el-lugar-content {
            background: #0c3a4a;
            color: white;
            padding: 40px 35px;
            z-index: 2;
            max-width: 520px;
        }

        /* Texto pequeño superior */
        .el-lugar-subtitle {
            display: block;
            font-size: 0.9rem;
            letter-spacing: 0.1em;
            margin-bottom: 10px;
            opacity: 0.9;
        }

        /* Título */
        .el-lugar-content h2 {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.8rem, 3.5vw, 3.4rem);
            font-weight: 400;
            margin-bottom: 30px;
            line-height: 1.1;
        }

        /* Texto */
        .el-lugar-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            margin-bottom: 20px;
            color: #e6e6e6;
        }

        /* BOTÓN */
        .btn-el-lugar {
            display: inline-block;
            margin-top: 20px;
            padding: 14px 34px;
            background: #f5c15b;
            color: #042b2c;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .btn-el-lugar:hover {
            background: #e0ad48;
            transform: translateY(-2px);
        }

        /* IMAGEN */
        .el-lugar-image {
            position: relative;
            margin-left: -120px;
        }

        .el-lugar-image img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: 4px;
        }

        /* ===============================
        CTA MARQUEE
        ================================ */
        .cta-marquee {
            position: relative;
            width: 100%;
            min-height: 220px;            
            padding: 100px 0 80px;

            background-image: url("../images/cintillo.jpg");
            background-size: cover;       
            background-position: center;  
            background-repeat: no-repeat;

            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            text-align: center;
            overflow: hidden;
        }

        /* OVERLAY OSCURO */
        .cta-marquee::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45); /* ajusta intensidad aquí */
            z-index: 1;
}

        .marquee-wrapper {
            width: 100%;
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            z-index: 2;
        }

        .marquee {
            display: inline-flex;
            gap: 80px;
            animation: marquee 40s linear infinite;
        }

        .marquee span {
            font-family: angerine;
            font-size: 3rem;
            letter-spacing: 0.15em;
            color: #ffffff;
            opacity: 0.9;
            font-weight: 300;
            text-transform: uppercase;
        }

        /* BOTÓN */
        .cta-button {
            display: inline-block;
            margin-top: 40px;
            padding: 16px 48px;
            background: #042b2c;
            color: #fff;
            text-decoration: none;
            letter-spacing: 0.15em;
            font-size: 0.85rem;
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .cta-button:hover {
            background: #022224;
            transform: translateY(-2px);
        }

        /* ANIMACIÓN */
        @keyframes marquee {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
        }

        /* =========================
        JARDINES
        ========================= */
        .jardines-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .jardines-img img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 6px;
        }


        /* =========================
        EVENTOS SOCIALES
        ========================= */

        .eventos-wrapper {
            display: grid;
            gap: 40px;
        }

        .eventos-header {
            max-width: 700px;
        }

        .eventos-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }

        .evento-card img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 6px;
            margin-bottom: 20px;
        }

        .evento-card h3 {
            font-family: "Playfair Display", serif;
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 10px;
            color: #042b2c;
        }

        .evento-card p {
            font-size: 0.95rem;
            color: #555;
            line-height: 1.7;
        }


        /* =========================
        EXPERIENCIA FAMILIAR
        ========================= */

        .familia-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .familia-img img {
            width: 100%;
            height: 480px;
            object-fit: cover;
            border-radius: 6px;
        }

        /* =========================
        ENTORNO
        ========================= */

        .entorno-header {
            max-width: 700px;
            margin-bottom: 60px;
        }

        .entorno-gallery {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .entorno-gallery img {
            width: 100%;
            height: 260px;
            object-fit: cover;
            border-radius: 6px;
        }

        /* =========================
        LIGHTBOX GALERIA ENTORNO
        ========================= */

        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
            z-index: 9999;
        }

        .lightbox.active {
            opacity: 1;
            pointer-events: all;
        }

        .lightbox img {
            max-width: 85%;
            max-height: 85%;
            object-fit: contain;
            animation: zoomIn 0.4s ease;
        }

        /* Botón cerrar */
        .lightbox-close {
            position: absolute;
            top: 30px;
            right: 40px;
            font-size: 40px;
            color: #fff;
            cursor: pointer;
        }

        /* Flechas */
        .lightbox-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            color: #fff;
            font-size: 50px;
            border: none;
            cursor: pointer;
            padding: 20px;
        }

        .lightbox-nav.prev { left: 30px; }
        .lightbox-nav.next { right: 30px; }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }



        /* =========================
   ACCESOS
========================= */

#accesos {
    text-align: center;
}

#accesos h2 {
    margin-bottom: 40px;
}

/* GRID */
.accesos-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

/* TARJETA */
.acceso-item {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    position: relative;
    overflow: hidden;
}

/* EFECTO HOVER */
.acceso-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* ICONO */
.acceso-item span {
    font-size: 3rem;
    color: #042b2c;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(4, 43, 44, 0.08);
    transition: all 0.35s ease;
}

/* ICONO EN HOVER */
.acceso-item:hover span {
    background: #042b2c;
    color: #ffffff;
    transform: scale(1.1);
}

/* TEXTO */
.acceso-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

/* TEXTO FINAL */
.parrafo-accesos {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: 1rem;
    color: #444;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

    .accesos-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .acceso-item {
        padding: 45px 28px;
    }

    .acceso-item span {
        font-size: 3.2rem;
        width: 76px;
        height: 76px;
    }

    .parrafo-accesos {
        margin-top: 40px;
        padding: 0 10px;
    }
}


        /* Footer */

        .footer {
            background-color: #042b2c;
            color: #ffffff;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 70px 40px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 60px;
        }

        /* Columna 1 */
        .footer-brand img {
            width: 180px;
            margin-bottom: 20px;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: #d6e4e4;
        }

        /* Títulos */
        .footer h4 {
            font-size: 18px;
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        /* Links */
        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            position: relative;
            margin-bottom: 14px;
            padding-left: 20px;
        }

        .footer-links li::before {
            content: "chevron_right";
            font-family: 'Material Symbols Outlined';
            font-size: 18px;
            position: absolute;
            left: 0;
            top: 1px;
            color: #9fd3c7;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .footer-links a {
            text-decoration: none;
            color: #d6e4e4;
            font-size: 14px;
            transition: color 0.3s ease;
        }

        .footer-links li:hover::before {
            transform: translateX(4px);
            color: #ffffff;
        }

        .footer-links a:hover {
            color: #ffffff;
        }


        /* Contacto */
        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
            font-size: 14px;
            color: #d6e4e4;
        }

        .footer-contact a {
            color: #d6e4e4;
            text-decoration: none;
        }

        .footer-contact a:hover {
            color: #ffffff;
        }

        .footer-contact .material-symbols-outlined {
            font-size: 20px;
            color: #9fd3c7;
        }

        /* Footer bottom */
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            text-align: center;
            padding: 20px;
            font-size: 13px;
            color: #cfdede;
        }

        /* Responsive */
        @media (max-width: 900px) {
            .footer-container {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-contact p {
                justify-content: center;
            }
        }

        /* =========================
        GALERÍA 
        ========================= */

        #galeria{
            background-color: aliceblue;
        }

        .galeria-masonry {
            padding: 120px 8%;
        }

        .galeria-header {
            max-width: 720px;
            margin-bottom: 80px;
        }

        .galeria-header h2 {
            font-family: "Playfair Display", serif;
            font-size: 2.8rem;
            font-weight: 400;
            margin-bottom: 20px;
            color: #042b2c;
        }

        .galeria-header p {
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
        }

        /* Masonry real */
        .masonry-grid {
            column-count: 4;
            column-gap: 24px;
        }

        .masonry-grid img {
            width: 100%;
            margin-bottom: 24px;
            border-radius: 6px;
            display: block;
            break-inside: avoid;
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            cursor: pointer;
        }

        .masonry-grid img:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }


        @media (max-width: 1200px) {
            .masonry-grid {
                column-count: 3;
            }
        }

        @media (max-width: 768px) {
            .masonry-grid {
                column-count: 2;
            }
        }

        @media (max-width: 480px) {
            .masonry-grid {
                column-count: 1;
            }
        }

        /* LIGHTBOX GALERÍA */

        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.92);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.4s ease;
        }

        .lightbox.active {
            opacity: 1;
            pointer-events: auto;
        }

        .lightbox-img {
            max-width: 90%;
            max-height: 85%;
            object-fit: contain;
            animation: zoomIn 0.4s ease;
        }

        @keyframes zoomIn {
            from {
                transform: scale(0.9);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* Botones */
        .lightbox-close,
        .lightbox-prev,
        .lightbox-next {
            position: absolute;
            color: #fff;
            font-size: 36px;
            cursor: pointer;
            user-select: none;
            transition: opacity 0.3s ease;
        }

        .lightbox-close {
            top: 30px;
            right: 40px;
            font-size: 42px;
        }

        .lightbox-prev {
            left: 40px;
        }

        .lightbox-next {
            right: 40px;
        }

        .lightbox-prev:hover,
        .lightbox-next:hover,
        .lightbox-close:hover {
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .lightbox-prev,
            .lightbox-next {
                font-size: 28px;
            }

            .lightbox-close {
                font-size: 36px;
                right: 20px;
            }
        }


        /* =========================
        CONTACTO
        ========================= */

        /* ---------- HERO ---------- */
        .contacto-hero {
            position: relative;
            height: 60vh;
            min-height: 420px;
            background-image: url("../images/slide01.jpg");
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #ffffff;
        }

        .contacto-hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .contacto-hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
            padding: 0 20px;
        }

        .contacto-hero-content h1 {
            font-family: "Playfair Display", serif;
            font-size: clamp(2.8rem, 5vw, 3.6rem);
            font-weight: 400;
            margin-bottom: 20px;
        }

        .contacto-hero-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            opacity: 0.9;
        }

        /* ---------- SECCIÓN ---------- */
        .contacto-page {
            padding: 100px 8vw 140px;
            background: #f7f7f5;
            font-family: "Montserrat", sans-serif;
        }

        /* ---------- GRID ---------- */
        .contacto-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: flex-start;
        }

        /* ---------- FORMULARIO ---------- */
        .contacto-form {
            background: #ffffff;
            padding: 50px;
            border-radius: 8px;
        }

        .contacto-form h2 {
            font-family: "Playfair Display", serif;
            font-size: 1.8rem;
            margin-bottom: 30px;
            color: #042b2c;
            font-weight: 300;
        }

        .form-group {
            margin-bottom: 22px;
        }

        .form-group label {
            display: block;
            font-size: 0.85rem;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 6px;
            color: #666;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 14px;
            border: 1px solid #ddd;
            font-family: inherit;
            font-size: 0.95rem;
            border-radius: 4px;
        }

        .form-group textarea {
            resize: none;          /* no se puede estirar */
            overflow-y: auto;      /* scroll interno */
            max-height: 140px;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #b08a5a;
        }

        /* ---------- BOTÓN ---------- */
        .btn-contacto {
            margin-top: 20px;
            padding: 14px 36px;
            background: #12595c;
            color: #ffffff;
            border: none;
            font-size: 0.85rem;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            cursor: pointer;
            border-radius: 30px;
            transition: all 0.3s ease;
        }

        .btn-contacto:hover {
            background: #042b2c;
            transform: translateY(-2px);
        }

        /* ---------- MAPA ---------- */
        .contacto-mapa h2 {
            font-family: "Playfair Display", serif;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #042b2c;
            font-weight: 300;
        }

        .mapa-box {
            width: 100%;
            height: 350px;
            overflow: hidden;
            border-radius: 6px;
            margin-bottom: 25px;
        }

        .mapa-box iframe {
            width: 100%;
            height: 100%;
            border: 0;
        }

        /* ---------- INFO ---------- */
        .contacto-info p {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.95rem;
            color: #555;
            margin-bottom: 12px;
        }

        .contacto-info span {
            color: #042b2c;
        }

        /* =========================
        RESPONSIVE
        ========================= */

        @media (max-width: 900px) {
            .contacto-wrapper {
                grid-template-columns: 1fr;
                gap: 60px;
            }
        }

        @media (max-width: 600px) {
            .contacto-hero {
                height: 50vh;
            }

            .contacto-form {
                padding: 40px 30px;
            }
        }


        /* =========================
        ANIMACIONES ON SCROLL
        ========================= */

        /* Estado inicial */
        .animate {
            opacity: 0;
            transform: translateY(60px);
            transition: all 0.9s ease;
        }

        /* Cuando aparece */
        .animate.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Variantes elegantes */
        .animate.fade {
            transform: none;
        }

        .animate.left {
            transform: translateX(-60px);
        }

        .animate.right {
            transform: translateX(60px);
        }

        .animate.zoom {
            transform: scale(0.96);
        }

        
        /* =========================
        MODAL FORMULARIO
        ========================= */

        .modal-form {
        position: fixed;
        inset: 0;
        display: none;
        z-index: 9999;
        }

        .modal-form.active {
        display: block;
        }

        /* Fondo oscuro */
        .modal-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.65);
        }

        /* Caja */
        .modal-content {
        position: relative;
        max-width: 520px;
        max-height: calc(100vh - 120px); 
        margin: 60px auto;
        overflow-y: auto;             
        z-index: 2;
        animation: modalFade 0.4s ease;
        }

        /* Scroll elegante */
        .modal-content::-webkit-scrollbar {
        width: 6px;
        }

        .modal-content::-webkit-scrollbar-thumb {
        background: #042b2c;
        border-radius: 6px;
        }

        .modal-content::-webkit-scrollbar-track {
        background: transparent;
        }

        /* Textarea */
        .form-group textarea {
        resize: none;          /* ❌ no se puede estirar */
        overflow-y: auto;      /* ✅ scroll interno */
        max-height: 140px;     /* altura elegante */
        }        

        /* Cerrar */
        .modal-close {
        position: absolute;
        top: 18px;
        right: 18px;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: #042b2c;
        cursor: pointer;
        z-index: 5;
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.3s ease;
        }

        /* Mostrar solo cuando el modal esté activo */
        .modal-form.active .modal-close {
        opacity: 1;
        transform: scale(1);
        }

        /* Animación */
        @keyframes modalFade {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
        }

        /* Responsive */
        @media (max-width: 600px) {
        .modal-content {
            margin: 40px 20px;
        }
        }


        /* =========================
        TOAST NOTIFICATION
        ========================= */

        .toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #042b2c;
            color: #fff;
            padding: 18px 28px;
            border-radius: 12px;
            font-size: 0.95rem;
            letter-spacing: 0.05em;
            box-shadow: 0 20px 40px rgba(0,0,0,0.25);
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            transition: all 0.4s ease;
            z-index: 99999;
        }

        .toast.show {
            opacity: 1;
            transform: translateY(0);
        }

        .toast.success {
            background: #042b2c;
        }

        .toast.error {
            background: #7a1f1f;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .toast {
                right: 20px;
                left: 20px;
                text-align: center;
            }
        }




