/**
 * ARKACENTRO - Estilos Conózcanos
 * Archivo: assets/css/about.css
 * Diseño minimalista y profesional
 */

/* ============================================
   HERO SECTION
   ============================================ */

.about-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2a2a2a 100%);
    color: var(--white);
    padding: 50px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,133.3C672,117,768,107,864,122.7C960,139,1056,181,1152,181.3C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
    opacity: 0.1;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* ============================================
   HISTORIA SECTION
   ============================================ */

.about-history {
    padding: 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 400px;
}

.history-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.171) 0%,
        rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 1;
}

.history-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    padding: 60px 0;
}

.history-text {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(8, 8, 8, 0.22);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 201, 55, 0.66);
}

.history-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-align: justify;
}

.history-text p:last-child {
    margin-bottom: 0;
}

.history-text strong {
    color: var(--accent-color);
    font-weight: 600;
}

.history-cta {
    text-align: center !important;
    font-size: 1.15rem !important;
    margin-top: 30px !important;
    padding-top: 20px;
    border-top: 1px solid rgba(226, 181, 0, 0.3);
}

.history-cta strong {
    color: var(--accent-color);
}

/* ============================================
   POR QUÉ ELEGIRNOS
   ============================================ */

.why-choose-us {
    padding: 70px 0;
    background: var(--white);
}

.section-title-about {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

.section-title-about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.reason-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.reason-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 50%;
    font-size: 2rem;
    color: var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.reason-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
}

/* ============================================
   MISIÓN Y VISIÓN
   ============================================ */

.mission-vision {
    padding: 50px 0;
    background: var(--bg-light);
}

.mv-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 50px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
}

.mv-block {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.mv-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.mv-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #d4a000);
    border-radius: 50%;
    font-size: 1.8rem;
    color: var(--white);
}

.mv-block h2 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
    font-weight: 700;
}

.mv-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-color);
    text-align: justify;
}

/* Separador vertical */
.mv-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-line {
    width: 3px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        var(--primary-color) 0%,
        var(--accent-color) 50%,
        var(--primary-color) 100%
    );
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(226, 181, 0, 0.3);
}

/* ============================================
   POLÍTICA DE TRATAMIENTO DE DATOS
   ============================================ */

.privacy-policy {
    padding: 70px 0;
    background: var(--white);
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
}

.privacy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #3a3a3a);
    border-radius: 50%;
    font-size: 2.2rem;
    color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.privacy-intro-text,
.privacy-rights-intro,
.privacy-legal-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

.privacy-intro-text {
    margin-bottom: 15px;
}

.privacy-rights-intro {
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-legal-text {
    margin-top: 25px;
    margin-bottom: 30px;
}

.privacy-content strong {
    color: var(--primary-color);
    font-weight: 600;
}

.privacy-list {
    margin-bottom: 20px;
    padding-left: 30px;
}

.privacy-list p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 8px;
}

.privacy-contact {
    margin-top: 35px;
}

.contact-box {
    background: linear-gradient(135deg, var(--primary-color), #2a2a2a);
    color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-box i {
    font-size: 2.5rem;
    color: var(--accent-color);
    flex-shrink: 0;
}

.contact-box h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--white);
    font-weight: 600;
}

.contact-box p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.email-link {
    display: inline-block;
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 2px solid var(--accent-color);
}

.email-link:hover {
    color: #f5c500;
    border-bottom-color: #f5c500;
}

/* ============================================
   MURALES SECTION (Opcional)
   ============================================ */

.murales-section {
    padding: 80px 0;
    background: var(--white);
}

.section-subtitle-about {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 50px;
    font-style: italic;
}

.murales-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.mural-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.mural-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mural-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.mural-info {
    padding: 20px;
    background: var(--white);
}

.mural-info h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.mural-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .mv-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mv-divider {
        display: none;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }

    .privacy-content {
        padding: 30px 25px;
    }

    .contact-box {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .page-subtitle {
        font-size: 1rem;
    }
    
    .history-content {
        min-height: 350px;
        padding: 40px 0;
    }
    
    .history-text {
        padding: 30px 20px;
    }
    
    .history-text p {
        font-size: 1rem;
        margin-bottom: 16px;
    }
    
    .why-choose-us {
        padding: 60px 0;
    }
    
    .section-title-about {
        font-size: 1.6rem;
        margin-bottom: 40px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .reason-card {
        padding: 30px 20px;
    }
    
    .mission-vision {
        padding: 60px 0;
    }
    
    .mv-block {
        padding: 30px 25px;
    }
    
    .mv-block h2 {
        font-size: 1.4rem;
    }
    
    .murales-grid {
        grid-template-columns: 1fr;
    }

    .privacy-policy {
        padding: 60px 0;
    }

    .privacy-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 1.6rem;
    }
    
    .history-text {
        padding: 25px 15px;
    }
    
    .reason-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
    }

    .privacy-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .privacy-content {
        padding: 20px 15px;
    }

    .contact-box {
        padding: 25px 20px;
    }

    .email-link {
        font-size: 0.95rem;
        word-break: break-all;
    }
}