
.encabezado{
    background:
        linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
        url("img/ChatGPT Image 3 jul 2026, 11_09_14 a.m..png") center center/cover no-repeat;
    min-height:100vh;
    color:#fff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Montserrat',sans-serif;
    background:#f4f4f4;
    color:#333;
}


html {
    scroll-behavior: smooth;
}





.topbar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
}

.topbar a:hover {
    color: #9d6640;
}



.logo h1 {
    color: #3f5444;
    font-size: 1.7rem;
    margin: 0;
}

.menu {
    display: flex;
    gap: 25px;
    list-style: none;
}

.menu a {
    text-decoration: none;
    color: #333;
     font-size: 0.95rem;
    font-weight: 600;
}

.menu a:hover {
    color: #9d6640;
}



.hero h2 {
    font-size: 3rem;
    color: #e5e7e5;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: #fdfbfb;
    line-height: 1.8;
}

.btn{
    display:inline-block;
    padding:14px 30px;
    background:#8b5e3b;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-weight:600;
    transition:all .3s ease;
}

.btn:hover{
    background:#9d6640;
}

.btn:hover {
    background: #9d6640;
}



.topbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:40px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 8%;

    background:#3f5444;
    color:white;

    z-index:1000;
}

/* NAVBAR FIJA */

.navbar{
    position:fixed;
    top:40px;
    left:0;
    width:100%;
    height:60px;
    padding:8px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(255,255,255,.95);
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:999;
}





/* Ajuste del hero */

.hero{
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    min-height:100vh;
    text-align:center;
    padding:120px 20px 40px;
}

.hero h1{
    font-size:4rem;
    color:#fff;
    margin:0 0 15px;
    letter-spacing:3px;
    text-transform:uppercase;
}

.hero h2{
    font-size:2rem;
    font-weight:300;
    margin-bottom:25px;
    color:#fff;
}

.hero p{
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}




.contacto {
    max-width: 600px;
    margin: 50px auto;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contacto h2 {
    text-align: center;
    color: #333;
}

.contacto label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
}

.contacto input,
.contacto textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.contacto textarea {
    min-height: 120px;
    resize: vertical;
}

.contacto button {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background-color: #b67a4d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.contacto button:hover {
    background-color:#9d6640;
}

.galeria {
    padding: 80px 10%;
    background-color: #f8f4ef;
}

.galeria h2 {
    text-align: center;
    font-size: 2.5rem;
    color:#3f5444;
    margin-bottom: 15px;
}

.galeria p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #0a0101;
    line-height: 1.6;
}

