/* ==============================
   COLORES Y CONFIGURACIÓN
   ============================== */

:root {
    --crema: #f7f3ec;
    --verde: #26352c;
    --verde-suave: #7c8977;
    --beige: #d8cbb8;
    --blanco: #fffdf9;
}


/* ==============================
   CONFIGURACIÓN GENERAL
   ============================== */

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: var(--crema);
    color: var(--verde);
    font-family: Georgia, "Times New Roman", serif;
}


/* ==============================
   CABECERA
   ============================== */

.cabecera {
    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 20;

    display: grid;

    grid-template-columns: 1fr 180px 1fr;

    align-items: center;

    gap: 30px;

    padding: 35px 45px 0;

    color: white;
}


/* ==============================
   LOGO
   ============================== */

.logo {
    grid-column: 2;

    display: block;

    width: 180px;

    justify-self: center;
}

.logo img {
    display: block;

    width: 100%;
    height: auto;
}


/* ==============================
   MENÚS
   ============================== */

.menu {
    display: flex;

    align-items: center;

    gap: 34px;
}

.menu-izquierda {
    grid-column: 1;

    justify-content: flex-end;
}

.menu-derecha {
    grid-column: 3;

    justify-content: flex-start;
}

.menu a {
    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;

    letter-spacing: 1.7px;

    text-transform: uppercase;

    white-space: nowrap;

    transition: opacity 0.2s ease;
}

.menu a:hover {
    opacity: 0.65;
}


/* ==============================
   BOTÓN CONFIRMACIÓN
   ============================== */

.menu-confirmacion {
    padding: 10px 16px;

    border: 1px solid rgba(255, 255, 255, 0.75);

    border-radius: 30px;
}

.menu-confirmacion:hover {
    opacity: 1 !important;

    background-color: rgba(255, 255, 255, 0.12);
}


/* ==============================
   PORTADA
   ============================== */

.hero {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    text-align: center;

    color: white;

    background:
        linear-gradient(
            rgba(38, 53, 44, 0.35),
            rgba(38, 53, 44, 0.55)
        ),
        url("../images/portada.jpeg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-contenido {
    padding: 250px 20px 80px;
}

.pre-titulo {
    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 4px;

    text-transform: uppercase;

    margin-bottom: 18px;
}

.hero h1 {
    font-family: "Pinyon Script", cursive;

    font-size: clamp(60px, 10vw, 120px);

    font-weight: normal;

    line-height: 1;

    margin: 0;
}

.fecha {
    font-family: Arial, sans-serif;

    font-size: 16px;

    letter-spacing: 5px;

    margin-top: 35px;
}

.lugar {
    font-size: 18px;

    font-style: italic;
}


/* ==============================
   SECCIONES
   ============================== */

.bienvenida,
.seccion {
    max-width: 1100px;

    margin: auto;

    padding: 100px 30px;

    text-align: center;
}

.bienvenida {
    max-width: 1100px;
}

.nosotros-contenido {
    display: grid;

    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);

    align-items: center;

    gap: 70px;

    text-align: left;
}

.nosotros-imagen {
    max-width: 380px;

    justify-self: center;
}

.nosotros-imagen img {
    display: block;

    width: 100%;

    height: auto;

    box-shadow: 0 12px 30px rgba(38, 53, 44, 0.08);
}

.nosotros-texto .pre-titulo {
    margin-top: 0;
}

.nosotros-texto > p:not(.pre-titulo) {
    margin: 0;

    font-size: 18px;

    line-height: 1.8;
}

.nosotros-texto > p + p {
    margin-top: 20px;
}

.nosotros-texto > h2.pre-titulo + p {
    margin-top: 20px;
}

.nosotros-texto .nosotros-cierre {
    font-style: italic;
}

.bienvenida .cuenta-atras {
    margin-top: 75px;
}

h2 {
    font-size: 40px;

    font-weight: normal;

    margin-top: 10px;

    margin-bottom: 25px;
}

.bienvenida > p:last-child,
.seccion > p:not(.pre-titulo) {
    font-size: 18px;

    line-height: 1.8;

    max-width: 700px;

    margin: auto;
}


