/* =============================================
   CABAÑAS ECO FIBONACCI - index.css
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Inter:wght@400;500;700&family=Libre+Franklin:wght@400;700&family=Poppins:wght@400;600;700&display=swap');

/* =============================================
   RED DE PROTECCIÓN — anti-desborde horizontal
   Evita que un ancho fijo en cualquier elemento
   rompa el layout en pantallas pequeñas.
   ============================================= */
* {
    max-width: 100%;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* =============================================
   BASE
   ============================================= */

:root {
    --verde: #4f7b49;
    --verde-oscuro: #2f4f2f;
    --texto: #243126;
    --fondo: #f8f7f2;
    --sombra: 0 8px 24px rgba(0, 0, 0, 0.08);
    --radio: 20px;
}

html {
    scroll-behavior: smooth;
    background-color: var(--fondo);
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    background: var(--fondo);
    color: var(--texto);
    font-family: "Inter", sans-serif;
}

/* =============================================
   HEADER & NAV
   ============================================= */

header {
    background-repeat: no-repeat;
    background-image: url(../SVG/0_1\ 1.svg);
    
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

#logo {
    width: 280px;
    height: 82px;
    margin-top: 10px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

#isotipo {
    position: absolute;
    width: 60px;
    height: 60px;
    margin-left: 250px;
    margin-top: 190px;
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

/* ================================
   COLOR DEL ISOTIPO
   - Si el isotipo es un SVG inline, usa la regla `#isotipo svg { fill: ... }`.
   - Si el SVG usa `currentColor`, puedes controlar su color con `color`.
   - Si es una imagen externa (<img>), considera inyectar el SVG inline o editar el archivo SVG.
*/
#isotipo {
    color: #e5a93c; /* cambia este valor por el color que quieras */
}

/* Forzar el color de todos los elementos internos del SVG (anula estilos inline) */
#isotipo svg, #isotipo svg * {
    fill: currentColor !important;
    stroke: none !important;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 58px;
    margin-bottom: 0;
    padding: 0 24px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 0;
    margin: 0;
}

nav ul li a {
    font-family: poppins, sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
    transition: background-color 0.3s, color 0.3s, transform 0.2s ease;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
}

nav ul li a:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

/* =============================================
   TIPOGRAFÍA
   ============================================= */

h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

h4 {
    font-family: "Libre Franklin", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    border-radius: 15px;
    margin-top: 40px;
    margin-bottom: 48px;
    margin-left: 60px;
    margin-right: 60px;
}

/* =============================================
   BOTONES
   ============================================= */

button {
    display: flex;
    width: 200px;
    height: 56px;
    gap: 0px;
    border-radius: 55px;
    flex-wrap: wrap;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 20px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

button, .reserva, .buttons button {
    transition: background-color 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
}

button:hover, .reserva:hover, .buttons button:hover {
    background: #ffd700;
    color: #222;
    box-shadow: 0 6px 18px rgba(69, 143, 246, 0.18);
    transform: translateY(-2px) scale(1.03);
}


/* =============================================
   INPUTS Y FORMULARIOS
   ============================================= */

input, select {
    border: 2px solid #a8d400;
    background: #fff;
    color: #3d5c00;
    border-radius: 4px;
    padding: 0.5em;
    font-size: 1em;
    margin-bottom: 0.5em;
    transition: border-color 0.2s;
}

input:focus, select:focus {
    border-color: #ffd700;
    outline: none;
}

#quienes {
    display: grid;
    border: none;
    font-family: "Inter", sans-serif;
    font-size: 10px;
    box-shadow: none;
    background-color: rgba(114, 226, 174, 0);
    width: 200px;
    height: 10px;
    color: rgba(0, 0, 0, 0.8);
}

#num-personas {
    display: grid;
    text-align: left;
    width: 200px;
    height: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.12);
    background-color: rgba(255, 255, 255, 0.8);
    padding: 8px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
}

#num-niños {
    display: grid;
    width: 200px;
    height: 40px;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.12);
    background-color: rgba(255, 255, 255, 1);
    padding: 8px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    position: relative;
}

#fecha-ingreso, #fecha-salida {
    width: 100%;
    min-width: 140px;
    height: 42px;
    border-radius: 10px;
    padding: 0 12px;
    font-size: 13px;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    color: #222;
    box-shadow: 0 8px 24px rgba(31, 38, 135, 0.08);
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #d8e4d4;
}

