/* RESET GENERAL */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #fafafa;
    color: #222;
    margin: 0;
}

/* TOPBAR */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 32px;
    background: #fff;
    font-size: 1rem;
}
.topbar span a {
    color: #3bb891;
    text-decoration: none;
}

.topbar .btn-reservar a {
    color: #ffffff;
    text-decoration: none;  
}

.btn-reserva {
    background: #86bba1;
    color: #ffffff;
    padding: 8px 24px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1em;
    transition: background .2s;
}
.btn-reserva:hover {
    background: #3bb891;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
}
.slide {
    display: none;
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    transition: opacity .8s;
}
.slide.active {
    display: block;
    animation: fadein .8s;
}
@keyframes fadein {
    from { opacity: 0; }
    to { opacity: 1; }
}
.hero-text {
    position: absolute;
    left: 40px;
    top: 60px;
    max-width: 650px;
}
.headline {
    background: #56b3a9;
    color: #fff;
    display: inline-block;
    font-size: 2.1rem;
    font-weight: bold;
    letter-spacing: 1px;
    padding: 10px 18px 8px 18px;
    margin-bottom: 6px;
    border-radius: 2px;
    box-shadow: 0 2px 7px rgba(0,0,0,.09);
    text-transform: uppercase;
}
.subheadline {
    background: #111;
    color: #fff;
    display: inline-block;
    font-size: 1.09rem;
    line-height: 1.6em;
    margin-top: 6px;
    padding: 9px 17px;
    border-radius: 2px;
    box-shadow: 0 2px 7px rgba(0,0,0,.18);
    max-width: 550px;
}
.dots {
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    z-index: 3;
}
.dot {
    display: inline-block;
    width: 13px; height: 13px;
    border-radius: 50%;
    margin: 0 6px;
    background: #fff9;
    border: 2px solid #56b3a9;
    cursor: pointer;
    transition: background .2s, border .2s;
}
.dot.active {
    background: #56b3a9;
    border: 2px solid #fff;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    color: #fff;
    padding: 15px 40px;
}
nav .logo a {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
}
nav .logo span {
    font-weight: normal;
    font-size: .95em;
    color: #b4b4b4;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 22px;
    margin: 0;
    padding: 0;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.13em;
    padding: 7px 11px;
    border-radius: 2px;
    transition: background .18s, color .18s;
}
nav ul li a:hover {
    background: #56b3a9;
    color: #fff;
}

/* HERO RESPONSIVE */
@media (max-width: 800px) {
    .hero-text { left: 5%; right: 5%; top: 30px; max-width: 90%; }
    .headline { font-size: 1.3rem; padding: 8px 12px; }
    .subheadline { font-size: 1em; padding: 8px 10px; }
    .hero-slider { height: 220px; }
    nav { flex-direction: column; gap: 12px; padding: 10px 8px;}
}
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/* SERVICIOS */
.servicios {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 28px;
    margin: 48px auto 0 auto;
    max-width: 1150px;
    padding: 0 16px;
}
.servicio {
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 18px #d6d7cdb6;
    text-align: center;
    flex: 1 1 300px;
    padding: 18px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.servicio img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 18px;
    box-shadow: 0 2px 10px #e0e4d1b9;
}
.servicio p {
    font-size: 1.1em;
    margin-bottom: 19px;
    color: #333;
    flex-grow: 1;
}
.btn-servicio {
    background: #56b3a9;
    color: #fff;
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.06em;
    box-shadow: 0 1px 7px #d0ded3ab;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
}
.btn-servicio:hover {
    background: #3bb891;
}
@media (max-width: 900px) {
    .servicios { flex-direction: column; gap: 32px; }
}

/* TEXTOS Y VIDEOS */
.texto {
    margin: 50px auto;
    max-width: 800px;
    padding: 0 16px;
    text-align: center;
    font-size: 1.1em;
    line-height: 1.6em;
    color: #444;
    background: #f9f9f9;
}
.texto iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}

