﻿/* ===== GENERAL ===== */
main {
    min-height: calc(100vh - 200px); /* Ajusta según lo que mida tu header + footer */
    display: flex;
    flex-direction: column;}


* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    font-family: 'Cinzel', serif;
    font-weight: 400;
    background-color: #000;
    color: #111;
}

/* =============================
   RESPONSIVE DESIGN - MOBILE
   ============================= */
@media screen and (max-width: 768px) {
    .menu-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 1rem;
    }

    .menu-left,
    .menu-right {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0.5rem 0;
    }

        .menu-left a,
        .menu-right a {
            font-size: 1.1rem;
            text-align: center;
            display: block;
        }

    .menu-logo {
        position: static !important;
        transform: none !important;
        margin: 1rem 0;
        text-align: center;
    }

        .menu-logo a {
            font-size: 2.2rem;
            white-space: nowrap;
        }

    .language-switcher {
        margin-top: 1.5rem;
        gap: 1rem;
        justify-content: center;
    }

        .language-switcher a {
            font-size: 0.9rem;
        }

        .language-switcher img {
            width: 22px;
            height: 22px;
        }

    .dropdown-menu {
        position: static;
        box-shadow: none;
    }

    .hero h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .contacto-btn {
        font-size: 1rem;
        padding: 0.6rem 1.4rem;
    }

    .category-buttons {
        bottom: 1.5rem;
        gap: 1.2rem;
    }

    .category-btn {
        font-size: 0.95rem;
        padding: 0.4rem 1.1rem;
    }
}



/* Botón hamburguesa */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
    margin-right: 1rem;
}

    .hamburger span {
        display: block;
        height: 3px;
        background: #322203;
        border-radius: 2px;
    }

/* Menú móvil oculto por defecto */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #f0f5fa;
    padding-top: 5rem;
    z-index: 1000;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    font-family: 'Cinzel', serif;
}

    .mobile-menu a {
        color: #322203;
        font-size: 1.2rem;
        text-decoration: none;
    }

        .mobile-menu a:hover {
            color: #8c6e4a;
        }

    .mobile-menu.activo {
        display: flex !important;
        flex-direction: column;
    }

/* Responsive activar hamburguesa */
@media screen and (max-width: 768px) {
    .menu-left,
    .menu-right {
        display: none !important;
    }

    .hamburger {
        display: flex;
    }

    /* Asegúrate que los botones de idioma dentro del menú móvil SÍ se vean */
    .mobile-menu .language-switcher {
        display: flex !important;
    }
}

/* Mostrar idiomas en el menú responsive */
.mobile-menu .language-switcher {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

    .mobile-menu .language-switcher a {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        color: #322203;
        font-size: 0.9rem;
        font-weight: 500;
    }

    .mobile-menu .language-switcher img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    }



@media screen and (max-width: 768px) {
    footer {
        font-size: 0.75rem;
        padding: 1rem;
    }
}




/* ===== IDIOMA ===== */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 2rem;
}

    .language-switcher a {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-family: 'Cinzel', serif;
        font-size: 0.85rem;
        color: #322203;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .language-switcher a:hover {
            color: #8c6e4a;
        }

    .language-switcher img {
        width: 24px;
        height: 24px;
        border-radius: 50%;
        object-fit: cover;
        box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    }

    .language-switcher span {
        font-family: 'Cinzel', serif;
        font-size: 0.85rem;
        color: #322203;
        font-weight: 500;
    }


/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background-image: url('../images/fondo_hero.jpg');
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(180deg, rgba(140, 110, 74, 0.7), rgba(85, 109, 99, 0.7));
        z-index: 1;
    }

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero h1 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 3rem;
    color: white;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.hero a.btn {
    border-color: #ffffff;
    color: #ffffff;
}

    .hero a.btn:hover {
        background-color: #8c6e4a;
        border-color: #8c6e4a;
        color: #ffffff;
    }



.custom-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-image: url('../images/menu_header.png');
    background-size: cover;
    background-position: center;
    padding: 1.2rem 0;
    border-bottom: 4px solid #8c6e4a;
}

.menu-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    column-gap: 2rem;
}

/* Logo centrado */
.menu-center .logo {
    font-family: 'Cinzel Decorative', cursive;
    font-size: 2.4rem;
    font-weight: 400;
    color: #322203;
    text-decoration: none;
    white-space: nowrap;
}