/* =============================================
   CUSTOM MULTISELECT
   ============================================= */

.custom-multiselect {
    position: relative;
    width: 100%;
    max-width: 220px;
    margin-bottom: 10px;
}

.custom-multiselect-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.custom-multiselect input[type="text"] {
    width: 100%;
    padding: 8px;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.custom-multiselect-dropdown {
    display: none;
    position: absolute;
    margin-top: 2px;
    width: 100%;
    max-width: 220px;
    z-index: 200;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 8px rgba(31, 38, 135, 0.08);
}

.custom-multiselect-dropdown label {
    display: block;
    padding: 6px 12px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #222;
    cursor: pointer;
}

.custom-multiselect-dropdown input[type="checkbox"] {
    accent-color: #458ff6;
    margin-right: 6px;
}

.custom-multiselect-dropdown label:hover {
    background: #f3f3f3;
}

/* =============================================
   DROPDOWN
   ============================================= */

.dropdown-content {
    display: none;
    position: absolute;
    left: 300px;
    top: 100px;
    background-color: #f9f9f9;
    min-width: 300px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    padding: 10px;
    max-height: 500px;
    overflow-y: auto;
    border-radius: 4px;
    z-index: 100;
}

.dropdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0px 100px 0px;
    margin-top: 80px;
}

/* =============================================
   SECCIÓN RESERVA
   ============================================= */

.reserva-datos {
    gap: 20px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(94vw, 1040px);
    padding: 28px;
    border-radius: 30px;
    box-shadow: var(--sombra);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(79, 123, 73, 0.16);
    box-sizing: border-box;
    margin: 0 auto 24px;
}

.reserva-datos label,
.field-label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 600;
    color: var(--verde-oscuro);
    font-size: 14px;
}

.reserva-datos input,
.reserva-datos select {
    border: 1px solid #d8e4d4;
    border-radius: 12px;
    padding: 10px 12px;
    font-size: 14px;
    background: #fff;
}

.reserva {
    background: linear-gradient(135deg, #4f7b49 0%, #2f4f2f 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1 / -1;
    justify-self: center;
    margin: 10px auto 0;
    width: min(100%, 280px);
    height: 58px;
    border-radius: 999px;
    font-size: 1.1rem;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(79, 123, 73, 0.22);
}

/* =============================================
   EDADES NIÑOS
   ============================================= */

#edades-ninos {
    display: grid;
    gap: 10px;
    width: 100%;
}

#edades-ninos label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-top: 5px;
}

#edades-ninos select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

/* =============================================
   SECCIÓN HERO / ARTICULO1
   ============================================= */

.articulo1 {
    display: flex;
    margin-top: 140px;
    padding: 0 24px;
}

.articulo1 h1 {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "abril fatface", sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    width: min(92vw, 1021px);
    max-width: 90vw;
    height: auto;
    margin: 0 auto 38px auto;
    color: rgba(245, 243, 244, 1);
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    line-height: 1.1;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    backdrop-filter: blur(4px);
}

.accent {
    color: #e5a93c;
    font-size: 1.8em;
    font-weight: bold;
    letter-spacing: 2px;
}

/* =============================================
   SECCIÓN SS (LAGUNA)
   ============================================= */

#seccion-ss,
#SS {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(94vw, 1180px);
    margin: 48px auto;
    gap: 32px;
    align-items: center;
    padding: 28px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 32px;
    box-shadow: var(--sombra);
}

.h2-container {
    width: 100%;
    display: flex;
    justify-content: left;
    margin-bottom: 16px;
}

.h2-container h2 {
    color: var(--verde-oscuro);
    font-size: 1.55rem;
    margin: 0;
}

.caja-parrafo-container {
    display: flex;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    height: auto;
    text-align: left;
    align-items: center;
    line-height: 1.75;
}

.img-elegirnos {
    background-image: url(/SVG/Laguna.svg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;   /* recomendable para móviles */
    width: 100%;
    max-width: 515px;
    height: 315px;
    border-radius: 24px;
    box-shadow: var(--sombra);
    border: 4px solid rgba(255, 255, 255, 0.8);
}

.ubicacion {
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    height: auto;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
}

/* =============================================
   GALERÍA DE FOTOS
   ============================================= */

.galeria-fotos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    margin: 0;
    padding: 0 0px;
    list-style: none;
}

