/* --- 1. CONFIGURACIÓN, VARIABLES Y RESET --- */
:root {
    --primary-dark: #608052;   
    --accent-green: #7ca36b;     
    --soft-green: #b5c99a;       
    --white: #ffffff;
    --text-main: #333333;
    --text-light: #666666;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Variables unificadas para el Navbar */
    --primary-nav: #608052; 
    --accent-nav: #7ca36b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
}

/* --- 2. NAVEGACIÓN (Actualizada al Estilo App) --- */
.hero-conocenos {
    position: relative;
    width: 100%;
    min-height: 100px; 
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.281)),  
                url('../img/descarga (6).jfif'); 
    background-size: cover;
    background-position: center;
    padding: 0 8%;
    display: flex;
    flex-direction: column;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    z-index: 10;
}

.logo img {
    height: 80px; /* Tamaño unificado */
    filter: brightness(0) invert(1); 
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px; /* SEPARACIÓN EXACTA SOLICITADA */
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 1.0rem;
    font-weight: 500;
    transition: var(--transition);
    opacity: 0.95;
}

/* Botones de icono estilo App con efecto cristal */
.nav-icon-btn, .back-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12); /* Fondo traslúcido */
    color: var(--white) !important;
    border-radius: 15px; 
    font-size: 1.6rem !important;
    transition: var(--transition);
    text-decoration: none;
    backdrop-filter: blur(8px); /* Efecto cristal */
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-icon-btn:hover, .back-arrow:hover {
    background: var(--primary-nav);
    transform: translateY(-3px);
    border-color: var(--accent-nav);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* --- 3. SECCIÓN DE TÍTULO --- */
.workshops-main {
    padding: 40px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: -1px;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--soft-green);
    margin: 15px auto;
}

/* --- 4. BANNERS PREMIUM (Estilo original mantenido) --- */
.courses-container {
    max-width: 1100px;
    margin: 0 auto;
}

.special-program-banner {
    background-size: cover;
    background-position: center;
    padding: 60px 40px; 
    border-radius: 40px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.special-program-banner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.program-text {
    position: relative;
    z-index: 2;
}

.image-overlay-text {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    opacity: 0.9;
}

.program-text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.program-text p {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: 1rem;
    line-height: 1.4;
    text-align: center;
}

/* --- 5. BOTONES PREMIUM REDONDEADOS --- */
.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--primary-dark);
    padding: 14px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border: 2px solid var(--white);
}

.btn-azul {
    color: #172531 !important;
}


.btn-arte{
    color: #71c3c5 !important;
}
.btn-primary:hover {
    background: transparent;
    color: var(--white);
    transform: scale(1.05);
}

/* --- 6. FOOTER --- */
.site-footer {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.281)),  
                url('../img/descarga (6).jfif'); 
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 50px 8% 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo img {
    height: 80px; /* Igualado al navbar */
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

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

.social-icons a {
    color: white;
    font-size: 2rem;
    transition: var(--transition);
    opacity: 0.8;
}

.social-icons a:hover { 
    color: var(--soft-green);
    opacity: 1;
    transform: translateY(-3px);
}

/* --- 7. RESPONSIVO (Actualizado para el Navbar) --- */
@media (max-width: 992px) {
    .workshops-main { padding: 30px 5%; }
    .program-text h3 { font-size: 1.8rem; }
}

@media (max-width: 768px) {
    .navbar { flex-direction: column; gap: 20px; }
    .nav-links { gap: 35px; flex-wrap: wrap; justify-content: center; }
    .nav-icon-btn, .back-arrow { width: 42px; height: 42px; font-size: 1.4rem !important; }
    
    .section-title h2 { font-size: 1.8rem; }
    .special-program-banner { 
        padding: 40px 20px; 
        border-radius: 25px; 
        margin-bottom: 20px;
    }
    
    .program-text h3 { font-size: 1.5rem; }
    .program-text p { font-size: 0.9rem; margin-bottom: 20px; }
    .btn-primary { padding: 12px 35px; font-size: 0.8rem; }
    .footer-container { flex-direction: column; text-align: center; }
}