.grid-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.item-galeria {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.item-galeria img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.item-galeria:hover img {
    transform: scale(1.08);
}

   /* Logo */

.logo img{
    height:70px;
    width:auto;
    display:block;
}





/* Sección Horarios */
.horarios {
    text-align: center;
    padding: 40px 20px;
}

.horarios h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* Tabla */
.tabla-horarios {
    width: 50%;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.tabla-horarios th,
.tabla-horarios td {
    border: 1px solid #ddd;
    padding: 8px 12px;
    text-align: center;
}

.tabla-horarios th {
    background-color: #8b6b4f;
    color: white;
}

.tabla-horarios tr:nth-child(even) {
    background-color: #f8f5f2;
}

.cerrado {
    color: #b22222;
    font-weight: bold;
}

@media (max-width: 768px) {
    .tabla-horarios {
        width: 90%;
        font-size: 0.8rem;
    }
}
.horarios {
    scroll-margin-top: 80px; /* ajusta según la altura de tu navbar */
}







.sobre-nosotros {
    padding: 80px 10%;
    background-color: #ffffff;
}

.contenedor-sobre {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.texto-sobre {
    flex: 1;
    min-width: 300px;
}

.texto-sobre h2 {
    font-size: 2.5rem;
    color: #3f5444;
    margin-bottom: 20px;
}

.texto-sobre p {
    color: #0a0101;
    line-height: 1.8;
    margin-bottom: 15px;
}

.imagen-sobre {
    flex: 1;
    min-width: 300px;
}

.imagen-sobre img {
    width: 100%;
    border-radius: 15px;
    display: block;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .contenedor-sobre {
        flex-direction: column;
    }
}


.footer-geaterra {
    background: #1f2d24;
    color: #fff;
    padding-top: 40px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.footer-geaterra h3,
.footer-geaterra h4 {
    margin-bottom: 15px;
    color: #d4c29a;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
}

.footer-links a:hover {
    color: #d4c29a;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.9rem;
}


/* ===== SECCIÓN TARIFAS ===== */

.tarifas {
    padding: 80px 20px;
    background: #f8f6f2;
}

.tarifas .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.tarifas h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color:#3f5444;
}

.tarifas .subtitulo {
    font-size: 1.1rem;
    color: #0c0101;
    margin-bottom: 50px;
}

.tarifas-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.tarifa-card {
    background: #ffffff;
    width: 350px;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.tarifa-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.tarifa-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #000e03;
}

.precio {
    font-size: 2.8rem;
    font-weight: 700;
    color: #8b6b3f;
    margin-bottom: 25px;
}

.tarifa-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tarifa-card ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #0c0101;
}

.tarifa-card ul li:last-child {
    border-bottom: none;
}

.destacado {
    border: 2px solid #8b6b3f;
    position: relative;
}

.destacado::before {
    content: "Más Flexible";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8b6b3f;
    color: white;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
}
/* ===== tarjeta regalo ===== */

.gift-section{
    background:#f8f4ee;
    padding:90px 5%;
}

.gift-container{
    max-width:1300px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:70px;
    flex-wrap:wrap;
}

.gift-info{
    flex:1;
    min-width:350px;
}

.gift-icon{
    font-size:45px;
    color:#9b6f47;
}

.gift-info h2{
    font-size:3rem;
    color:#4c3626;
    margin:10px 0;
    font-family:Georgia, serif;
}

.gift-info h3{
    color:#9b6f47;
    font-style:italic;
    font-weight:400;
    margin-bottom:20px;
}

.linea{
    width:90px;
    height:2px;
    background:#b18c67;
    margin:30px 0;
}

.gift-info p{
    line-height:1.8;
    color:#444;
}

.gift-list{
    margin-top:40px;
}

.item{
    display:flex;
    gap:18px;
    margin-bottom:28px;
}

.item span{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#caa88a;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    color:white;
}

.item strong{
    color:#4c3626;
}

.gift-image{
    flex:1;
    min-width:400px;
    text-align:center;
}

.gift-image img{
    width:100%;
    max-width:650px;
    border-radius:20px;
    box-shadow:0 20px 40px rgba(0,0,0,.18);
}

.gift-box{
    max-width:420px;
    margin:-60px auto 0;
    background:#ead7c7;
    padding:30px;
    border-radius:18px;
    position:relative;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.gift-box h4{
    color:#8b5e3b;
    margin-bottom:15px;
}


.tarjeta-img{
    width:100%;
    max-width:700px;
    display:block;
    margin:auto;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}


/* ==========================
   RESERVA DE CLASES
   Gea Terra
========================== */

.reservas {
    padding: 80px 20px;
    background: #f8f6f2;
}

.reservas-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.reservas h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #3f5444;
    margin-bottom: 15px;
}

.reservas p {
    text-align: center;
    color: #0f0101;
    line-height: 1.7;
    margin-bottom: 30px;
}

.reservas form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.reservas input,
.reservas textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.reservas input:focus,
.reservas textarea:focus {
    outline: none;
    border-color: #b67a4d;
    box-shadow: 0 0 0 3px rgba(182, 122, 77, 0.15);
}

.reservas textarea {
    resize: vertical;
    min-height: 120px;
}

.reservas button {
    background: #b67a4d;
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reservas button:hover {
    background: #9d6640;
    transform: translateY(-2px);
}

.contacto-reserva {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.contacto-reserva a {
    color:#3f5444;
    font-weight: 600;
    text-decoration: none;
}

.contacto-reserva a:hover {
    text-decoration: underline;
}

.contacto {
    scroll-margin-top: 80px; /* ajusta según la altura de tu navbar */
}


/* Responsive */

@media (max-width: 768px) {

    .reservas {
        padding: 50px 15px;
    }

    .reservas-container {
        padding: 30px 20px;
    }

    .reservas h2 {
        font-size: 2rem;
    }
}



.footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.footer-legal a {
    color: #ffffff;
    text-decoration: none;
    padding: 8px 0;
    transition: color 0.3s ease;
}

.footer-legal a:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.15);
    width: 220px;
    text-align: center;
}

.footer-legal a:hover {
    color: #c8a26a;
}



.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 950px;
    margin: auto;
    background: #ffffff;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    z-index: 9999;
}

.cookie-text strong {
    color: #3f5444;
    font-size: 1.1rem;
}

.cookie-text p {
    margin: 8px 0 0;
    color: #555;
    line-height: 1.6;
}

.cookie-text a {
    color: #b67a4d;
    font-weight: 600;
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: #3f5444;
    color: white;
    border: none;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-reject {
    background: transparent;
    color: #3f5444;
    border: 1px solid #3f5444;
    padding: 12px 22px;
    border-radius: 8px;
    cursor: pointer;
}

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}


/*==========================
MENU HAMBURGUESA
==========================*/

.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:2rem;
    cursor:pointer;
    color:#3f5444;
}

