﻿@font-face {
    font-family: 'Yes Free';
    src: url('fonts/Yes Free.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Yes Free', sans-serif;
}
/* Estilos generales */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
    background-color: lightgoldenrodyellow;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}



.logo {
    max-width: 300px;
    margin: 0 auto 10px;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

h1, h2, h3, p {
    text-align: center;
}

h1 {
    color: darkorange;
    font-size: 2.5em;
    margin: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

h2 {
    color: darkorange;
    font-size: 2em;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin: 25px auto 15px;
}

h3 {
    font-size: 1.6em;
    color: darkorange;
    margin: 20px auto 10px;
}

p {
    font-size: 1em;
    line-height: 1.7;
    margin-bottom: 15px;
}

strong {
    color: #e74c3c;
    font-weight: 600;
}

/* Secciones */
.section {
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto 20px;
    background-color: seagreen;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;

}

/* Iconos centrados */
.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

    .icon img {
        width: 80px;
        margin: 0;
        transition: transform 0.3s;
        display: block;
    }

        .icon img:hover {
            transform: scale(1.05);
        }

/* Galería */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 20px auto;
}

    .gallery img {
        width: 300px;
        height: 200px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        cursor: pointer;
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .gallery img:hover {
            transform: scale(1.03);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

/* Modal */
.modal {
    display: none;
    position: fixed;
    inset: 0; /* reemplaza top/left/width/height */
    background: rgba(0, 0, 0, 0.95);
    z-index: 99999; /* muchísimo más alto */
}

    .modal.active {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.modal-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.close {
    position: fixed; /* IMPORTANTE */
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 100000;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

    .close:hover {
        color: #bbb;
    }

/* Tarjetas de precios */
.precios-section {
    text-align: center;
    padding: 20px;
}

.precios-fondo {
    background-color: seagreen;
    padding: 20px;
    border-radius: 10px;
    max-width: 900px;
    margin: 0 auto;
}

.precios-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 10px;
}

.precio-card {
    background-color: white;
    border-radius: 15px;
    width: 200px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

    .precio-card:hover {
        transform: translateY(-5px);
    }

.precio-titulo {
    font-size: 24px;
    color: darkorange;
    font-weight: bold;
    margin-bottom: 5px;
}

.precio-subtitulo {
    font-size: 16px;
    color: #FF6347;
    margin-bottom: 10px;
}

.precio-descripcion {
    font-size: 14px;
    color: #333;
    margin: 0;
}

/* Tarjeta de horario */
.horario-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
}

.horario-card {
    background-color: seagreen;
    border-radius: 15px;
    width: 300px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.horario-hora {
    font-size: 24px;
    color: darkorange;
    font-weight: bold;
    margin: 10px 0;
}

.horario-nota {
    font-size: 14px;
    color: darkorange;
    margin: 0;
}

/* Botón de descargar normas centrado */
.download-button-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.download-button {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 4px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

    .download-button:hover {
        background-color: #45a049;
        transform: translateY(-2px);
    }

/* Calendario centrado */
#calendario-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 900px;
}

#calendario {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


/* Testimonios */
.testimonial {
    background-color: #f8f9fa;
    padding: 15px;
    margin: 15px auto;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    text-align: left;
    margin-left: 65px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    float: left;
    margin-right: 15px;
}

/* Pie de página */
footer {
    background-color: darkorange;
    color: black;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    
}

/* Aviso de cookies */
#cookie-consent {
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

    #cookie-consent p {
        margin: 0 auto 10px;
        max-width: 800px;
    }

    #cookie-consent a {
        color: #4ecdc4;
        text-decoration: underline;
    }

#politica-cookies {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
}
/* Estilos para el mapa */
.map-container {
    display: flex;
    justify-content: center;
    margin: 20px auto;
    max-width: 1000px;
}

.map-frame {
    width: 100%;
    max-width: 800px;
    height: 400px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: none;
}

/* Sección de contacto */
.contact-section {
    text-align: center;
    padding: 30px 20px;
    max-width: 1000px;
    margin: 0 auto 20px;
    background-color: seagreen;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.map-frame {
    height: 300px;
}
/* Estilos para la tabla de precios por día */
.precios-dias-section {
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    max-width: 1000px;
    background-color: seagreen;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.precios-dias-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 20px 0;
}

.precios-dias-table {
    width: 100%;
    max-width: 600px;
    border-collapse: collapse;
    margin: 0 auto;
    font-family: 'Poppins', sans-serif;
}

    .precios-dias-table th {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
        background-color: seagreen;
    }


    .precios-dias-table td {
        padding: 12px;
        text-align: left;
        border-bottom: 1px solid #ddd;
    }

    .precios-dias-table th {
        background-color: #7CFC00;
        color: #228B22;
        font-weight: 600;
    }

    .precios-dias-table tr:nth-child(even) {
        background-color: #f9f9f9;
    }

    .precios-dias-table tr:hover {
        background-color: #f1f1f1;
    }

.fianza-info {
    background-color: #fff3cd;
    padding: 15px;
    border-radius: 8px;
    margin: 20px auto;
    max-width: 800px;
    border-left: 4px solid #ffc107;
    text-align: left;
}

    .fianza-info h3 {
        color: #856404;
        margin-top: 0;
    }

/* ========================= */
/* HEADER ESTILO MODERNO */
/* ========================= */

.main-header {
    background-color: darkorange;
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 2000;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    max-width: 100px;
}

/* NAVBAR */

.navbar ul {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

    .navbar ul li a {
        font-family: 'Yes Free', sans-serif;
        text-decoration: none;
        color: #1f2d3d;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: 30px;
        transition: all 0.3s ease;
    }

        /* Botón activo tipo pastilla */
        .navbar ul li a.active {
            background: #000;
            color: white;
        }

        /* Hover tipo pastilla suave */
        .navbar ul li a:hover {
            background: #f2f2f2;
        }

/* Redes sociales */

.social-icons {
    display: flex;
    gap: 15px;
}

    .social-icons a {
        width: 35px;
        height: 35px;
        background: #1f4b6e;
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        transition: 0.3s;
    }

        .social-icons a:hover {
            transform: scale(1.1);
        }

.sobre-nosotros {
    background-color: white;
}

    .sobre-nosotros .intro {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 15px;
    }

.lista-servicios {
    list-style: none;
    padding: 0;
    margin: 10px 0 25px 0;
}

    .lista-servicios li {
        margin: 8px 0;
        font-size: 15px;
    }

.columnas {
    columns: 2;
    column-gap: 40px;
}

.final {
    font-size: 18px;
    font-weight: bold;
    color: #ff6b6b;
    margin-top: 20px;
}

.contacto-info {
    margin-top: 15px;
    font-weight: 600;
}
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    z-index: 99999;
    transition: 0.3s;
}

    .whatsapp-float:hover {
        transform: scale(1.1);
    }

/* =============================== */
/* BOTÓN WHATSAPP GRANDE CONTACTO */
/* =============================== */

.whatsapp-contacto {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.whatsapp-btn-grande {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #25D366, #1ebe5d);
    color: white;
    padding: 20px 35px;
    border-radius: 20px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    max-width: 500px;
    width: 100%;
}

    .whatsapp-btn-grande i {
        font-size: 45px;
    }

.whatsapp-texto {
    display: flex;
    flex-direction: column;
}

    .whatsapp-texto .titulo {
        font-size: 20px;
        font-weight: 600;
    }

    .whatsapp-texto .subtitulo {
        font-size: 14px;
        opacity: 0.9;
    }

/* Animación elegante */
.whatsapp-btn-grande:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* Efecto pulsación suave */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn-grande {
    animation: pulse 2.5s infinite;
}
.normas-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
}

    .normas-section h2 {
        margin-top: 40px;
        color: #333;
        border-bottom: 3px solid #25D366;
        padding-bottom: 8px;
    }

.lista-normas {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
    line-height: 1.8;
}

    .lista-normas li {
        margin-bottom: 12px;
    }

.prohibido {
    color: #c0392b;
    font-weight: 600;
}

.info-pago {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 5px solid #25D366;
    border-radius: 10px;
}

    .info-pago h3 {
        margin-bottom: 15px;
    }

    .info-pago .especial {
        margin-top: 15px;
        font-style: italic;
        font-weight: 500;
    }
.politica-cancelacion {
    margin: 60px auto;
    padding: 40px;
    background-color: #fff8e6;
    border-left: 5px solid #f39c12;
    border-radius: 12px;
    max-width: 800px; /* 👈 limita el ancho */
    text-align: center; /* centra el texto */
}

    .politica-cancelacion h2 {
        margin-bottom: 20px;
        color: #333;
    }

    .politica-cancelacion p {
        margin-bottom: 15px;
        line-height: 1.7;
    }

    .politica-cancelacion .condicion {
        font-weight: 500;
        font-style: italic;
        text-align: center; /* 👈 esto alinea las condiciones a la izquierda */
    }
.legal-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
}

    .legal-section h1 {
        text-align: center;
        margin-bottom: 40px;
    }

    .legal-section h2 {
        margin-top: 30px;
        border-bottom: 2px solid #25D366;
        padding-bottom: 5px;
    }

.google-reviews-btn {
    text-align: center;
    margin: 20px auto;
}

    .google-reviews-btn a {
        background: #4285F4;
        color: white;
        padding: 12px 22px;
        border-radius: 50px;
        font-weight: bold;
        font-size: 18px;
        text-decoration: none;
        display: inline-block;
        transition: 0.3s;
    }

        .google-reviews-btn a:hover {
            background: #2a63c8;
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0,0,0,0.15);
        }

/* ================================= */
/* ========= RESPONSIVE MÓVIL ====== */
/* ================================= */

@media (max-width: 768px) {

    body {
        background-attachment: scroll; /* evita bug en móvil */
    }

    /* TÍTULOS */
    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.5em;
    }

    h3 {
        font-size: 1.3em;
    }

    p {
        font-size: 0.95em;
    }

    /* SECCIONES */
    .section,
    .contact-section,
    .precios-dias-section {
        padding: 20px 15px;
        margin: 15px auto;
    }

    /* HEADER */
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .social-icons {
        justify-content: center;
    }

    /* GALERÍA */
    .gallery {
        flex-direction: column;
        align-items: center;
    }

        .gallery img {
            width: 100%;
            height: auto;
        }

    /* TARJETAS PRECIOS */
    .precios-container {
        flex-direction: column;
        align-items: center;
    }

    .precio-card {
        width: 100%;
        max-width: 300px;
    }

    /* HORARIO */
    .horario-card {
        width: 100%;
        max-width: 300px;
    }

    /* TABLA PRECIOS DÍAS */
    .precios-dias-table {
        font-size: 14px;
    }

        .precios-dias-table th,
        .precios-dias-table td {
            padding: 8px;
        }

    /* COLUMNAS SOBRE NOSOTROS */
    .columnas {
        columns: 1;
    }

    /* WHATSAPP GRANDE */
    .whatsapp-btn-grande {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 18px;
    }

        .whatsapp-btn-grande i {
            font-size: 35px;
        }

    .whatsapp-texto .titulo {
        font-size: 18px;
    }

    .whatsapp-texto .subtitulo {
        font-size: 13px;
    }

    /* MAPA */
    .map-frame {
        height: 250px;
    }

    /* MODAL */
    .modal-content {
        max-width: 95%;
        max-height: 80%;
    }

    /* POLÍTICA CANCELACIÓN */
    .politica-cancelacion {
        padding: 25px 15px;
        margin: 30px 15px;
    }

    /* LEGAL */
    .legal-section {
        padding: 15px;
        margin: 40px 15px;
    }
}
@media (max-width: 768px) {

    .main-header {
        padding: 5px 0;
    }

    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
    }

    .logo {
        max-width: 70px;
    }

    /* Ocultamos el menú completo en móvil */
    .navbar ul {
        display: none;
    }

    /* Ocultamos redes en móvil para que no ocupe espacio */
    .social-icons {
        display: none;
    }
}
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    font-weight: bold;
}

/* ============================= */
/* ===== RESPONSIVE HEADER ===== */
/* ============================= */

@media (max-width: 768px) {

    .main-header {
        padding: 8px 0;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 15px;
        position: relative;
    }

    .logo {
        max-width: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 15px 0;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

        .navbar ul li {
            text-align: center;
            margin: 10px 0;
        }

        .navbar ul.active {
            display: flex;
        }

    .social-icons {
        display: none;
    }
}
/* ===== GALERÍA RESPONSIVE MÓVIL ===== */

@media (max-width: 768px) {

    .galeria {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* 2 columnas */
        gap: 10px;
        padding: 10px;
    }

        .galeria img {
            width: 100%;
            height: 150px; /* altura más pequeña */
            object-fit: cover; /* recorte elegante */
            border-radius: 12px;
        }
}