.galeria-fotos li {
    border-radius: var(--radio);
    box-shadow: var(--sombra);
    width: 100%;
    height: auto;
    transition: transform 0.2s, box-shadow 0.2s;
    background: #fff;
}

.galeria-fotos li p {
    color: rgba(0, 0, 0, 0.9);
    font-family: "poppins", sans-serif;
    width: 100%;
    height: auto;
    margin-top: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
}


.galeria-fotos li:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.18);
}

.galeria-fotos img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 0;
    padding: 8% 10%;
    border-radius: 16px;

}

.galeria-fotos img:hover {
    transform: scale(1.08) rotate(-2deg);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.18);
}

/* =============================================
   CARD
   ============================================= */

#card {
    padding: 3% 5%;
    border: 0.2px solid rgba(114, 226, 174, 0.2);
    border-radius: 8px;
    transition: .6s;
    margin-top: 96px;
    margin-bottom: 96px;
}

#card:after {
    content: "";
    position: absolute;
    top: 150%;
    left: -200px;
    width: 120%;
    transform: rotate(50deg);
    background-color: #FDFDFD;
    height: 18px;
    filter: blur(30px);
    opacity: 0.5;
    transition: 1s;
}

#card:hover:after {
    width: 225%;
    top: -100%;
}

#card:hover {
    background-color: transparent;
    transform: translateY(-8px);
    border-color: #F3F3F3;
}

h3 {
    margin: 0 auto 50px;
    text-align: center;
    color: black;
    font-size: 2rem;
    font-family: "Libre Franklin", sans-serif;
    width: min(90vw, 423px);
}


/* =============================================
   SECCIÓN BLOG / EXPERIENCIAS
   ============================================= */

#blog {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
    width: min(94vw, 1180px);
    margin: 48px auto;
}

#blog .caja3 {
    color: black;
    gap: 30px;
    font-size: 2rem;
    font-family: "Libre Franklin", sans-serif;
    width: 100%;
    max-width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.78);
    padding: 24px;
    border-radius: 24px;
    box-shadow: var(--sombra);
}

.caja-parrafo {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    width: 100%;
    max-width: 100%;
    height: auto;
    line-height: 1.8;
}

/* =============================================
   CONTENEDOR BOXES
   ============================================= */
.areas {
    font-family: "Libre Franklin", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    text-align: left;
    width: 500px;
}

.contenedor4 {
    display: flex;
    flex-direction: row;
    margin-top: 60px;
    margin-left: auto;
    gap: 30px;
}

.contenedor4 .box {
    padding: 0;          /* cambia 30px por 0 */
    border-radius: 15px;
    width: 300px;
    height: auto;
    min-height: 350px;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    gap: 60px;
}

.video-card-media {
    border-radius: 18px;
    box-shadow: var(--sombra);
    object-fit: cover;
}

.box {
    box-shadow: var(--sombra);
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: var(--radio);
    background: #fff;
}

.box-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 16px 16px;
}

.box .button-secondary {
    margin: 0;
    color: #fff;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: auto;
    width: auto;
    min-width: 240px;
    max-width: 90%;
    padding: 12px 18px;
    gap: 4px;
    border-radius: 16px;
    white-space: nowrap;
    background: linear-gradient(135deg, #4f7b49 0%, #2f4f2f 100%);
    box-shadow: 0 10px 20px rgba(79, 123, 73, 0.18);
}

.box .button-secondary .hook {
    font-size: 11px;
    font-weight: 500;
    opacity: 0.85;
    white-space: nowrap;
}

.box .button-secondary .place-name {
    font-size: 16px;
    font-weight: 700;
}

.contenedor4 .button-secondary {
    background-color: #1c2332;
    font-family: "Inter", sans-serif;
    font-size: 18px;
    position: sticky;
}

.contenedor4 .video-inline-control {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px 0;
    margin: 0;
}

.contenedor4 .video-inline-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 28px;
    min-height: 28px;
    padding: 0;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(28, 35, 50, 0.95), rgba(79, 93, 122, 0.95));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    opacity: 1;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.contenedor4 .video-inline-play:hover,
.contenedor4 .video-inline-play:focus-visible {
    background: linear-gradient(90deg, rgba(28, 35, 50, 1), rgba(92, 109, 142, 1));
    transform: scale(1.03);
    outline: none;
}

