:root {
    --primary-orange: #FF7E5F;
    --secondary-teal: #00B4DB;
    --dark-text: #2c3e50;
    --light-bg: #f8f9fa;
    --font-heading: 'Poppins', sans-serif;
    --font-handwriting: 'Yellowtail', cursive;
}

body {
    font-family: var(--font-heading);
    color: var(--dark-text);
}

/* Navegación */
.navbar-brand {
    font-weight: 700;
    color: var(--dark-text) !important;
    font-size: 1.5rem;
}

.text-orange { color: var(--primary-orange); }
.text-teal { color: var(--secondary-teal); }

.btn-contact {
    background-color: var(--primary-orange);
    color: white !important;
    border-radius: 20px;
    padding: 8px 20px !important;
    transition: 0.3s;
}
.btn-contact:hover {
    background-color: #e05e40;
    transform: translateY(-2px);
}

/* Slider / Hero */
.carousel-item {
    height: 90vh; /* Altura pantalla casi completa */
    min-height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.carousel-item .overlay {
    background: rgba(0, 0, 0, 0.4); /* Oscurecer imagen para leer texto */
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}

.carousel-caption {
    bottom: 30%;
}

 .carousel-caption h1,
 .carousel-caption h2{
    font-family: var(--font-handwriting);
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* Títulos y Secciones */
.subheading {
    font-family: var(--font-handwriting);
    font-size: 2rem;
    color: var(--primary-orange);
    display: block;
    margin-bottom: 5px;
}

/* Tarjetas de Planes */
.plan-card {
    transition: transform 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1) !important;
}

.plan-card img {
    height: 250px;
    object-fit: cover;
}

.price-text {
    font-weight: 700;
    color: var(--secondary-teal);
    font-size: 1.2rem;
}

/* Contacto y Mapa */
.contact-info li {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.contact-info i {
    width: 30px;
}

.social-links a {
    color: var(--primary-orange);
    transition: 0.3s;
}
.social-links a:hover {
    color: var(--secondary-teal);
}

/* Botón WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    color: white;
}

/* --- Galería de Experiencias --- */

#experiencias {
    background-color: #fff; /* Fondo blanco para limpiar la vista entre secciones */
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 300px; /* Altura fija para uniformidad */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Asegura que la foto llene el espacio sin deformarse */
    transition: transform 0.5s ease;
}

/* Efecto Zoom al pasar el mouse */
.gallery-item:hover img {
    transform: scale(1.1);
}

/* Capa oscura inferior para el texto */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 20px;
    padding-top: 40px;
    transition: all 0.3s ease;
}

.gallery-overlay h5 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-orange); /* Toque de marca en el título */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
}

.gallery-overlay small {
    font-size: 0.9rem;
    color: #f8f9fa;
}

/* Ajuste de jerarquía SEO sin romper el diseño */

h1 {
    font-size: 3rem; /* Tamaño para el título principal del carrusel */
    font-weight: 700;
}

h2 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-text);
    font-size: 2.2rem; /* Tamaño controlado */
    margin-bottom: 1rem;
}


.plan-card h3 {
    font-size: 1.25rem; /* Tamaño ideal para tarjetas */
    font-weight: 600;
    color: var(--dark-text);
    margin-top: 10px;
}


/* Ajuste para los iconos de la sección nosotros */
#nosotros h3 {
    font-size: 1.3rem;
    margin-top: 10px;
    font-weight: 600;
}


/* Ajustes para tablets y celulares */
@media (max-width: 768px) {
    /* Reducimos los títulos del carrusel para que no se amontonen */
    .carousel-caption h1, 
    .carousel-caption h2,
    .carousel-caption h3 {
        font-size: 2.5rem !important; /* De 4rem baja a 2.5rem */
    }

    /* Ajustamos el tamaño de los títulos de sección */
    h2 {
        font-size: 1.8rem !important;
    }

    /* Reducimos el tamaño de la firma visual (subheadings) */
    .subheading {
        font-size: 1.5rem;
    }

    /* Aseguramos que el carrusel no sea tan alto en móviles */
    .carousel-item {
        height: 60vh;
        min-height: 400px;
    }
}