@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
  --verde-yanay: #4A6C3D;
  --verde-oscuro: #1F3922;
  --dorado-yanay: #d4af37;
  --gris-claro: #F5F5F5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body, html {
  overflow-x: hidden;
}

/* ================================
   MODAL FONDO
================================ */
.yanay-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    backdrop-filter: blur(4px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

/* ================================
   CONTENIDO DEL MODAL
================================ */
.yanay-modal-content {
    background: #ffffff;
    padding: 35px;
    width: 95%;
    max-width: 540px;
    border-radius: 22px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.30);
    animation: fadeInDown .35s ease-out;
    position: relative;
}

/* BOTÓN DE CERRAR */
.yanay-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 32px;
    cursor: pointer;
    color: #444;
    transition: .2s ease;
}

.yanay-modal-close:hover {
    color: var(--verde-yanay);
}

/* TÍTULO */
.yanay-modal-content h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 25px;
    color: var(--verde-yanay);
}

/* Animación */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-25px); }
    to { opacity: 1; transform: translateY(0); }
}
/* ==============================
   TOAST — HACIENDA YANAY
============================== */

#yanay-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #e8f5e9;
    color: #1d5c42;
    padding: 15px 25px;
    border-left: 5px solid #1d5c42;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    opacity: 0;
    animation: yanay-toast-in .45s ease forwards;
}

.yanay-toast-close {
    background: none;
    border: none;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    color: #1d5c42;
}

@keyframes yanay-toast-in {
    from { opacity: 0; transform: translate(-50%, -10px); }
    to   { opacity: 1; transform: translate(-50%, 0); }
}

@keyframes yanay-toast-out {
    from { opacity: 1; transform: translate(-50%, 0); }
    to   { opacity: 0; transform: translate(-50%, -10px); }
}
---------------------------diseño d eformulario del footer---------------

/* ==========================================================
   MODAL — FORMULARIO DE RESERVAS YANAY (VERSIÓN PREMIUM)
========================================================== */

.yanay-modal-content {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 18px;
    max-width: 480px;
    width: 90%;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
    text-align: left;
    border: 2px solid rgba(74,108,61,0.20);
}

.yanay-modal-content h2 {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: var(--verde-yanay);
    margin-bottom: 20px;
}

/* Inputs */
.yanay-reserva-form input,
.yanay-reserva-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 2px solid #c7dfc2;
    font-size: 15px;
    margin-bottom: 15px;
    outline: none;
    transition: .25s;
}

.yanay-reserva-form input:focus,
.yanay-reserva-form textarea:focus {
    border-color: var(--verde-yanay);
    box-shadow: 0 0 0 3px rgba(74,108,61,0.25);
}

/* Labels */
.yanay-reserva-form label {
    font-size: 14px;
    font-weight: 600;
    color: var(--verde-oscuro);
    margin-bottom: 4px;
    display: block;
}

/* Fila Llegada/Salida */
.yanay-form-row {
    display: flex;
    gap: 15px;
}

.yanay-form-row div {
    flex: 1;
}

