/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Hero Section */
.hero-sobre {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0 40px 0; /* Antes: 60px 0 40px 0 */
    background: #fdf6ee;
}
.hero-sobre-image {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-sobre-image img {
    width: 100vw;
    max-width: 100vw;
    height: 400px;
    object-fit: cover;
    border-radius: 0;
}
.hero-sobre-content {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
    width: 90%;
    pointer-events: none;
}
.hero-sobre-content h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}
.hero-sobre-subtitle {
    font-size: 1.3rem;
    font-weight: 400;
    margin: 0;
}

/* Historia Section */
.historia {
    padding: 80px 0;
    background: #fff;
}
.historia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.historia-texto h2 {
    color: #2d1c10;
    font-size: 2.2em;
    margin-bottom: 24px;
}
.historia-texto p {
    color: #6f4e37;
    line-height: 1.8;
    font-size: 1.1em;
    margin-bottom: 20px;
}
.historia-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(111,78,55,0.1);
}

/* Valores Section */
.valores-principales {
    padding: 80px 0;
    background: #fcf6ed;
}
.valores-principales h2 {
    text-align: center;
    color: #2d1c10;
    font-size: 2.4em;
    margin-bottom: 48px;
}
.valores-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.valor-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(111,78,55,0.05);
}
.valor-card:hover {
    transform: translateY(-5px);
}
.valor-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin-bottom: 24px;
    object-fit: cover;
}
.valor-card h3 {
    color: #6f4e37;
    font-size: 1.4em;
    margin-bottom: 16px;
}
.valor-card p {
    color: #2d1c10;
    line-height: 1.6;
}

/* Proceso Section */
.proceso {
    padding: 80px 0;
    background: #fff;
}
.proceso h2 {
    text-align: center;
    color: #2d1c10;
    font-size: 2.4em;
    margin-bottom: 48px;
}
.proceso-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}
.proceso-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: #6f4e37;
    z-index: 1;
}
.proceso-paso {
    text-align: center;
    position: relative;
    z-index: 2;
}
.paso-numero {
    width: 40px;
    height: 40px;
    background: #6f4e37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 20px;
}
.proceso-paso h3 {
    color: #2d1c10;
    font-size: 1.2em;
    margin-bottom: 12px;
}
.proceso-paso p {
    color: #6f4e37;
    font-size: 0.95em;
    line-height: 1.6;
}

/* Equipo Section */
.equipo {
    padding: 80px 0;
    background: #fcf6ed;
}
.equipo h2 {
    text-align: center;
    color: #2d1c10;
    font-size: 2.4em;
    margin-bottom: 48px;
}
.equipo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.miembro {
    text-align: center;
}
.miembro img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(111,78,55,0.1);
}
.miembro h3 {
    color: #2d1c10;
    font-size: 1.3em;
    margin-bottom: 8px;
}
.miembro p {
    color: #6f4e37;
    font-size: 1em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .valores-grid,
    .proceso-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    .proceso-timeline::before {
        display: none;
    }
}
@media (max-width: 768px) {
    .hero-sobre-content h1 {
        font-size: 2.8em;
    }
    .hero-sobre {
        align-items: flex-end; /* Mantener el contenido abajo en móvil */
    }
    .historia-grid {
        grid-template-columns: 1fr;
    }
    .historia-imagen {
        order: -1;
    }
    .valores-grid,
    .proceso-timeline,
    .equipo-grid {
        grid-template-columns: 1fr;
    }
    .proceso-paso {
        margin-bottom: 30px;
    }
}

/* Navbar siempre por encima */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000 !important;
}