/* FOOTER */
footer {
    background: #f4f6f4;
    color: #222;
    padding: 32px 10px 18px 10px;
    margin-top: 60px;
    font-size: 1.08em;
    border-top: 2px solid #e5ece1;
    text-align: center;
}
.footer-links {
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    color: #56b3a9;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 3px;
    transition: color 0.2s, background 0.2s;
}
.footer-links a:hover {
    color: #fff;
    background: #56b3a9;
}
.footer-content {
    margin-top: 8px;
    color: #444;
}
.footer-content a {
    color: #86bba1;
    text-decoration: underline;
}
.footer-content a:hover {
    color: #3bb891;
}
@media (max-width: 600px) {
    .footer-links { flex-direction: column; gap: 8px; }
    footer { font-size: 0.98em; padding: 22px 4px 10px 4px; }
}

/* FORMULARIO RESERVAS */
.form-section {
    max-width: 480px;
    margin: 56px auto 30px auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 22px #c3e5d3a6;
    padding: 36px 26px 26px 26px;
}
.form-section h1 {
    text-align: center;
    color: #3bb891;
    margin-bottom: 32px;
    font-size: 2rem;
}
.reserva-form .form-group {
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
}
.reserva-form label {
    font-weight: 500;
    color: #275b43;
    margin-bottom: 6px;
}
.reserva-form input[type="text"],
.reserva-form input[type="number"],
.reserva-form input[type="email"],
.reserva-form input[type="date"],
.reserva-form input[type="tel"] {
    padding: 10px;
    border: 1px solid #b1d2bb;
    border-radius: 4px;
    font-size: 1em;
    background: #f8faf7;
    transition: border 0.2s;
}
.reserva-form input:focus {
    border: 1.5px solid #3bb891;
    outline: none;
}
.reserva-form .checkbox {
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
}
.reserva-form input[type="checkbox"] {
    margin-right: 9px;
    accent-color: #56b3a9;
}
.reserva-form button[type="submit"] {
    background: #56b3a9;
    color: #fff;
    padding: 13px 0;
    width: 100%;
    border: none;
    border-radius: 4px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    margin-top: 18px;
    box-shadow: 0 2px 10px #e0e4d1b9;
    transition: background 0.2s;
}
.reserva-form button[type="submit"]:hover {
    background: #3bb891;
}
@media (max-width: 600px) {
    .form-section { padding: 20px 5px 10px 5px; }
}

/* COOKIE BANNER */
.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #222;
    color: #fff;
    z-index: 9999;
    padding: 22px 6vw 18px 6vw;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 20px #2228;
    animation: cookiefadein .7s;
}
@keyframes cookiefadein {
    from { opacity: 0; transform: translateY(40px);}
    to { opacity: 1; transform: translateY(0);}
}
.cookie-content {
    max-width: 600px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}
.cookie-content p {
    font-size: 1.07em;
    margin: 0 0 6px 0;
    color: #fff;
}
.cookie-content a {
    color: #3bb891;
    text-decoration: underline;
    font-weight: 500;
}
.cookie-actions {
    display: flex;
    gap: 14px;
    margin-top: 6px;
}
.cookie-btn {
    padding: 8px 22px;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, color .2s;
}
.cookie-btn.aceptar {
    background: #3bb891;
    color: #fff;
}
.cookie-btn.aceptar:hover {
    background: #275b43;
}
.cookie-btn.rechazar {
    background: #fff;
    color: #3bb891;
    border: 1.5px solid #3bb891;
}
.cookie-btn.rechazar:hover {
    background: #eee;
    color: #275b43;
    border-color: #275b43;
}
@media (max-width: 600px) {
    .cookie-banner {
        padding: 14px 4vw 12px 4vw;
    }
    .cookie-content { max-width: 98vw; }
    .cookie-actions { gap: 7px; }
    .cookie-btn { padding: 7px 13px; font-size: 0.97em;}
}

