/* CSS ESPECÍFICO PARA PÁGINA ACERCA DE */

/* Estructura principal */
#contenedor .about-content {
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
#contenedor .about-hero-section {
    background: url('/img/recipes/proceso_glorias.png') center center no-repeat;
    background-size: cover;
    color: white;
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 0;
    position: relative;
}

#contenedor .about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); 
    z-index: 1;
}

#contenedor .about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

#contenedor .about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: white;
}

#contenedor .about-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: white;
}

/* Main Container */
#contenedor .about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Section */
#contenedor .about-main-section {
    padding: 40px 0 60px;
}

/* Section Title */
#contenedor .about-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

#contenedor .about-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #c60969;
}

/* Timeline Section */
#contenedor .about-timeline-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin: 40px 0 60px;
}

/* Timeline Card */
#contenedor .about-timeline-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #eee;
}

#contenedor .about-timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(198, 9, 105, 0.15);
    border-color: #c60969;
}

#contenedor .about-timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #c60969, #ef548d);
}

#contenedor .about-year-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c60969;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 3px 10px rgba(198, 9, 105, 0.3);
    z-index: 2;
}

#contenedor .about-timeline-content {
    padding: 30px 25px 25px;
}

#contenedor .about-timeline-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c60969;
    margin-bottom: 15px;
    padding-right: 70px;
}

/* Stats Section */
#contenedor .about-stats-section {
    background: linear-gradient(135deg, #c60969 0%, #ef548d 100%);
    padding: 50px 0;
    margin: 40px 0 60px;
    border-radius: 10px;
    color: white;
}

#contenedor .about-stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    text-align: center;
}

#contenedor .about-stat-item {
    padding: 15px;
}

#contenedor .about-stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1;
}

#contenedor .about-stat-label {
    font-size: 1rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quality Section */
#contenedor .about-quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0 60px;
}

#contenedor .about-quality-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

#contenedor .about-quality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(198, 9, 105, 0.15);
    border-color: #c60969;
}

#contenedor .about-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #c60969, #ef548d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 28px;
}

#contenedor .about-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

#contenedor .about-certifications-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

#contenedor .about-certification-item {
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

#contenedor .about-certification-item:last-child {
    border-bottom: none;
}

#contenedor .about-cert-marker {
    width: 8px;
    height: 8px;
    background-color: #c60969;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Mission & Vision Section */
#contenedor .about-mission-vision-section {
    margin: 50px 0 60px;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#contenedor .about-mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

#contenedor .about-mission-box, 
#contenedor .about-vision-box {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#contenedor .about-mission-box {
    background: #c60969;
    color: white;
}

#contenedor .about-vision-box {
    background: white;
}

#contenedor .about-mission-title, 
#contenedor .about-vision-title {
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

#contenedor .about-mission-title::after, 
#contenedor .about-vision-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
}

#contenedor .about-mission-title::after {
    background: white;
}

#contenedor .about-vision-title::after {
    background: #c60969;
}

/* Ethics Section */
#contenedor .about-ethics-section {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 50px 0;
}

#contenedor .about-ethics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

#contenedor .about-ethics-card {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 25px;
    transition: all 0.3s ease;
    border-left: 4px solid #c60969;
}

#contenedor .about-ethics-card:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

#contenedor .about-ethics-number {
    font-size: 2rem;
    font-weight: 700;
    color: #c60969;
    margin-bottom: 10px;
    opacity: 0.3;
}

#contenedor .about-ethics-principle {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    #contenedor .about-hero-title {
        font-size: 2.2rem;
    }
    
    #contenedor .about-hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    #contenedor .about-section-title {
        font-size: 1.5rem;
    }
    
    #contenedor .about-mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    #contenedor .about-mission-box, 
    #contenedor .about-vision-box {
        padding: 30px 20px;
    }
    
    #contenedor .about-timeline-content {
        padding: 25px 20px 20px;
    }
    
    #contenedor .about-year-badge {
        width: 50px;
        height: 50px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }
    
    #contenedor .about-stat-number {
        font-size: 2.2rem;
    }
    
    #contenedor .about-ethics-section {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    #contenedor .about-timeline-container {
        grid-template-columns: 1fr;
    }
    
    #contenedor .about-hero-title {
        font-size: 1.8rem;
    }
    
    #contenedor .about-stats-container {
        grid-template-columns: 1fr 1fr;
    }
    
    #contenedor .about-quality-grid {
        grid-template-columns: 1fr;
    }
    
    #contenedor .about-ethics-grid {
        grid-template-columns: 1fr;
    }
}
.blanc {
    color: #eee;
}