/* ============================================
   COMITÉ PAGE - Estilos específicos
   ============================================ */

@import url('variables.css');

.comite-page {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
}

/* ============================================
   HERO SECTION
   ============================================ */

.comite-hero {
    position: relative;
    height: 50vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    overflow: hidden;
}

.comite-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  /*  background: url('../assets/comite.png') center/cover no-repeat; */
    opacity: 0.2;
}

.comite-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: var(--spacing-xl);
    max-width: 900px;
}

.comite-hero__tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    padding: 8px 20px;
    border-radius: var(--border-radius-full);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.comite-hero__title {
    font-size: clamp(36px, 6vw, 56px);
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.comite-hero__subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================================
   FOTO DEL COMITÉ
   ============================================ */

.comite-photo {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-secondary);
}

.comite-photo__container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.comite-photo__image {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-xl);
    object-fit: cover;
}

/* ============================================
   CONTENIDO
   ============================================ */

.comite-content {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-primary);
}

.comite-content__container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

.comite-content__text {
    background: var(--bg-secondary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-md);
    border-left: 5px solid var(--color-primary);
}

.comite-content__paragraph {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.9;
    text-align: justify;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media screen and (max-width: 968px) {
    .comite-hero {
        height: 45vh;
        min-height: 300px;
    }

    .comite-hero__content {
        padding: var(--spacing-lg);
    }

    .comite-photo__container,
    .comite-content__container {
        width: 90%;
    }
}

@media screen and (max-width: 768px) {
    .comite-hero {
        height: 40vh;
        min-height: 250px;
    }

    .comite-hero__title {
        font-size: 32px;
    }

    .comite-hero__subtitle {
        font-size: 15px;
    }

    .comite-content__text {
        padding: var(--spacing-lg);
    }

    .comite-content__paragraph {
        text-align: left;
    }
}

