/* ======================================================
    @import
====================================================== */
@import "./responsive.css";
:root {
    --primary: #ff6b35;
    --secondary: #2ec4b6;
    --accent: #ffbe0b;
    --dark: #2b2d42;
    --light: #fffaf5;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* BASE */
body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--dark);
}

/* NAVBAR */
.custom-navbar {
    background: linear-gradient(90deg, var(--primary), #ff8c42);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    letter-spacing: 1px;
}

/* HERO */
.comite-hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.comite-hero img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.comite-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.199), rgba(46, 196, 181, 0.133));
}

.box-text {
    position: relative;
    z-index: 2;
    padding: 50px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.174);
    backdrop-filter: blur(2px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.111);
}

.box-text h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: white;
}

.box-text span {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 25px;
    border-radius: 50px;
    background: var(--accent);
    font-weight: 700;
    color: #000;
}

/* CARDS */
.card {
    border: none;
    border-radius: 25px;
    background: white;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
}

/* EVENTOS */
.div-img {
    height: 220px;
    overflow: hidden;
    border-radius: 25px;
}

.event-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.event-img:hover {
    transform: scale(1.1);
}

/* PROGRESS */
.progress {
    height: 22px;
    border-radius: 50px;
    background: #ffe8d6;
}

.progress-bar {
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    font-weight: 700;
}

/* BOTONES */
.btn-primary {
    background: var(--primary);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e85d04;
}

/* SECCIONES */
section {
    padding: 90px 0 !important;
}

/* TITULOS */
h3 {
    font-weight: 800;
    color: var(--primary);
}

/* GALERÍA */
section img.img-fluid {
    border-radius: 25px;
    transition: 0.4s;
}

section img.img-fluid:hover {
    transform: scale(1.05);
}

/* FOOTER */
footer {
    background: var( --primary);
    font-weight: 500;
}

footer a {
    color: white;
    font-weight: 600;
}

footer a:hover {
    text-decoration: underline;
}



/* GALERÍA */
/* Cursor pointer en imágenes */
.gallery-item img {
    cursor: pointer;
    background-color: #198754;
    width: 7800px;
}

/* Mejora visual del botón cerrar */
.modal-content .btn-close {
    z-index: 10;
    opacity: 0.9;
}

.modal-content .btn-close:hover {
    opacity: 1;
    transform: scale(1.1);
}