/* Botón enviar */
.btn-reservar-modal {
    width: 100%;
    text-align: center;
    padding: 14px;
    margin-top: 10px;
    border-radius: 10px;
    background: var(--verde-yanay);
    color: white;
    border: none;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

.btn-reservar-modal:hover {
    background: var(--verde-oscuro);
}
/* BOTÓN DEL FORMULARIO MODAL — HACIENDA YANAY */
.btn-reservar-modal {
    background-color: #4A6C3D !important; /* Verde Yanay */
    color: #fff !important;
    padding: 12px 22px !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    cursor: pointer;
    text-align: center;
    width: 100%;
    display: block;
    margin: 20px auto 0 auto !important;
    transition: background 0.3s ease;
}

.btn-reservar-modal:hover {
    background-color: #3a552f !important;
}
/* Forzar que el botón del modal esté centrado SIEMPRE */
.yanay-reserva-form {
    display: flex !important;
    flex-direction: column !important;
}

.yanay-reserva-form .btn-reservar-modal {
    width: auto !important;
    min-width: 220px !important;
    text-align: center !important;
    margin: 20px auto 0 auto !important;
    display: block !important;
}
----------------------------------------------------------------------------


/* ===================================================================
   CALENDARIO MOTOpress (Keith Wood) — YANAY PRO 2025
   Diseño moderno tipo Airbnb/Booking
   =================================================================== */

/* CONTENEDOR */
.mphb-datepick-popup {
    background: #ffffff !important;
    border-radius: 20px !important;
    padding: 18px !important;
    box-shadow: 0 15px 45px rgba(0,0,0,0.20) !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    overflow: hidden !important;
}

/* NAV SUPERIOR (Ant – Hoy – Sig) */
.mphb-datepick-popup .datepick-nav {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 10px 14px !important;
    background: var(--verde-oscuro) !important;
    border-radius: 14px !important;
    margin-bottom: 14px !important;
    color: #fff !important;
    font-weight: 600 !important;
}

/* Botones Ant / Sig / Hoy */
.mphb-datepick-popup .datepick-nav a {
    background: rgba(255,255,255,0.15) !important;
    padding: 6px 10px !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: .25s ease;
}

.mphb-datepick-popup .datepick-nav a:hover {
    background: rgba(255,255,255,0.28) !important;
}

/* HEADER DEL MES */
.mphb-datepick-popup .datepick-month-header {
    background: var(--verde-yanay) !important;
    padding: 10px !important;
    color: white !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 12px !important;
    text-transform: capitalize !important;
}

/* TABLA */
.mphb-datepick-popup table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 6px !important;
}

/* Días de la semana */
.mphb-datepick-popup th {
    color: var(--verde-oscuro) !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding-bottom: 4px !important;
}

/* Celdas normales */
.mphb-datepick-popup td .mphb-date-cell,
.mphb-datepick-popup td .mphb-selectable-date {
    background: #f0f4ef !important;
    color: #2a2a2a !important;
    border-radius: 10px !important;
    padding: 8px 0 !important;
    font-weight: 600 !important;
    border: 1px solid transparent !important;
    transition: all 0.25s ease !important;
    text-align: center !important;
}

/* HOVER */
.mphb-datepick-popup td .mphb-date-cell:hover,
.mphb-datepick-popup td .mphb-selectable-date:hover {
    background: var(--verde-yanay) !important;
    color: #fff !important;
    transform: scale(1.05);
}

/* Día seleccionado */
.mphb-datepick-popup td .datepick-selected,
.mphb-datepick-popup td .mphb-date-selected {
    background: var(--dorado-yanay) !important;
    color: #1f1f1f !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
}

/* BOTONES "Limpiar" y "Cerrar" */
.mphb-datepick-popup .datepick-cmd {
    background: var(--verde-yanay) !important;
    padding: 10px 18px !important;
    border-radius: 10px !important;
    color: #fff !important;
    font-weight: 700 !important;
    margin-top: 16px !important;
}

.mphb-datepick-popup .datepick-cmd:hover {
    background: var(--verde-oscuro) !important;
}
/* ============================================================
   FIX: Barra inferior del calendario (datepick-ctrl)
   ============================================================ */

.mphb-datepick-popup .datepick-ctrl {
    background: transparent !important;   /* Quitar rojo feo */
    border: none !important;
    padding: 0 !important;
    margin-top: 10px !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 12px !important;
}

/* Botones: Limpiar y Cerrar */
.mphb-datepick-popup .datepick-ctrl .datepick-cmd {
    flex: 1 !important;                               /* Mismo ancho */
    background: var(--verde-yanay) !important;        /* Verde Yanay */
    color: #fff !important;
    padding: 10px 0 !important;
    border-radius: 10px !important;
    font-weight: 700 !important;
    text-align: center !important;
    border: none !important;
}