/* Escritorio */

@media(min-width:769px){

.menu{
    display:flex;
}

}


/* Móvil */
/* Ocultar botón hamburguesa en ordenador */
@media (min-width:769px){
    .menu-toggle{
        display:none !important;
    }
}
@media (max-width:768px){

    /* Ocultamos la barra superior */
    .topbar{
        display:none;
    }

    /* Navbar pegada arriba */
    .navbar{
        position:fixed;
        top:0;
        left:0;
        width:100%;
        height:70px;
        padding:10px 20px;
        display:flex;
        justify-content:space-between;
        align-items:center;
        background:#fff;
        z-index:999;
    }
    @media (max-width:768px) {
    section {
        scroll-margin-top: 80px;
    }
}

    /* Logo */
    .logo img{
        height:55px;
        width:auto;
    }

    /* Botón hamburguesa */
    .menu-toggle{
        display:block;
        margin-left:auto;
    }

    /* Menú desplegable */
    .menu{
        display:none;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:20px 0;
        box-shadow:0 10px 25px rgba(0,0,0,.12);
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        width:100%;
        text-align:center;
        margin:12px 0;
    }

    .hero{
        padding-top:120px;
    }

    .hero h1{
        font-size:2.3rem;
    }

    .hero h2{
        font-size:1.3rem;
    }

    .hero p{
        padding:0 20px;
    }
}

section {
    scroll-margin-top: 110px;
}

/* ===========================
   TRAYECTORIA Y RECONOCIMIENTOS
=========================== */

.trayectoria{
    padding:100px 0;
    background:#f8f7f4;
}

.trayectoria h2{
    text-align:center;
    font-size:2.8rem;
    margin-bottom:20px;
    color:#222;
}

.trayectoria .subtitulo{
    max-width:900px;
    margin:0 auto 60px;
    text-align:center;
    font-size:1.1rem;
    line-height:1.8;
    color:#666;
}

.reconocimiento{
    display:flex;
    align-items:center;
    gap:50px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:all .35s ease;
}

.reconocimiento:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.reconocimiento-imagen{
    flex:0 0 380px;      /* Ancho fijo de la imagen */
    max-width:380px;
    overflow:hidden;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:20px;
}

.reconocimiento-imagen img{
    width:100%;
    max-height:500px;    /* Limita la altura */
    object-fit:contain;  /* Muestra la foto completa */
    border-radius:12px;
}

.reconocimiento:hover .reconocimiento-imagen img{
    transform:scale(1.05);
}

.reconocimiento-texto{
    flex:1;
    padding:50px;
}

.distincion{
    display:inline-block;
    background:#b8860b;
    color:#fff;
    padding:10px 20px;
    border-radius:30px;
    font-size:.9rem;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}

.reconocimiento-texto h3{
    font-size:2rem;
    color:#222;
    margin-bottom:10px;
}

.reconocimiento-texto h4{
    font-size:1.3rem;
    color:#666;
    margin-bottom:25px;
}

.reconocimiento-texto p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}

@media (max-width:900px){

.reconocimiento{
    flex-direction:column;
}

.reconocimiento-imagen{
    width:100%;
}

.reconocimiento-texto{
    padding:35px;
}

.trayectoria h2{
    font-size:2.2rem;
}

}
/* Logo clicable */

.logo a{
    display:inline-block;
}

.logo img{
    cursor:pointer;
    transition:transform .3s ease;
}

.logo img:hover{
    transform:scale(1.05);
}
.logo{
    position: relative;
    z-index: 1001;
}

.logo a{
    display: inline-block;
}