.menu-left {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1.2rem; /* antes 2rem */
    padding-right: 0.5rem; /* opcional: ajusta si sigue muy separado */
}

.menu-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
}


    /* Estilos comunes */
    .menu-left a,
    .menu-right a {
        color: #322203;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        position: relative;
    }

        .menu-left a:hover,
        .menu-right a:hover {
            color: #8c6e4a;
        }

        .menu-left a::after,
        .menu-right a::after {
            content: '';
            display: block;
            width: 0;
            height: 3px;
            background: #8c6e4a;
            transition: width 0.3s;
            margin-top: 3px;
        }

        .menu-left a:hover::after,
        .menu-right a:hover::after {
            width: 100%;
        }

/* Idiomas */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 1rem;
}

    .language-switcher a {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        font-family: 'Cinzel', serif;
        font-size: 0.85rem;
        color: #322203;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .language-switcher a:hover {
            color: #8c6e4a;
        }

    .language-switcher img {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        object-fit: cover;
    }


/* Dropdown behavior */
.dropdown:hover .dropdown-menu {
    display: block;
    pointer-events: auto;
}

.dropdown-menu {
    margin-top: 0px !important;
    pointer-events: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


/* ===== FOOTER ===== */
footer {
    background-color: #322203;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    margin-top: 0;
}

.espaciador {
    height: 1.5rem;
}


/* ===========================================
   Sección de categorías de cursos (botones)
   =========================================== */

.category-buttons {
    position: absolute;
    bottom: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    z-index: 2;
}

.category-btn {
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    padding: 0.4rem 1.2rem;
    color: #322203;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
    margin-top: 1.2rem;
}

    .category-btn:hover {
        background-color: #8c6e4a;
        color: white;
    }

.contacto-btn {
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    margin-top: 1.2rem;
}

    .contacto-btn:hover {
        background-color: #8c6e4a;
        color: #ffffff;
        border-color: #8c6e4a;
    }



@keyframes breathingPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    }
}