/* ==============================
   ALOJAMIENTO
   ============================== */

.alojamiento {
    max-width: 1200px;
}

.alojamiento-principal {
    margin-top: 50px;

    text-align: center;
}

.alojamiento-texto {
    max-width: 700px;

    margin: auto;
}

.alojamiento-texto > p {
    margin: 0;

    font-size: 18px;

    line-height: 1.8;
}

.alojamiento-texto > p + p {
    margin-top: 18px;
}

.alojamiento-precios {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;

    margin: 35px 0 0;

    padding: 24px 0;

    border-top: 1px solid rgba(38, 53, 44, 0.2);

    border-bottom: 1px solid rgba(38, 53, 44, 0.2);
}

.alojamiento-precios dt {
    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.alojamiento-precios dd {
    margin: 10px 0 0;

    font-size: 17px;

    line-height: 1.5;
}

.alojamiento-texto .boton {
    margin-top: 30px;
}

.alojamiento-galeria {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 14px;

    max-width: 1100px;

    margin: 60px auto 0;
}

.alojamiento-galeria figure {
    margin: 0;

    overflow: hidden;
}

.alojamiento-galeria figure:first-child {
    grid-column: 1 / -1;
}

.alojamiento-galeria img {
    display: block;

    width: 100%;

    height: auto;

    box-shadow: 0 10px 26px rgba(38, 53, 44, 0.08);
}

.alojamiento-imagen {
    display: block;

    width: 100%;

    padding: 0;

    border: 0;

    background: transparent;

    cursor: zoom-in;
}

.alojamiento-imagen:focus-visible {
    outline: 2px solid var(--verde-suave);

    outline-offset: 4px;
}

/* ==============================
   LIGHTBOX ALOJAMIENTO
   ============================== */

body.lightbox-alojamiento-abierto {
    overflow: hidden;
}

.lightbox-alojamiento {
    position: fixed;

    inset: 0;

    z-index: 60;

    display: grid;

    place-items: center;

    padding: 24px;

    background-color: rgba(20, 30, 24, 0.86);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.lightbox-alojamiento.abierto {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transition: opacity 0.2s ease;
}

.lightbox-alojamiento-contenido {
    position: relative;

    display: grid;

    width: min(100%, 1200px);

    place-items: center;

    transform: scale(0.98);

    transition: transform 0.2s ease;
}

.lightbox-alojamiento.abierto .lightbox-alojamiento-contenido {
    transform: scale(1);
}

.lightbox-alojamiento-imagen {
    display: block;

    max-width: 100%;

    max-height: calc(100svh - 96px);

    width: auto;

    height: auto;

    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.3);
}

.lightbox-alojamiento-cerrar,
.lightbox-alojamiento-anterior,
.lightbox-alojamiento-siguiente {
    position: absolute;

    z-index: 1;

    display: grid;

    width: 44px;

    height: 44px;

    place-items: center;

    border: 1px solid rgba(255, 255, 255, 0.35);

    background-color: rgba(20, 30, 24, 0.5);

    color: white;

    font-family: Arial, sans-serif;

    font-size: 24px;

    line-height: 1;

    cursor: pointer;
}

.lightbox-alojamiento-cerrar {
    top: 12px;

    right: 12px;
}

.lightbox-alojamiento-anterior {
    top: 50%;

    left: 12px;

    transform: translateY(-50%);
}

.lightbox-alojamiento-siguiente {
    top: 50%;

    right: 12px;

    transform: translateY(-50%);
}

.lightbox-alojamiento-cerrar:focus-visible,
.lightbox-alojamiento-anterior:focus-visible,
.lightbox-alojamiento-siguiente:focus-visible {
    outline: 2px solid white;

    outline-offset: 3px;
}


/* ==============================
   TARJETAS
   ============================== */

.tarjetas {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;

    margin-top: 50px;
}

.tarjetas article {
    position: relative;

    background: var(--blanco);

    padding: 45px 25px;

    border: 1px solid rgba(38, 53, 44, 0.08);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tarjeta-evento-boton {
    position: absolute;

    inset: 0;

    z-index: 1;

    width: 100%;

    height: 100%;

    border: 0;

    background: transparent;

    cursor: pointer;
}

.tarjeta-numero {
    display: block;

    color: var(--verde-suave);

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: bold;

    letter-spacing: 2.5px;

    line-height: 1;
}

.tarjetas h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(28px, 3vw, 34px);

    font-weight: 500;

    letter-spacing: 0.5px;
}

.tarjeta-evento-detalle {
    display: block;

    margin-top: 22px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;
}

.tarjeta-evento-boton:focus-visible {
    outline: 2px solid var(--verde-suave);

    outline-offset: -6px;
}

@media (hover: hover) {

    .tarjetas article:hover {
        transform: translateY(-4px);

        box-shadow: 0 10px 24px rgba(38, 53, 44, 0.1);
    }

}

.tarjetas article:focus-within {
    transform: translateY(-4px);

    box-shadow: 0 10px 24px rgba(38, 53, 44, 0.1);
}


/* ==============================
   MODAL TIMELINE
   ============================== */

body.modal-abierto {
    overflow: hidden;
}

.modal-timeline {
    position: fixed;

    inset: 0;

    z-index: 50;

    display: grid;

    place-items: center;

    padding: 24px;

    background-color: rgba(38, 53, 44, 0.55);

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}

.modal-timeline.abierto {
    opacity: 1;

    visibility: visible;

    pointer-events: auto;

    transition: opacity 0.2s ease;
}

.modal-timeline-contenido {
    position: relative;

    width: min(100%, 560px);

    max-height: calc(100svh - 48px);

    overflow-y: auto;

    padding: 48px 32px 40px;

    background-color: var(--blanco);

    color: var(--verde);

    text-align: center;

    transform: scale(0.98);

    transition: transform 0.2s ease;
}

.modal-timeline.abierto .modal-timeline-contenido {
    transform: scale(1);
}

.modal-timeline-contenido h2 {
    margin-top: 10px;
}

.modal-timeline-contenido > p:last-child {
    max-width: 460px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.8;
}

.modal-timeline-cerrar {
    position: absolute;

    top: 10px;
    right: 10px;

    display: grid;

    width: 44px;
    height: 44px;

    place-items: center;

    border: 0;

    background: transparent;

    color: var(--verde);

    font-family: Arial, sans-serif;

    font-size: 28px;

    line-height: 1;

    cursor: pointer;
}

.modal-timeline-cerrar:focus-visible {
    outline: 2px solid var(--verde-suave);

    outline-offset: -4px;
}


/* ==============================
   FRASES SEPARADORAS
   ============================== */

.frase-separador {
    padding: clamp(52px, 6vw, 80px) 22px;

    color: var(--verde);

    text-align: center;
}

.frase-separador-texto {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: clamp(24px, 2.5vw, 32px);

    font-style: italic;

    font-weight: 500;

    line-height: 1.4;
}

.frase-separador-autor {
    margin: 14px 0 0;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 1.8px;

    opacity: 0.7;

    text-transform: uppercase;
}

#fin-de-semana {
    padding-bottom: clamp(50px, 5vw, 60px);
}