/* =============================================
   CLIENTES / SLIDER
   ============================================= */

#clientes {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 108px;
}

.slider {
    position: relative;
    width: 640px;
    max-width: 90vw;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 18px;
    background: white;
    box-shadow: var(--sombra);
    height: auto;
    display: block;
}

.slides {
    display: flex;
    transition: transform 0.6s ease-in-out;
}

.slide {
    text-align: center;
    min-width: 100%;
    padding: 20px;
    box-sizing: border-box;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide img {
    width: auto;
    max-width: 80%;
    max-height: 350px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    transition: background-color 0.3s, box-shadow 0.2s;
}

.buttons button {
    width: 16px;
    height: 16px;
    margin: 0 6px;
    border: none;
    border-radius: 50%;
    background: #bbb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    font-size: 0;
    outline: none;
    margin-top: 0;
}

.buttons button:hover {
    background: #458ff6;
    box-shadow: 0 4px 12px rgba(69, 143, 246, 0.25);
}

/* =============================================
   ANIMACIONES
   ============================================= */

.fade-in {
    opacity: 0;
    transform: translateY(40px);
}

@keyframes anim {
    95% { opacity: 1; }
    100% { opacity: 0; left: 88%; }
}

/* =============================================
   BOTONES FIJOS (WhatsApp / Scroll Top)
   ============================================= */

#scrollTopBtn {
    position: fixed;
    right: 32px;
    bottom: 32px;
    z-index: 9999;
    background: #458ff6;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 2rem;
    display: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: background-color 0.2s, transform 0.2s;
    margin-top: 0;
}

#scrollTopBtn:hover {
    background: #ffd700;
    color: #222;
    transform: scale(1.1);
}

.whatsapp-btn {
    position: fixed;
    left: 32px;
    bottom: 32px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
    background: #128c7e;
}

.whatsapp-btn i {
    font-size: 1.5rem;
}

.whatsapp-btn span {
    display: inline-block;
}

/* =============================================
   FOOTER
   ============================================= */

footer {
    margin-top: 24px;
}

.footer-bg-container {
    position: relative;
    width: 100%;
    height: 445px;
    background: linear-gradient(135deg, #ecf0e7 0%, #d6dbca 100%);
}

.img-footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 445px;
    object-fit: cover;
    z-index: 1;
}

.img-footer-fibo {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 445px;
    object-fit: cover;
    opacity: 0.8;
    z-index: 2;
    pointer-events: none;
}

.footer-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    color: #1f3422;
    font-family: "Abril Fatface", serif;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    text-align: center;
    width: min(90%, 760px);
    pointer-events: none;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 24px 40px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.5);
}

.foot {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 40px 20px;
    background-color: var(--verde);
    background-image: url('/assets/img/path147.webp');
    background-size: cover;
    background-position: center;
    gap: 20px;
    flex-wrap: wrap;
}

.logo-footer {
    width: 160px;
    height: 160px;
    object-fit: contain;
    -webkit-mask-image: radial-gradient(circle, black 55%, transparent 85%);
    mask-image: radial-gradient(circle, black 55%, transparent 85%);
}

.foot ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.foot .list li {
    margin-bottom: 10px;
}