.entorno-section {
  max-width: 920px;
  margin: 0 auto 40px auto;
  padding: 48px 18px 38px 18px;
  background: #fff;
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 28px #dbeee0c6;
}
.entorno-section h1 {
  text-align: center;
  color: #3bb891;
  margin-bottom: 18px;
  font-size: 2rem;
}
.entorno-section h2 {
  color: #295c3c;
  margin-top: 18px;
  margin-bottom: 12px;
  font-size: 1.2rem;
  font-weight: 600;
}
.entorno-section h3 {
  color: #447347;
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 1.08rem;
}
.entorno-section p,
.entorno-section ul {
  color: #333;
  font-size: 1.1em;
  margin-bottom: 12px;
  line-height: 1.6;
}
.entorno-section ul {
  margin-left: 26px;
  margin-bottom: 18px;
}
.entorno-section li {
  margin-bottom: 6px;
}
.entorno-section small,
.entorno-section small a {
  display: block;
  margin-top: 18px;
  color: #bbb;
  text-align: right;
  font-size: 0.97em;
}
@media (max-width: 700px) {
  .entorno-section {
    padding: 22px 4vw 15px 4vw;
  }
}

.tarifas-section {
    background: #f6f6f6 url('img/bg-pattern.png') repeat;
    padding: 48px 18px 38px 18px;
    max-width: 880px;
    margin: 0 auto 40px auto;
    border-radius: 0 0 16px 16px;
}
.tarifas-section h1 {
    text-align: center;
    color: #3bb891;
    margin-bottom: 30px;
    font-size: 2rem;
}
.tarifa-box,
.promo-box {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 18px #dbeee0c6;
    padding: 28px 22px;
    margin-bottom: 32px;
    text-align: center;
}
.tarifa-img {
    width: 90%;
    max-width: 400px;
    border-radius: 6px;
    margin: 18px auto 16px auto;
    display: block;
    box-shadow: 0 1px 8px #e1e9dcab;
}
.tarifa-box p,
.promo-box p,
.promo-box ul {
    font-size: 1.09em;
    color: #333;
    margin-bottom: 19px;
}
.promo-box h3 {
    margin-bottom: 10px;
    color: #295c3c;
}
.promo-box ul {
    text-align: left;
    margin: 0 auto 15px auto;
    max-width: 400px;
    padding-left: 20px;
}
.promo-nota {
    color: #888;
    font-size: 0.95em;
    margin-top: 8px;
    margin-bottom: 20px;
}
.btn-servicio {
    background: #56b3a9;
    color: #fff;
    padding: 11px 24px;
    border-radius: 4px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.06em;
    box-shadow: 0 1px 7px #d0ded3ab;
    transition: background 0.2s;
    display: inline-block;
}
.btn-servicio:hover {
    background: #3bb891;
}
@media (max-width: 700px) {
    .tarifas-section {
        padding: 28px 5px 10px 5px;
    }
    .tarifa-img {
        max-width: 95vw;
    }
}