#alojamiento {
    padding-top: clamp(50px, 5vw, 60px);
}


/* ==============================
   BOTONES
   ============================== */

.boton {
    display: inline-block;

    margin-top: 35px;

    padding: 16px 34px;

    background-color: var(--verde);

    color: white;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 12px;

    font-weight: bold;

    letter-spacing: 2px;

    text-transform: uppercase;

    border: 1px solid var(--verde);

    transition: all 0.25s ease;
}

.boton:hover {
    background-color: transparent;

    color: var(--verde);
}

.destacada .boton {
    background-color: white;

    color: var(--verde);

    border-color: white;

    padding: 16px 36px;

    font-weight: bold;
}

.destacada .boton:hover {
    background-color: transparent;

    color: white;

    border-color: white;
}

/* ==============================
   CONFIRMACIÓN
   ============================== */

.destacada {
    background-color: var(--verde);

    color: white;

    max-width: none;
}


/* ==============================
   MURO DE MENSAJES
   ============================== */

.muro-mensajes {
    padding: 90px 30px;

    color: var(--verde);

    text-align: center;
}

.muro-mensajes-contenido {
    max-width: 1100px;

    margin: 0 auto;
}

.muro-mensajes-intro {
    max-width: 680px;

    margin: 0 auto;

    font-size: 18px;

    line-height: 1.8;
}

