/* =========================================================================
   DISEÑO EXCLUSIVO - ACERCA DE DARE
   ========================================================================= */

/* Hero Premium Alternativo para Acerca de DARE */
.acerca-hero {
    position: relative;
    height: 65vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--secondary);
    margin-bottom: 0;
}

.acerca-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('banner/banner2.jpg') center/cover no-repeat;
    transform: scale(1.1);
    animation: panImage 25s linear infinite alternate;
    z-index: 1;
}

@keyframes panImage {
    from { background-position: 0% 50%; }
    to { background-position: 100% 50%; }
}

.acerca-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(26, 28, 32, 0.6) 0%, rgba(26, 28, 32, 0.9) 100%);
    z-index: 2;
}

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

.acerca-hero-kicker {
    display: inline-block;
    color: var(--primary-light);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.acerca-hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
    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;
}

.acerca-hero-title span {
    color: var(--white);
    position: relative;
}

.acerca-hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--primary);
    z-index: -1;
    border-radius: 4px;
    opacity: 0.8;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    to { opacity: 1; transform: translateY(0); }
}

/* Efecto Wave al fondo del Hero */
.acerca-bottom-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 5;
    fill: var(--bg-light);
}

/* =========================================================================
   SECCIÓN: HISTORIA IMPRESIONANTE
   ========================================================================= */
.acerca-historia-section {
    padding: 100px 0;
    background-color: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(rgba(230, 57, 70, 0.05) 2px, transparent 2px),
        radial-gradient(rgba(230, 57, 70, 0.05) 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    z-index: 0;
}

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

.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Columna de Texto Premium */
.historia-texto {
    position: relative;
}

.historia-texto .section-kicker {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 15px;
}

.historia-texto h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
    margin-bottom: 30px;
}

.texto-destacado {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    color: var(--secondary);
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.texto-normal {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Columna Visual / Estadísticas Globales */
.historia-visual {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.h-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

/* Variaciones de posicionamiento para un look orgánico */
.h-card:nth-child(1) { transform: translateY(20px); }
.h-card:nth-child(2) { transform: translateY(-20px); }
.h-card:nth-child(3) { transform: translateY(-30px); }
.h-card:nth-child(4) { transform: translateY(10px); }

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

.h-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-float);
}

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

.h-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
    transition: all 0.5s ease;
}

.h-card:hover .h-icon {
    color: var(--white);
    transform: scale(1.2) rotate(15deg);
}

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

.h-card p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.5s ease;
}

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

/* =========================================================================
   SECCIÓN: MENSAJE FINAL (EL IMPACTO)
   ========================================================================= */
.impacto-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.impacto-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.impacto-box {
    background: var(--bg-light);
    border-radius: 30px;
    padding: 60px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

/* Aspas mágicas (blob) detrás del texto */
.impacto-box::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.impacto-box::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
    animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
    100% { transform: translateY(0px) scale(1); }
}

.impact-icon-top {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.impacto-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.impacto-box p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.impacto-box strong {
    color: var(--secondary);
    font-weight: 700;
}

/* =========================================================================
   MEDIA QUERIES ACERCA DE DARE
   ========================================================================= */
@media screen and (max-width: 1024px) {
    .historia-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .historia-visual {
        grid-template-columns: 1fr 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    .h-card:nth-child(n) {
        transform: translateY(0); /* Remover variaciones de posición */
    }
}

@media screen and (max-width: 768px) {
    .acerca-hero-title {
        font-size: 2.8rem;
    }
    .historia-visual {
        grid-template-columns: 1fr;
    }
    .impacto-box {
        padding: 40px 20px;
    }
    .impacto-box h2 {
        font-size: 2rem;
    }
    .impacto-box p {
        font-size: 1.1rem;
    }
}