.habitaciones-section {
    max-width: 880px;
    margin: 0 auto 40px auto;
    padding: 46px 16px 38px 16px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 28px #dbeee0c6;
}
.habitaciones-section h1 {
    color: #3bb891;
    text-align: center;
    margin-bottom: 28px;
    font-size: 2rem;
}
.habitaciones-section p {
    color: #333;
    font-size: 1.13em;
    margin-bottom: 16px;
    text-align: center;
    line-height: 1.6;
}
.galeria-habitaciones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
    margin-top: 38px;
}
.galeria-habitaciones img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 2px 12px #e0e4d1b9;
    background: #e8ede5;
    display: block;
}
@media (max-width: 600px) {
    .galeria-habitaciones {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .habitaciones-section {
        padding: 16px 2vw 20px 2vw;
    }
}

.webcams-section {
    max-width: 1150px;
    margin: 0 auto 50px auto;
    padding: 48px 10px 18px 10px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 28px #dbeee0c6;
}
.webcams-section h1 {
    color: #3bb891;
    text-align: center;
    margin-bottom: 36px;
    font-size: 2rem;
}
.webcam-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}
.webcam-card {
    background: #f6f6f6;
    border-radius: 8px;
    box-shadow: 0 3px 14px #ddeee0a6;
    padding: 18px 10px 22px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.webcam-card img {
    width: 100%;
    max-width: 340px;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px #d8e6db9a;
}
.webcam-card h2 {
    font-size: 1.11rem;
    color: #447347;
    margin-bottom: 8px;
    min-height: 32px;
}
.webcam-card .btn-servicio {
    margin-top: 10px;
    font-size: 1em;
    padding: 8px 20px;
}
@media (max-width: 700px) {
    .webcams-section {
        padding: 18px 2vw 10px 2vw;
    }
    .webcam-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

.aviso-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 20px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 28px #dbeee0c6;
    font-size: 1.05em;
    line-height: 1.6;
    color: #333;
}

.aviso-section h1 {
    text-align: center;
    color: #3bb891;
    font-size: 2rem;
    margin-bottom: 32px;
}

.aviso-section h2 {
    color: #295c3c;
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 1.4rem;
    border-bottom: 2px solid #3bb891;
    padding-bottom: 6px;
}

.aviso-section h3 {
    color: #447347;
    margin-top: 20px;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.aviso-section p {
    margin-bottom: 16px;
}

.aviso-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.aviso-section a {
    color: #3bb891;
    text-decoration: underline;
    transition: color 0.2s;
}

.aviso-section a:hover {
    color: #275b43;
}

@media (max-width: 768px) {
    .aviso-section {
        padding: 24px 10px;
        font-size: 0.98em;
    }
    .aviso-section h1 {
        font-size: 1.6rem;
    }
    .aviso-section h2 {
        font-size: 1.2rem;
    }
}

.aviso-section {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 20px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    box-shadow: 0 4px 28px rgba(219, 238, 224, 0.78);
    font-size: 1.05em;
    line-height: 1.6;
    color: #333;
}

.aviso-section h1 {
    text-align: center;
    color: #3bb891;
    font-size: 2rem;
    margin-bottom: 32px;
}

.aviso-section h2 {
    color: #295c3c;
    margin-top: 28px;
    margin-bottom: 14px;
    font-size: 1.4rem;
    border-bottom: 2px solid #3bb891;
    padding-bottom: 6px;
}

.aviso-section h3 {
    color: #447347;
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.aviso-section p {
    margin-bottom: 16px;
}

.aviso-section ul {
    margin-left: 24px;
    margin-bottom: 16px;
    list-style: disc;
}

.aviso-section ul li {
    margin-bottom: 8px;
}

.aviso-section a {
    color: #3bb891;
    text-decoration: underline;
    transition: color 0.2s;
}

.aviso-section a:hover {
    color: #275b43;
}

@media (max-width: 768px) {
    .aviso-section {
        padding: 28px 12px;
        font-size: 0.98em;
    }
    .aviso-section h1 {
        font-size: 1.6rem;
    }
    .aviso-section h2 {
        font-size: 1.2rem;
    }
    .aviso-section h3 {
        font-size: 1.05rem;
    }
}

.whatsapp-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  background:#25D366;      /* verde oficial de WhatsApp :contentReference[oaicite:0]{index=0} */
  border-radius:50%;
  box-shadow: 0 4px 8px rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:transform .2s ease-in-out;
  z-index:1000;            /* por encima de sliders/menús */
}
.whatsapp-float:hover,
.whatsapp-float:focus{
  transform:scale(1.12);
}
@media (max-width:768px){
  .whatsapp-float{         /* un poco más pequeño en móviles */
    width:50px;height:50px;
    bottom:15px;right:15px;
  }
}