.muro-mensajes-formulario {
    display: grid;

    gap: 14px;

    max-width: 620px;

    margin: 38px auto 0;

    text-align: left;
}

.muro-mensajes-campo {
    display: grid;

    gap: 7px;
}

.muro-mensajes-campo label {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.muro-mensajes-campo input,
.muro-mensajes-campo textarea {
    width: 100%;

    min-height: 50px;

    padding: 13px 15px;

    border: 1px solid rgba(38, 53, 44, 0.2);

    border-radius: 0;

    background-color: var(--blanco);

    color: var(--verde);

    font: inherit;

    font-size: 16px;

    line-height: 1.5;
}

.muro-mensajes-campo textarea {
    min-height: 110px;

    resize: vertical;
}

.muro-mensajes-campo input:focus,
.muro-mensajes-campo textarea:focus {
    outline: none;

    border-color: var(--verde);

    box-shadow: 0 0 0 3px rgba(38, 53, 44, 0.1);
}

.muro-mensajes-contador {
    margin: 0;

    color: var(--verde);

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 1px;

    opacity: 0.65;

    text-align: right;
}

.muro-mensajes-boton {
    justify-self: center;

    margin-top: 2px;

    padding: 15px 24px;

    cursor: pointer;
}

.muro-mensajes-estado {
    margin: 0 0 18px;

    font-size: 16px;

    font-style: italic;

    line-height: 1.6;

    text-align: center;
}

.muro-notas-contenedor {
    margin-top: 44px;
}

.muro-notas {
    column-count: 1;

    column-gap: 18px;

    margin: 0;

    text-align: left;
}

.nota-mensaje {
    break-inside: avoid;

    margin: 0 0 14px;

    padding: 19px 18px 17px;

    border: 1px solid rgba(38, 53, 44, 0.14);

    background-color: var(--blanco);

    border-radius: 24px 38px 28px 34px / 30px 24px 36px 28px;

    box-shadow: 0 6px 18px rgba(38, 53, 44, 0.06);
}

.nota-mensaje:nth-child(4n + 2) {
    background-color: #f2ece2;

    border-radius: 36px 24px 40px 26px / 26px 36px 24px 42px;

    transform: rotate(-0.8deg);
}

.nota-mensaje:nth-child(4n + 3) {
    border-radius: 28px 42px 22px 38px / 38px 24px 42px 28px;

    transform: rotate(0.7deg);
}

.nota-mensaje:nth-child(4n) {
    background-color: #f7f1e8;

    border-radius: 42px 28px 36px 24px / 24px 40px 26px 38px;

    transform: rotate(-0.45deg);
}

.nota-mensaje p {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 19px;

    font-style: italic;

    font-weight: 500;

    line-height: 1.4;
}

.nota-mensaje-firma {
    margin-top: 15px;

    color: var(--verde);

    font-family: Arial, sans-serif;

    font-size: 9px;

    font-style: normal;

    font-weight: normal;

    line-height: 1.4;

    letter-spacing: 1.5px;

    opacity: 0.7;

    text-transform: uppercase;
}

@media (min-width: 901px) {

    .muro-mensajes-contenido {
        display: grid;

        grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.75fr);

        column-gap: clamp(45px, 6vw, 75px);

        row-gap: 0;
    }

    .muro-mensajes-contenido > .pre-titulo,
    .muro-mensajes-contenido > h2,
    .muro-mensajes-intro {
        grid-column: 1 / -1;
    }

    .muro-mensajes-contenido > .pre-titulo {
        margin: 0 0 18px;
    }

    .muro-mensajes-contenido > h2 {
        margin: 0 0 25px;
    }

    .muro-mensajes-intro {
        margin: 0 auto 42px;
    }

    .muro-mensajes-formulario {
        align-self: start;

        width: 100%;

        max-width: 330px;

        margin: 0;
    }

    .muro-notas-contenedor {
        grid-column: 2;

        margin: 0;
    }

    .muro-notas {
        column-count: 2;
    }

}