.mphb-datepick-popup .datepick-ctrl .datepick-cmd:hover {
    background: var(--verde-oscuro) !important;
}
/* ================================
   FIX REAL: DÍAS DEL CALENDARIO
   ================================ */
.mphb-datepick-popup td.datepick-day span,
.mphb-datepick-popup td.datepick-today span,
.mphb-datepick-popup td.datepick-selected span {
    background: #ffffff !important;          /* Fondo BLANCO */
    color: var(--verde-yanay) !important;    /* Texto VERDE YANAY */
    border-radius: 10px !important;
    border: 1px solid rgba(0,0,0,0.08) !important;
    padding: 7px 0 !important;
    display: block !important;
    font-weight: 600 !important;
    transition: 0.25s ease !important;
}

/* Hover REAL */
.mphb-datepick-popup td.datepick-day span:hover {
    background: var(--verde-oscuro) !important;
    color: #fff !important;
    transform: scale(1.05);
}

/* Día seleccionado REAL */
.mphb-datepick-popup td.datepick-selected span {
    background: var(--dorado-yanay) !important;
    color: #000 !important;
    font-weight: 700 !important;
}
/* ============================================
   FIX — DÍAS DE LA SEMANA (Lu, Ma, Mi…) Blanco
   SIN romper la grilla
=============================================== */
.datepick-month thead th span[class^="datepick-dow-"] {
    background: #ffffff !important;     /* fondo blanco */
    color: var(--verde-yanay) !important; /* texto verde */
    border: none !important;
    padding: 2px 0 !important;           /* padding mínimo para no romper tamaño */
    box-shadow: none !important;
}
/* ============================================
   DÍAS DE LA SEMANA SIN CUADRO (Lu, Ma, Mi…)
   — Texto limpio, sin fondo ni padding —
=============================================== */

/* Eliminar fondo, borde y padding del texto */
.datepick-month thead th span[class^="datepick-dow-"] {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    color: var(--verde-yanay) !important;
}

/* También quitar fondo del TH que los envuelve */
.datepick-month thead th {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}
----------------------------------------------------------------------
/* ================================================
   ELIMINAR TODOS LOS ESPACIOS DEL CONTENEDOR NAV
================================================ */
.datepick-nav {
    padding: 0 !important;
    margin: 0 !important;
    background: var(--verde-yanay) !important;  /* FONDO VERDE TAMBIÉN AQUÍ */
}

.datepick {
    border: none !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    padding: 0 !important;
}

.datepick-month {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.datepick-month-row {
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ================================================
   HEADER — TODO VERDE SIN ESPACIOS
================================================ */
.datepick-month-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background: var(--verde-yanay) !important;
    padding: 10px 0 !important;
    border-radius: 0 !important;
    height: 40px !important;
    box-sizing: border-box !important;
    border: none !important;
    margin: 0 !important;
    width: 100% !important;
}

/* ================================================
   SELECT — TEXTO BLANCO
================================================ */
.datepick-month-header select {
    background-color: transparent !important;
    color: #ffffff !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    
    padding: 0 26px 0 6px !important;
    height: 28px !important;
    line-height: 28px !important;
    
    display: inline-flex !important;
    align-items: center !important;
    
    cursor: pointer !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
}

.datepick-month-header select:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

.datepick-month-header select::-ms-expand {
    display: none !important;
}

/* ================================================
   FLECHA BLANCA
================================================ */
.datepick-month-header select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg width='12' height='8' viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat !important;
    background-position: right 6px center !important;
    background-size: 12px !important;
}

/* ================================================
   OPCIONES DEL SELECT
================================================ */
.datepick-month-header select option {
    background: #ffffff !important;
    color: #333 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
}

.datepick-month-header select option:hover,
.datepick-month-header select option:focus,
.datepick-month-header select option:checked {
    background: var(--verde-yanay) !important;
    color: #ffffff !important;
}