.destacado-btn {
    background: linear-gradient(90deg, #8c6e4a, #5c3f1b);
    color: #fff;
    font-size: 1.1rem;
    padding: 0.6rem 1.6rem;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    animation: breathingPulse 2.5s ease-in-out infinite;
    transition: background 0.3s ease;
}

    .destacado-btn:hover {
        background: linear-gradient(90deg, #a37b50, #6e4b28);
    }



/* =========================
   CONTENEDOR PRINCIPAL DE SECCIONES
========================= */

.seccion-principal {
    background: linear-gradient(to bottom, #d6cfbb, #eae7dd);
    padding: 48px 20px; /* Igual que Bootstrap py-5 */
    min-height: calc(100vh - 200px); /* Opcional para que mínimo cubra toda la pantalla */
}

/* =========================
   TÍTULOS DE SECCIÓN
========================= */

.titulo-seccion {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    color: #322203;
    text-align: center;
    margin-bottom: 2rem;
}

.separador-seccion {
    width: 80px;
    height: 2px;
    background-color: #322203;
    margin: -1rem auto 3rem auto;
    border-radius: 2px;
}





/* ===========================================
   Sección TALLERES 2025
   =========================================== */

.talleres-section {
    background: linear-gradient(to bottom, #d6cfbb, #eae7dd);
    padding: 60px 20px;
}

.taller-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .taller-card img {
        height: 250px;
        object-fit: cover;
    }

    .taller-card .card-body {
        padding: 20px 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        flex-grow: 1;
        text-align: center;
    }

    .taller-card .card-title {
        font-size: 1.1rem;
        font-weight: bold;
        min-height: 3.2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .taller-card .btn {
        border-radius: 50px;
        font-weight: bold;
        font-size: 0.9rem;
    }

    .taller-card:hover {
        transform: scale(1.03);
    }

    .taller-card .btn-dark {
        background-color: #322203;
        border: none;
        color: #fff;
        font-weight: 600;
        font-size: 0.85rem;
        padding: 6px 14px;
        border-radius: 50px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.15);
    }

    .taller-card .btn-outline-dark {
        border: 1px solid #322203;
        color: #322203;
        background-color: transparent;
        font-weight: 600;
        font-size: 0.85rem;
        padding: 6px 14px;
        border-radius: 50px;
    }




@media (max-width: 576px) {
    .taller-card img {
        height: 200px;
    }

    .taller-card .card-title {
        font-size: 1rem;
    }

    .taller-card .btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}



.separador-linea {
    width: 300px; /* ← más larga */
    height: 2px; /* ← un poco más delgada si quieres */
    background-color: #8c6e4a;
    margin: 0 auto;
    border-radius: 2px;
    opacity: 0.9;
}

/* ===========================================
   SECCIÓN: VIAJES 2025 - CONTENEDORES GENERALES
=========================================== */
.viajes-section {
    background-color: #f3f7fb;
    padding: 20px 0 10px 0;
}

.titulo-viajes {
    font-family: 'Cinzel', serif;
    color: #322203;
    font-size: 28px;
    text-align: center;
    margin: 0;
}

.separador-linea {
    width: 80px;
    height: 2px;
    background-color: #322203;
    margin: 8px auto 0 auto;
}
.viajes-europa {
    min-height: 70vh;
    background: transparent; /* <-- así hereda el fondo del padre */
    padding: 60px 20px;
    color: #322203;
    font-family: 'Cinzel', serif;
    position: relative;
}


/* ===========================================
   SLIDER GENERAL
=========================================== */
/* Fija altura del carrusel para evitar movimientos verticales */
.carousel-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    position: relative;
    height: 720px; /* Usa una altura lo suficientemente alta para el slide más grande */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Contenedor de los slides dentro del carrusel */
.carousel-inner {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /* Los estilos específicos de cada .slide1 y .slide2 ya los tienes definidos correctamente */



/* ===========================================
   SLIDE 1 - TEXTO E IMÁGENES
=========================================== */
    .carousel-slide.slide1 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 60px;
    }

/* Texto Slide 1 */
.texto-viaje {
    flex: 1;
    padding: 30px 30px 30px 80px;
    font-family: 'Cinzel Decorative', serif;
}

    .texto-viaje.slide1 h3 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 3rem;
        font-weight: 700;
        color: #322203;
        margin: 0;
        padding: 30px 30px 30px 80px;
    }

    .texto-viaje.slide1 p {
        padding-left: 80px;
        font-family: 'Allura', cursive;
        font-style: normal;
        font-size: 1.8rem;
        font-weight: 400;
        line-height: 1.4;
        color: #322203;
        text-transform: none !important;
    }

/* Imágenes Slide 1 */
.imagen-viaje.slide1 {
    flex: 1;
    position: relative;
    min-height: 440px;
}

.slide1 .circulo-1,
.slide1 .circulo-2,
.slide1 .circulo-3 {
    position: absolute;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
}

.slide1 .circulo-1 {
    top: -40px;
    left: 240px;
    z-index: 2;
}

.slide1 .circulo-2 {
    top: 120px;
    left: 120px;
    z-index: 3;
}

.slide1 .circulo-3 {
    top: 290px;
    left: 0px;
    z-index: 4;
}

/* ===========================================
   SLIDE 2 - TEXTO E IMÁGENES EN FORMA DE ESTRELLA
=========================================== */
.carousel-slide.slide2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Texto Slide 2 */
.texto-viaje.slide2 {
    flex: 1;
    padding-left: 80px;
}

    .texto-viaje.slide2 h3 {
        font-family: 'Cinzel Decorative', serif;
        font-size: 2.5rem;
        color: #322203;
        margin: 0;
        line-height: 1.5;
    }

    .texto-viaje.slide2 p {
        font-family: 'Cinzel', serif;
        font-size: 1.2rem;
        font-weight: 700;
        margin-top: 1rem;
        color: #322203;
        letter-spacing: 1px;
    }

/* Imágenes Slide 2 */
.imagen-viaje.slide2 {
    flex: 1;
    position: relative;
    min-height: 500px;
}

/* Contenedor estrella */
.envolvente-circulos {
    position: relative;
    width: 590px;
    height: 590px;
    margin: auto;
}

/* Círculo Central */
.slide2 .circulo-central {
    width: 170px;
    height: 230px;
    object-fit: contain;
    position: absolute;
    top: 150px;
    left: 180px;
    z-index: 3;
}

/* Círculos alrededor en forma de estrella */
.slide2 .circulo-1,
.slide2 .circulo-2,
.slide2 .circulo-3,
.slide2 .circulo-4,
.slide2 .circulo-5 {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    z-index: 2;
}

.slide2 .circulo-1 {
    top: 0;
    left: 160px;
}

.slide2 .circulo-2 {
    top: 110px;
    left: -30px;
}

.slide2 .circulo-3 {
    top: 110px;
    left: 350px;
}

.slide2 .circulo-4 {
    top: 300px;
    left: 50px;
}

.slide2 .circulo-5 {
    top: 300px;
    left: 270px;
}

/* ===========================================
   SLIDE 3 - TEXTO E IMÁGENES EN FORMA DE ESTRELLA
=========================================== */
.carousel-slide.slide3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* Texto Slide 3 */
.texto-viaje.slide3 {
    flex: 1;
    padding-left: 80px;
}

.texto-viaje.slide3 p {
    font-family: 'Allura', cursive;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.6;
    color: #322203;
    text-transform: none;
}

/* Imágenes Slide 3 */
.imagen-viaje.slide3 {
    flex: 1;
    position: relative;
    min-height: 500px;
}

/* Círculo Central Slide 3 */
.slide3 .circulo-central {
    width: 170px;
    height: 230px;
    object-fit: contain;
    position: absolute;
    top: 150px;
    left: 180px;
    z-index: 3;
}

/* Círculos en estrella */
.slide3 .circulo-1,
.slide3 .circulo-2,
.slide3 .circulo-3,
.slide3 .circulo-4,
.slide3 .circulo-5 {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    z-index: 2;
}

.slide3 .circulo-1 {
    top: 0;
    left: 160px;
}

.slide3 .circulo-2 {
    top: 110px;
    left: -30px;
}

.slide3 .circulo-3 {
    top: 110px;
    left: 350px;
}

.slide3 .circulo-4 {
    top: 300px;
    left: 50px;
}

.slide3 .circulo-5 {
    top: 300px;
    left: 270px;
}


/* ===========================================
   SELLO "TIME TO TRAVEL"
=========================================== */
.sello-travel {
    position: absolute;
    top: -50px;
    left: -90px;
    width: 200px;
    height: 200px;
    transform: scale(1.2) rotate(4deg);
    opacity: 0.9;
    z-index: 5;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

    .sello-travel:hover {
        transform: scale(1.05) rotate(6deg);
        opacity: 1;
    }

/* ===========================================
   MEDIA QUERIES
=========================================== */
@media (max-width: 768px) {
    .sello-travel {
        width: 90px;
        height: 90px;
        top: 20%;
        left: 5%;
    }
}

/* ===========================================
   SLIDER DOTS
=========================================== */
/* Dots en posición fija al fondo */
.carousel-dots {
    text-align: center;
    margin-top: 0;
    margin-bottom: 90px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #999;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

    .dot.active {
        background-color: #322203;
    }

/* ===========================================
   SEMINARIOS EMPRESARIALES - Masonry Responsivo
   =========================================== */

.galeria-masonry {
    padding: 40px 20px;
    background-color: transparent; /* <-- CORRECTO */
    display: flex;
    justify-content: center;
}


.grid-masonry {
    column-count: 4;
    column-gap: 15px;
    max-width: 1300px;
    width: 100%;
}

.masonry-item {
    margin-bottom: 15px;
    break-inside: avoid;
}

.masonry-overlay {
    position: relative;
    width: 100%;
}

    .masonry-overlay img {
        width: 100%;
        display: block;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease-in-out;
    }

        .masonry-overlay img:hover {
            transform: scale(1.02);
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        }

.masonry-titulo {
    position: absolute;
    bottom: 0;
    background: rgba(50, 34, 3, 0.7);
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.masonry-overlay:hover .masonry-titulo {
    opacity: 1;
}

/* RESPONSIVE COLUMNS */
@media (max-width: 991px) {
    .grid-masonry {
        column-count: 2;
        column-gap: 20px;
    }
}

@media (max-width: 576px) {
    .grid-masonry {
        column-count: 1;
        column-gap: 15px;
    }

    .masonry-titulo {
        font-size: 0.95rem;
    }
}


/* =========================
   SECCIÓN DOCENTES
========================= */

.docentes-section {
    background: linear-gradient(to bottom, #d6cfbb, #eae7dd);
    padding: 48px 20px; /* igual que .py-5 de Bootstrap */
}


.docentes-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: #322203;
    text-align: center;
    margin-bottom: 20px;
}

.separador-linea {
    width: 80px;
    height: 2px;
    background-color: #322203;
    margin: 10px auto 40px;
    border-radius: 2px;
}

.docentes-lista {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Tarjeta de docente */
.docente-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.docente-foto {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

    .docente-foto:hover {
        transform: scale(1.08); /* Zoom suave en el círculo completo */
    }

    .docente-foto img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


/* Contenido de la tarjeta */
.docente-contenido {
    flex: 1;
}

.docente-nombre {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    color: #322203;
    margin-bottom: 15px;
}

.docente-descripcion {
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    color: #333;
    text-align: justify;
    line-height: 1.7;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .docente-card {
        flex-direction: column;
        text-align: center;
    }

    .docente-contenido {
        text-align: center;
    }
}

/* =========================
   SECCIÓN SERVICIOS
========================= */

.titulo-seccion.grande {
    font-size: 3rem;
    font-family: 'Cinzel Decorative', serif;
    color: #322203;
    text-align: center;
}

.texto-servicio.grande {
    font-size: 1.9rem;
    font-family: 'Cinzel', serif;
    color: #322203;
    font-weight: bold;
    line-height: 1.6;
    max-width: 90%;
    white-space: normal;
    word-break: normal;
    transition: transform 0.3s ease, color 0.3s ease;
}

    .texto-servicio.grande:hover {
        transform: scale(1.05);
        color: #a97c30; /* un dorado más intenso o elegante */
    }


.icono-diamante svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 6px;
}

.lista-servicios {
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 2rem; /* Puedes ajustar el valor si lo quieres más o menos separado */
}


.bloque-servicios-ajustable {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 600px; /* igual a la altura de la imagen */
}


.bloque-central {
    margin-left: 0; /* puedes mover todo el bloque también si lo deseas */
}

/* === OPCIÓN 3: mover el bloque de texto === */
.bloque-servicios-ajustable {
    padding-left: 30px;
    padding-right: 40px;
    margin-left: 60px; /* 🔧 AJUSTA esto para mover solo el texto */
}

/* === OPCIÓN 2: mover la imagen === */
.contenedor-imagen-ajustable {
    margin-right: 200px; /* 🔧 AJUSTA esto para mover solo la imagen */
}

/* Imagen */
.imagen-curva {
    height: 600px;
    width: 300px;
    max-width: 100%;
    object-fit: cover;
    border-top-right-radius: 150px;
    display: block;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .imagen-curva {
        width: 90%;
        height: auto;
        border-top-right-radius: 80px;
    }

    .bloque-servicios {
        text-align: center;
        padding: 10px;
    }

    .titulo-seccion.grande {
        font-size: 2.2rem;
    }
}

/* =========================
   SECCIÓN REDES SOCIALES
========================= */

/* ==================== CONTACTO ==================== */

.social-promo {
    margin-top: 40px;
    text-align: center;
}

    .social-promo h2 {
        font-family: 'Cinzel Decorative', cursive;
        margin-bottom: 20px;
        color: #322203;
    }

.qr-social {
    width: 400px; /* MÁS GRANDE */
    max-width: 90%;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transition: transform 0.4s ease;
}

    .qr-social:hover {
        transform: scale(1.08); /* EFECTO ZOOM */
    }

.social-handle {
    margin-top: 10px;
    font-size: 18px;
    font-family: 'Cinzel', serif;
    color: #322203;
}

.formulario-contacto {
    margin: 40px auto 0 auto;
    background-color: rgba(255,255,255,0.95);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-family: 'Cinzel', serif;
    max-width: 550px; /* MÁS COMPACTA */
}

.campo-formulario {
    margin-bottom: 20px;
}

    .campo-formulario label {
        display: block;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .campo-formulario input,
    .campo-formulario textarea {
        width: 100%;
        padding: 12px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-family: 'Cinzel', serif;
    }

.boton-enviar {
    text-align: center;
    margin-top: 20px;
}

    .boton-enviar button {
        background-color: #322203;
        color: #fff;
        padding: 12px 30px;
        font-size: 16px;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .boton-enviar button:hover {
            background-color: #4d3305;
        }


.social-handle a {
    color: #322203;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Cinzel', serif;
    transition: color 0.3s ease;
}

    .social-handle a:hover {
        color: #7a5e2e;
    }


.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

    .btn-whatsapp:hover {
        transform: scale(1.07);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
        background: linear-gradient(135deg, #1ebe57, #0f705d);
    }

    .btn-whatsapp i {
        font-size: 1.2rem;
    }

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.btn-whatsapp {
    animation: pulse 2s infinite;
}

/* ==================== RESPONSIVO CONTACTO ==================== */

@media screen and (max-width: 768px) {

    .titulo-seccion {
        font-size: 28px;
        text-align: center;
    }

    .qr-social {
        width: 90%;
        height: auto;
    }

    .formulario-contacto {
        padding: 20px;
        max-width: 95%;
    }

    .campo-formulario input,
    .campo-formulario textarea {
        font-size: 14px;
        padding: 10px;
    }

    .boton-enviar button {
        width: 100%;
        padding: 12px;
        font-size: 16px;
    }

    .social-promo h2 {
        font-size: 22px;
    }

    .social-handle {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {

    .titulo-seccion {
        font-size: 24px;
    }

    .qr-social {
        width: 100%;
    }

    .formulario-contacto {
        padding: 15px;
    }

    .boton-enviar button {
        font-size: 15px;
        padding: 10px;
    }

    .social-promo h2 {
        font-size: 20px;
    }

    .social-handle {
        font-size: 14px;
    }
}




/* =========================
   SECCIÓN CONSULTAS
========================= */

.equipo-consultas {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.card-consulta {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 20px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.foto-consulta {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
}

.nombre-consulta {
    font-family: 'Cinzel', serif;
    font-size: 20px;
    margin: 10px 0 5px;
    color: #322203;
}

.especialidad-consulta {
    font-weight: bold;
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
}

.descripcion-consulta {
    font-size: 14px;
    color: #444;
    margin-bottom: 15px;
}

.btn-principal {
    background-color: #322203;
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color 0.3s;
}

    .btn-principal:hover {
        background-color: #504030;
    }




/*EFECTO CAMPANEO DE PRÓXIMOS TALLERES*/ 

@keyframes campaneo {
    0%, 100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(5deg);
    }

    40% {
        transform: rotate(-5deg);
    }

    60% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-4deg);
    }
}

.campaneo {
    animation: campaneo 1s ease-in-out;
}



/* =========================
   SECCIÓN AULA VIRTUAL
========================= */
.curso.oculto {
    display: none;
}

/* =========================
   TÍTULOS DE CURSO
========================= */
.titulo-curso {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: #322203;
    text-align: center;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
}

/* =========================
   DESCRIPCIÓN DE CURSO
========================= */
.descripcion-curso {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    color: #333333;
    margin-top: 1rem;
}


/* =========================
   REGISTRO DE USUARIO
========================= */

.registro-form {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-archetypes {
    background-color: #322203;
    color: #fff;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s ease;
}

    .btn-archetypes:hover {
        background-color: #5a442b;
        color: #fff;
    }

.logout-form {
    max-width: 400px;
    margin: 2rem auto;
    padding: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

input,
input[type="text"],
input[type="email"] {
    text-transform: none !important;
}






/* Caja principal tipo tarjeta */
.auth-card {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2.5rem;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
    max-width: 500px;
    width: 100%;
}

/* Tabs personalizadas */
.custom-tabs .nav-link {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    color: #322203;
    border: 2px solid transparent;
    background: transparent;
    transition: all 0.3s ease;
}

    .custom-tabs .nav-link.active {
        background: #322203;
        color: #fff;
        border-color: #322203;
    }

    .custom-tabs .nav-link:hover {
        background: #8c6e4a;
        color: #fff;
        border-color: #8c6e4a;
    }

/* Formularios dentro */
.registro-form {
    background: transparent; /* usamos el fondo de la tarjeta */
    box-shadow: none;
    padding: 0;
}

/* Página de acceso (login/registro) */
/* Solo para la sección de acceso */
.acceso-section {
    display: flex;
    justify-content: center;
    align-items: flex-start; /* al inicio en lugar del centro */
    padding-top: 40px; /* ajusta este valor: 20px, 40px, 60px */
    min-height: auto; /* desactiva el empuje hacia abajo */
}




/* Sobrescribir fuente solo para inputs */
input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    font-family: Arial, sans-serif !important; /* o Roboto, Verdana, etc. */
    text-transform: none !important;
    font-variant: normal !important;
}