@media (min-width: 751px) and (max-width: 900px) {

    .muro-notas {
        column-count: 2;
    }

}

@media (min-width: 1200px) {

    .muro-notas {
        column-count: 3;
    }

}

@media (max-width: 750px) {

    .muro-mensajes {
        padding: 65px 22px;
    }

    .muro-notas-contenedor {
        margin-top: 38px;
    }

}

/* ==============================
   PIE DE PÁGINA
   ============================== */

footer {
    background-color: #1d2922;

    color: white;

    text-align: center;

    padding: clamp(36px, 4vw, 55px) 20px;
}

footer h2 {
    margin: 0;

    font-family: "Pinyon Script", cursive;

    font-size: clamp(52px, 6vw, 72px);

    font-weight: normal;

    line-height: 1;
}

footer p {
    margin: 0;
}

.footer-fecha {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 3px;

    margin-top: 18px;

    text-transform: uppercase;
}

.footer-separador {
    width: 72px;

    border-top: 1px solid rgba(255, 255, 255, 0.42);

    margin: 26px auto 22px;
}

.footer-frase {
    max-width: 480px;

    margin: 0 auto;

    font-size: clamp(18px, 2.4vw, 22px);

    font-style: italic;

    line-height: 1.5;

    opacity: 0.9;
}

.footer-autor {
    margin-top: 10px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 1.5px;

    opacity: 0.7;

    text-transform: uppercase;
}

.footer-volver {
    display: inline-block;

    margin-top: 28px;

    padding-bottom: 4px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.45);

    color: white;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-decoration: none;

    text-transform: uppercase;

    transition: opacity 0.2s ease;
}

@media (hover: hover) {

    .footer-volver:hover {
        opacity: 0.65;
    }

}


/* ==============================
   MÓVIL
   ============================== */

@media (max-width: 750px) {

    .hero {
        height: 100svh;
        min-height: 0;
    }

    .hero h1 {
        font-size: 60px;
    }

    .hero-contenido {
        padding: 180px 20px 70px;
    }

    h2 {
        font-size: 38px;
    }

    .tarjetas {
        grid-template-columns: 1fr;
    }

    .bienvenida,
    .seccion {
        padding: 75px 22px;
    }

    .nosotros-contenido {
        grid-template-columns: 1fr;

        gap: 42px;
    }

    .nosotros-imagen {
        max-width: none;

        order: 2;
    }

    .nosotros-texto {
        order: 1;
    }

    .bienvenida .cuenta-atras {
        margin-top: 60px;
    }
}


/* ==============================
   CUENTA ATRÁS
   ============================== */

.cuenta-atras {
    display: flex;

    justify-content: center;

    gap: 50px;

    margin-top: 55px;
}

.cuenta-atras div {
    min-width: 90px;
}

.cuenta-atras span {
    display: block;

    font-size: 42px;

    font-weight: normal;
}

.cuenta-atras small {
    display: block;

    margin-top: 8px;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;
}

@media (max-width: 750px) {

    .cuenta-atras {
        gap: clamp(10px, 4vw, 18px);
    }

    .cuenta-atras div {
        flex: 0 1 65px;
        min-width: 0;
    }

    .cuenta-atras span {
        font-size: 30px;
    }

}


/* ==============================
   INDICADOR DE SCROLL
   ============================== */

.scroll-indicador {
    position: absolute;

    bottom: 30px;

    left: 0;

    right: 0;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: white;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    opacity: 0.85;
}

.scroll-indicador span:last-child {
    font-size: 20px;
}


/* ==============================
   CONTACTO
   ============================== */

.contacto {
    background-color: #e8e1d6;

    padding: 110px 30px;

    text-align: center;
}

