/* ----- Estilos para la Sección de Artistas ----- */
.hero-section {
    background-color: #0097A7;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

/* Fondo celeste más ancho */
.hero-section h1 {
    font-family: 'Playfair Display', serif;
    font-size: 45px;
    font-weight: bold;
    background-color: #4DD0E1;
    display: inline-block;
    padding: 15px 0;
    border-radius: 8px;
    width: 620px; /* 🔹 Esto reemplaza los 310px de padding */
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: nowrap; /* ❗ Impide el salto de línea */
}


/* "¡Te estamos buscando!" más grande, en negro y misma fuente que "¿ERES ARTISTA?" */
.hero-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: bold;
    color: black;
    margin-top: 15px;
}

.hero-section p {
    font-size: 18px;
    margin: 15px 0;
}

@media screen and (max-width: 480px) {
    .hero-section h1 {
        font-size: 28px;
        padding: 12px 20px;
    }
}


.bold-text {
    font-weight: bold;
    color: black;
}

/* ----- Botón de llamada a la acción (CTA) ----- */
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    background-color: white;
    border-radius: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* 🔹 Efecto hover: Zoom suave y cambio de color */
.cta-button:hover {
    background-color: #f4f4f4; /* Color ligeramente gris al pasar el cursor */
    transform: scale(1.05); /* Pequeño zoom */
}


/* ----- Estilos de la Sección de Mentorías ----- */
.mentorias {
    background-color: #f4f4f4;
    text-align: center;
    padding: 60px 20px;
}

.mentorias h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
}

/* Contenedor de las tarjetas */
.mentoria-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

/* Contenedor de cada tarjeta con su botón */
.mentoria-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tarjetas individuales */
.mentoria-card {
    background-color: white;
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Efecto hover en las tarjetas */
.mentoria-card:hover {
    transform: scale(1.05);
}

/* Imágenes de las tarjetas */
.mentoria-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* Título de cada tarjeta */
.mentoria-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Botones de "MÁS INFORMACIÓN" debajo de las tarjetas */
.btn-mas-info {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 50px;
    font-size: 16px;
    font-weight: normal; /* Se quita la negrita */
    text-decoration: none;
    color: white;
    background-color: #0097A7;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

/* 🔹 Efecto hover: Cambio de color y zoom */
.btn-mas-info:hover {
    color: black;
    transform: scale(1.05);
    border: 2px solid #0097A7;
}

/* ----- Estilos del Carrusel ----- */
.carousel-section {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Mantiene una altura más baja */
    overflow: hidden;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
    height: 100%;
}

.slide {
    min-width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ajuste perfecto sin distorsión */
}

/* Flechas de navegación */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    font-size: 30px;
    padding: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

.prev:hover, .next:hover {
    background: rgba(255, 255, 255, 0.6);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* Puntos indicadores */
.dots-container {
    text-align: center;
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #0097A7;
}

/* ----- RESPONSIVE igual al CSS anterior ----- */
@media screen and (max-width: 1024px) {
    .carousel-container {
        height: 70vh; /* Un poco más bajo en tablets */
    }
}

@media screen and (max-width: 768px) {
    .carousel-container {
        height: 60vh; /* Más bajo en móviles */
    }
}

@media screen and (max-width: 480px) {
    .carousel-container {
        height: 50vh; /* Aún más bajo en celulares pequeños */
    }
}


/* ----- Sección "SUMATE A NUEVAS PROPUESTAS" ----- */
.new-proposals {
    text-align: center;
    padding: 50px 20px;
    background-color: #f4f4f4;
}

/* ----- Ajuste de la Franja Celeste ----- */
.title-container {
    background-color: #4DD0E1;
    padding: 30px 20px; /* Mantiene el grosor */
    text-align: center;
    max-width: 1100px; /* Mismo ancho que la galería */
    margin: 0 auto; /* Centrada */
    border-radius: 10px; /* Opcional, si quieres bordes redondeados */
}


.title-container h2 {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: bold;
    color: black;
}

/* Contenedor de texto */
.text-container {
    max-width: 800px;
    margin: 30px auto;
}

.text-container h3 {
    font-size: 22px;
    font-weight: bold;
}

.text-container p {
    font-size: 18px;
    margin-top: 10px;
}

/* Galería de imágenes */
.gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 40px auto;
}

/* ----- Ajustes para que todas las imágenes sean del mismo tamaño ----- */
.gallery-item {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery-item img {
    width: 100%; /* Todas del mismo ancho */
    height: 250px; /* Altura fija para uniformidad */
    object-fit: cover; /* Recorta sin deformar */
    border-radius: 8px;
}

/* ----- Texto siempre fuera de la imagen ----- */
.gallery-item p {
    font-family: 'Roboto', serif;
    font-size: 22px; /* Un poco más grande */
    font-weight: bold; /* En negrita */
    margin-top: 10px; /* Separado de la imagen */
}


/* Responsive: Ajustes en pantallas pequeñas */
@media screen and (max-width: 1024px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .gallery {
        grid-template-columns: 1fr;
    }

    .title-container h2 {
        font-size: 30px;
    }

    .text-container p {
        font-size: 16px;
    }
}

/* ----- Sección Cursos y Talleres ----- */
.cursos-talleres {
    background-color: #00a1b7;
    padding: 60px 20px;
    text-align: center;
}

/* ----- Título con franja celeste ----- */
.title-container {
    background-color: #4DD0E1;
    padding: 30px;
    text-align: center;
    font-size: 28px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    max-width: 1100px;
    margin: 0 auto;
}

/* ----- Texto principal ----- */
.section-subtitle {
    font-size: 22px;
    font-family: 'Roboto
    ', serif;
    font-weight: bold;
    color: black;
    margin-top: 20px;
}

.section-text {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    color: black;
    max-width: 900px;
    margin: 10px auto 30px;
}

/* ----- Contenedor de Imágenes ----- */
.image-container {
    display: flex;
    justify-content: center;

    margin-top: 20px;
}

.image-container img {
    width: 350px; /* Ajuste de tamaño */
    height: 230px;
    object-fit: cover;
}

/* ----- Botón de Más Información ----- */
.more-info-btn {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    background-color: white;
    padding: 15px 30px;
    border-radius: 30px;
    margin-top: 30px;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* 🔹 Efecto hover: Zoom y cambio de color */
.more-info-btn:hover {
    background-color: #f4f4f4;
    background: #4DD0E1;
    transform: scale(1.05);
}

/* ----- Adaptación Responsive ----- */
@media screen and (max-width: 768px) {
    .image-container {
        flex-direction: column;
        align-items: center;
    }

    .image-container img {
        width: 90%; /* Ajuste para móviles */
        height: auto;
    }
}