/* ================================================
   ALINEACIÓN PERFECTA
================================================ */
.datepick-month-first .datepick-month-header,
.datepick-month-last .datepick-month-header {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
}

/* ================================================
   CONTENEDOR DE BOTONES — REDUCIR ESPACIO SUPERIOR
================================================ */
.datepick-ctrl {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Fila de botones */
.datepick-ctrl .datepick-cmd {
    margin-top: 8px !important;  /* ESPACIO DESDE EL CALENDARIO */
    padding-top: 0 !important;
}

/* Botones individuales */
.datepick-ctrl a,
.datepick-ctrl button {
    margin-top: 0 !important;
}

/* Contenedor específico si existe */
div[class*="datepick"] > .datepick-ctrl {
    transform: translateY(-10px) !important;  /* MUEVE TODO HACIA ARRIBA */
}

/* Si los botones están en un div específico */
.datepick-month-row + * {
    margin-top: 8px !important;
}




/* Ocultar botón "Comprobar disponibilidad" cuando existe "Confirmar reserva" */
.mphb-booking-form .mphb-reserve-btn-wrapper.mphb-hide {
    display: none !important;
}

/* Ocultar también si tiene la clase específica */
p.mphb-reserve-btn-wrapper.mphb-hide,
.mphb_sc_search-submit-button-wrapper.mphb-hide {
    display: none !important;
}

/* Cuando existe el botón confirmar, ocultar el comprobar */
.mphb-booking-form:has(.mphb-book-button) .mphb-reserve-btn-wrapper:not(:has(.mphb-book-button)) {
    display: none !important;
}












/* ======================================================
   SISTEMA DE FONDOS UNIFICADO - HACIENDA YANAY
   ====================================================== */

/* FONDO CREMITA - Color principal */
.bloque-cremita-antes-habitaciones,
.bloque-cremita-total,
.seccion-cremita,
.bloque-blanco-total {
    background: #F8F9F8 !important;
    padding-bottom: 0 !important;
}

/* Hero + Buscador */
.bloque-cremita-antes-habitaciones {
    padding-top: 0;
}

/* Habitaciones */
.bloque-cremita-total {
    padding-top: 5px;
}

/* Secciones internas sin fondo propio */
.habitaciones-destacadas,
.yanay-galeria,
.yanay-actividades-carrusel,
.yanay-comodidades {
    background: transparent !important;
}

/* Espaciado de secciones cremitas */
.seccion-cremita {
    padding-top: 50px !important;
}

/* FONDO BLANCO - Para testimonios */
.fondo-blanco,
.yanay-testimonios {
    background: #ffffff !important;
}

/* Eliminar márgenes que crean franjas */
.yanay-actividades-carrusel,
.yanay-comodidades {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Ajustar padding del bloque blanco total */
.bloque-blanco-total {
    padding: 60px 0 80px 0 !important;
}
















/* Highlight con borde verde Yanay más grueso y visible */
.mphb_sc_search-form.yanay-buscador-highlight {
    animation: yanayBorderGlow 3s ease-out;
    border-radius: 25px !important;
}

@keyframes yanayBorderGlow {
    0% {
        box-shadow: 0 0 0px 0 rgba(58, 90, 47, 0);
        border: 4px solid rgba(58, 90, 47, 0);
    }
    25% {
        box-shadow: 0 0 18px 8px rgba(58, 90, 47, 0.6);
        border: 4px solid rgba(58, 90, 47, 0.9);
    }
    50% {
        box-shadow: 0 0 25px 12px rgba(58, 90, 47, 0.5);
        border: 4px solid rgba(58, 90, 47, 0.8);
    }
    75% {
        box-shadow: 0 0 18px 8px rgba(58, 90, 47, 0.4);
        border: 4px solid rgba(58, 90, 47, 0.7);
    }
    100% {
        box-shadow: 0 0 0px 0 rgba(58, 90, 47, 0);
        border: 4px solid rgba(58, 90, 47, 0);
    }
}




