.contacto-contenido {
    max-width: 900px;

    margin: auto;
}

.contacto-intro {
    max-width: 600px;

    margin: 0 auto 55px;

    font-size: 18px;

    line-height: 1.8;
}

.contacto-bloques {
    display: grid;

    gap: 55px;

    max-width: 650px;

    margin: 0 auto;
}

.contacto-formulario {
    display: grid;

    gap: 20px;

    text-align: left;
}

.contacto-campo {
    display: grid;

    gap: 8px;
}

.contacto-campo label {
    font-family: Arial, sans-serif;

    font-size: 11px;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.contacto-campo input,
.contacto-campo textarea {
    width: 100%;

    min-height: 50px;

    padding: 13px 15px;

    border: 1px solid rgba(38, 53, 44, 0.2);

    border-radius: 0;

    background-color: var(--blanco);

    color: var(--verde);

    font: inherit;

    font-size: 16px;

    line-height: 1.5;
}

.contacto-campo textarea {
    min-height: 150px;

    resize: vertical;
}

.contacto-campo input:focus,
.contacto-campo textarea:focus {
    outline: none;

    border-color: var(--verde);

    box-shadow: 0 0 0 3px rgba(38, 53, 44, 0.1);
}

.contacto-formulario-boton {
    justify-self: start;

    margin-top: 4px;

    cursor: pointer;
}

.contacto-personas {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 0;

    max-width: 650px;

    margin: 0 auto;

    border-top: 1px solid rgba(38, 53, 44, 0.22);

    border-bottom: 1px solid rgba(38, 53, 44, 0.22);
}

.persona {
    padding: 26px 16px;
}

.persona h3 {
    font-size: 25px;

    font-weight: normal;

    margin-top: 0;

    margin-bottom: 15px;
}

.persona a,
.contacto-email a {
    color: var(--verde);

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 14px;
}

.persona a:hover,
.contacto-email a:hover {
    text-decoration: underline;
}

.contacto-email {
    max-width: 650px;

    margin: 26px auto 0;

    padding: 0 16px;

    background: transparent;
}

.contacto-email h3 {
    margin: 0 0 12px;

    font-family: Arial, sans-serif;

    font-size: 11px;

    font-weight: normal;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.contacto-mensajes-cta {
    max-width: 520px;

    margin: 70px auto 0;

    text-align: center;
}

.contacto-mensajes-cta h3 {
    margin: 0;

    font-family: "Cormorant Garamond", serif;

    font-size: 28px;

    font-weight: 500;
}

.contacto-mensajes-cta p {
    margin: 12px 0 0;

    font-size: 17px;

    line-height: 1.7;
}

.contacto-mensajes-cta a {
    display: inline-block;

    margin-top: 18px;

    padding-bottom: 3px;

    border-bottom: 1px solid rgba(38, 53, 44, 0.45);

    color: var(--verde);

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 1.5px;

    text-decoration: none;

    text-transform: uppercase;

    transition: opacity 0.2s ease;
}

.contacto-mensajes-cta a:focus-visible {
    outline: 2px solid var(--verde-suave);

    outline-offset: 4px;
}

@media (hover: hover) {

    .contacto-mensajes-cta a:hover {
        opacity: 0.65;
    }

}

@media (min-width: 751px) {

    .persona + .persona {
        border-left: 1px solid rgba(38, 53, 44, 0.22);
    }

}

@media (min-width: 900px) {

    .contacto-contenido {
        max-width: 1000px;
    }

    .contacto-bloques {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);

        align-items: stretch;

        gap: 64px;

        max-width: 1000px;
    }

    .contacto-datos {
        display: flex;

        flex-direction: column;

        justify-content: center;

        padding: 44px 32px;

        border: 1px solid rgba(38, 53, 44, 0.14);

        background-color: rgba(255, 253, 249, 0.55);
    }

}


@media (max-width: 750px) {

    .contacto {
        padding: 75px 30px;
    }

    .contacto-personas {
        grid-template-columns: 1fr;
    }

    .persona + .persona {
        border-top: 1px solid rgba(38, 53, 44, 0.22);
    }

}


/* ==============================
   UBICACIÓN
   ============================== */

.lugar-seccion {
    background-color: var(--crema);

    padding: 120px 30px;

    padding-bottom: clamp(60px, 5vw, 75px);

    text-align: center;
}

@media (max-width: 750px) {

    .lugar-seccion {
        padding: 75px 30px 60px;
    }

}

.lugar-contenido {
    max-width: 500px;

    text-align: left;
}

.nombre-finca {
    font-size: clamp(34px, 3vw, 44px);

    font-weight: normal;

    margin: 10px 0;
}

.lugar-ubicacion {
    font-family: Arial, sans-serif;

    font-size: 13px;

    letter-spacing: 2px;

    text-transform: uppercase;

    margin: 0 0 30px;
}

.lugar-descripcion {
    margin: 0;

    font-size: 18px;

    line-height: 1.8;
}

.lugar-contenedor {
    display: grid;

    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    align-items: center;

    gap: clamp(45px, 7vw, 90px);

    max-width: 1100px;

    margin: 0 auto;
}


/* ==============================
   MAPA
   ============================== */

.mapa {
    max-width: 1000px;

    height: 450px;

    margin: 65px auto 35px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.lugar-seccion .mapa {
    width: 100%;

    max-width: none;

    margin: 0;
}

.mapa iframe {
    width: 100%;

    height: 100%;

    border: 0;
}

@media (max-width: 750px) {

    .mapa {
        height: auto;
        aspect-ratio: 4 / 3;
        max-height: 360px;
    }

    .lugar-contenedor {
        grid-template-columns: minmax(0, 1fr);

        gap: 45px;
    }

    .lugar-contenido {
        max-width: 620px;

        margin: 0 auto;
    }

}


.mapa-boton {
    display: inline-block;

    background-color: var(--verde);

    color: white;

    padding: 13px 25px;

    text-decoration: none;

    font-family: Arial, sans-serif;

    font-size: 10px;

    letter-spacing: 2px;

    text-transform: uppercase;

    transition: opacity 0.2s ease;
}

.mapa-boton:hover {
    opacity: 0.8;
}


/* ==============================
   MÓVIL
   ============================== */

@media (max-width: 1100px) {
    
    .cabecera {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;

        justify-items: center;

        gap: 0;

        padding: 25px 20px 0;
    }

    .menu-izquierda,
    .menu-derecha {
        display: none;
    }

    .logo {
        grid-column: 1;
        grid-row: 1;

        width: 145px;
    }

    .menu-movil-boton {
        grid-column: 1;
        grid-row: 2;
    }

    .menu-movil {
        display: none;

        position: absolute;

        top: 100%;

        left: 15%;
        right: 15%;

        background-color: rgba(38, 53, 44, 0.97);

        padding: 15px 25px;

        text-align: center;

        border-radius: 2px;

        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    }

    .menu-movil a {
        display: block;

        padding: 12px 0;

        color: white;

        text-decoration: none;

        font-family: Arial, sans-serif;

        font-size: 11px;

        letter-spacing: 2px;

        text-transform: uppercase;
    }
}


/* ==============================
   TIPOGRAFÍA DE BODA
   ============================== */

.hero h1 {
    font-family: "Pinyon Script", cursive;

    font-weight: normal;
}

/* ==============================
   MENÚ MÓVIL
   ============================== */

.menu-movil-boton {
    display: none;

    background: none;
    border: none;

    color: white;

    font-family: Arial, sans-serif;
    font-size: 22px;

    cursor: pointer;

    padding: 8px;

    line-height: 1;
}


.menu-movil {
    display: none;
}

/* ==============================
   AJUSTE MENÚ MÓVIL
   ============================== */

@media (max-width: 1100px) {

    .menu-movil-boton {
        display: grid;

        width: 44px;
        height: 44px;

        padding: 0;

        place-items: center;
    }

    .menu-movil.abierto {
        display: block;
    }

}

@media (max-width: 750px) {

    .scroll-indicador {
        bottom: 50px;
    }

}
