/* =========================================================================
   DISEÑO EXCLUSIVO - PATRONATO DARE NOGALES
   ========================================================================= */

/* 
   Hero Premium Patronato
   ===================================
*/
.patronato-hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--secondary);
    margin-bottom: 0;
}

.patronato-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('patronatodare/patronato-dare.jpg') center/cover no-repeat;
    /* Efecto Ken Burns Lento e Imponente */
    animation: zoomOutPatronato 25s ease-out infinite alternate;
    z-index: 1;
}

@keyframes zoomOutPatronato {
    from { transform: scale(1.15) translateY(-2%); }
    to { transform: scale(1) translateY(0); }
}

.patronato-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 28, 32, 0.9) 0%,
        rgba(230, 57, 70, 0.7) 100%
    );
    z-index: 2;
}

.patronato-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 30px;
    margin-top: 50px;
}

.patronato-location {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-light);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.patronato-location i {
    font-size: 1.2rem;
}

.patronato-hero-title {
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.patronato-hero-title span {
    color: var(--primary-light);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.patronato-hero-desc {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    background: rgba(0,0,0,0.2);
    padding: 20px 30px;
    border-left: 4px solid var(--primary);
    border-radius: 0 10px 10px 0;
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
    backdrop-filter: blur(5px);
}

.patronato-waves {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
    fill: var(--bg-light);
}

/* =========================================================================
   SECCIÓN: MISIÓN, VISIÓN Y VALORES (TARJETAS GLASMORPHISM PREMIUM)
   ========================================================================= */
.mvc-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
}

.mvc-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.mvc-header {
    text-align: center;
    margin-bottom: 60px;
}

.mvc-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.mvc-header h2 span {
    color: var(--primary);
}

.mvc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvc-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    z-index: 1;
    border-bottom: 5px solid transparent;
}

.mvc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
}

.mvc-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(230,57,70,0.2);
    border-bottom-color: var(--primary-light);
}

.mvc-card:hover::before {
    opacity: 1;
}

.mvc-icon {
    width: 70px;
    height: 70px;
    border-radius: 15px;
    background: rgba(230,57,70,0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 25px;
    transition: all 0.5s ease;
}

.mvc-card:hover .mvc-icon {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

.mvc-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    transition: color 0.5s ease;
}

.mvc-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    transition: color 0.5s ease;
}

.mvc-card:hover h3, 
.mvc-card:hover p {
    color: var(--white);
}

/* =========================================================================
   SECCIÓN: OBJETIVOS PRINCIPALES (LISTA MODERNA CON TIMELINE/STEPPER)
   ========================================================================= */
.objetivos-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.obj-blob {
    position: absolute;
    top: 20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(230,57,70,0.05) 0%, transparent 60%);
    z-index: 0;
    animation: objPulse 15s infinite alternate;
}

@keyframes objPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.2); }
}

.objetivos-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

.objetivos-header {
    text-align: center;
    margin-bottom: 60px;
}

.objetivos-header .kicker {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.objetivos-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
}

/* Lista Estilo Timeline Moderno */
.obj-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.obj-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateX(-30px);
}

.obj-item.in-view {
    opacity: 1;
    transform: translateX(0);
}

.obj-item:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 30px rgba(230,57,70,0.1);
    border-color: rgba(230,57,70,0.2);
}

.obj-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(230,57,70,0.3);
}

.obj-content {
    flex: 1;
}

.obj-content p {
    font-size: 1.1rem;
    color: var(--secondary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.obj-content span.highlight {
    color: var(--primary);
    font-weight: 700;
}

/* Cita Final Fuerte */
.obj-quote {
    margin-top: 60px;
    background: linear-gradient(to right, rgba(230,57,70,0.1), transparent);
    border-left: 5px solid var(--primary);
    padding: 30px;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary);
    border-radius: 0 20px 20px 0;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.obj-quote.in-view {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.obj-quote i {
    color: var(--primary);
    opacity: 0.3;
    font-size: 3rem;
    position: absolute;
    top: 10px;
    right: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .patronato-hero-title {
        font-size: 2.5rem;
    }
    .obj-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .obj-number {
        margin-bottom: 15px;
    }
}