.foot .list li a {
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.foot .list li a:hover {
    color: #d6e8c8;
}

.social-media li a {
    color: #ffffff;
    font-size: 22px;
    transition: transform 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.social-media li a:hover {
    color: var(--verde-oscuro);
    background: #ffffff;
    transform: translateY(-2px);
}

.footer-copy {
    text-align: center;
    padding: 14px;
    background-color: var(--verde-oscuro);
    color: #ffffff;
    font-size: 13px;
}

/* =============================================
   MEDIA QUERIES — RESPONSIVE
   ============================================= */

/* Tablet grande / laptop pequeño */
@media (max-width: 1200px) {
    nav {
        margin-left: 40px;
        margin-right: 40px;
    }

    nav ul {
        width: auto;
        gap: 20px;
    }

    .reserva-datos {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px 10px;
        width: 90vw;
    }

    .galeria-fotos {
        grid-template-columns: repeat(2, 1fr);
    }

    #blog {
        margin-left: 40px;
        margin-right: 40px;
    }

    h3 {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }


}

/* Tablet */
@media (max-width: 900px) {
    nav ul {
        gap: 12px;
        width: 100%;
    }

    #seccion-ss {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        height: auto;
        gap: 40px;
        padding: 20px;
    }

    .img-elegirnos {
        width: 90vw;
        height: 240px;
        background-position: center;
    }

    .ubicacion {
        width: 90vw;
        height: auto;
    }

    .caja-parrafo-container {
        width: 80vw;
    }


    .reserva-datos {
        grid-template-columns: repeat(2, 1fr);
        width: 90vw;
        padding: 10px;
    }

    .reserva {
        margin: 20px auto;
    }


    .galeria-fotos {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 16px;
    }

    .slider {
        max-width: 90vw;
    }

    .footer-bg-container,
    .img-footer-bg,
    .img-footer-fibo {
        height: 220px;
    }

    .footer-text-overlay {
        height: auto;
        font-size: 1.5rem;
    }

    .logo-footer {
        width: 100px;
        height: 100px;
    }

    .foot {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
        text-align: center;
    }

    .articulo1 h1 {
        font-size: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }

    #blog {
        flex-direction: column;
        align-items: center;
        margin-left: 20px;
        margin-right: 20px;
    }

    #blog .caja3 {
        font-size: 2rem;
        width: 90vw;
        margin-top: 40px;
    }
}

/* Móvil */
@media (max-width: 600px) {
    .areas {
        width: 100%;
        font-size: 1.5rem;
    }

    .contenedor4 .box {
        width: 90vw;
    }

    nav {
        flex-direction: column;
        margin: 10px 0;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
        gap: 8px;
        width: 100%;
        height: auto;
        align-items: center;
    }

    #logo {
        width: 120px;
        height: auto;
        margin: 0 auto;
    }

    #isotipo {
        width: 26px;
        height: 26px;
        margin-left: 108px;
        margin-top: 82px;
    }

    #botones {
        margin: 8px auto;
    }

    h3 {
        font-size: 1.5rem;
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .articulo1 {
        margin-top: 30vw;
    }

    .articulo1 h1 {
        font-size: 1.8rem;
        width: 90vw;
        margin-left: auto;
        margin-right: auto;
    }

    .accent {
      font-size: 1.2em;       /* más pequeño para móviles */
      letter-spacing: 1px;    /* reduce el espaciado entre letras */
      text-align: center;     /* centra el texto en pantallas pequeñas */
      display: block;         /* asegura que se muestre en línea completa */
      margin: 8px auto;       /* agrega margen para respiración visual */
    }


    .reserva-datos {
        grid-template-columns: 1fr;
        width: 90vw;
        padding: 10px;
        margin: 10px auto;
    }

    .dropdown {
        padding: 0 0 40px 0;
    }

    .reserva {
        margin: 20px auto;
        width: 90%;
    }


    #seccion-ss {
        display: grid;
        grid-template-columns: 1fr;
        width: 100%;
        gap: 24px;
        margin-top: 40px;
        margin-bottom: 40px;
        height: auto;
        padding: 0 16px;
    }

    .img-elegirnos {
        width: 95vw;
        height: 180px;
        background-position: center;
        border-radius: 16px; /* esquinas más suaves en móviles */
    }

    .ubicacion {
        width: 90vw;
        height: auto;
    }

    .galeria-fotos {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }

    .galeria-fotos li {
        width: 100%;
        height: auto;
        border-radius: 12px;
    }

    .slider {
        max-width: 95vw;
    }

    .footer-bg-container,
    .img-footer-bg,
    .img-footer-fibo {
        height: 140px;
    }

    .footer-text-overlay {
        font-size: 1.1rem;
        height: auto;
    }

    .logo-footer {
        width: 80px;
        height: 80px;
    }

    .foot {
        flex-direction: column;
        gap: 16px;
        padding: 20px 10px;
        text-align: center;
    }

    .foot .list li a {
        font-size: 14px;
    }

    .social-media {
        flex-direction: row;
        gap: 24px;
    }

    #blog .caja3 {
        font-size: 1.5rem;
        width: 90vw;
        height: auto;
        margin-top: 30px;
    }

    .caja-parrafo {
        width: 90vw;
        font-size: 16px;
    }

    .contenedor4 {
        flex-direction: column;
        align-items: center;
    }

    .contenedor4 .box {
        width: 90vw;
    }

    h4 {
        margin-left: 20px;
        margin-right: 20px;
        font-size: 1.2rem;
    }
}