/*==================================================
    NOSOTROS - MIALÚ BABY
==================================================*/


/*==================================================
    HERO / BANNER
==================================================*/

.nosotros-banner {

    padding: 110px 0 90px;
    background: var(--crema-light);
    position: relative;
    overflow: hidden;
}

.nosotros-banner::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--beige-light);
    opacity: .35;
    filter: blur(50px);
    top: -120px;
    left: -120px;
}


.nosotros-banner::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--rosa-light);
    opacity: .20;
    filter: blur(60px);
    bottom: -120px;
    right: -100px;
}

.nosotros-banner .container {
    position: relative;
    z-index: 2;
}

/*==================================================
    TITULO PRINCIPAL
==================================================*/

.hero-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.hero-title h1 {
    margin: 0;
    color: var(--taupe-darkest);
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-badge {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--rosa-light);
    box-shadow: var(--shadow-beige);
}

.hero-badge i {
    color: var(--rosa-darkest);
    font-size: 1.3rem;
}

.hero-subtitle {
    max-width: 720px;
    margin: auto;
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.9;
}

/*==================================================
    CONTENEDORES
==================================================*/

.nosotros-banner .container,
.section-story .container,
.quote-section .container,
.section-mission .container,
.section-values .container,
.section-numbers .container,
.section-final .container {
    padding-left: 24px;
    padding-right: 24px;
}

/*==================================================
    SECCIONES
==================================================*/

section {
    padding: 90px 0;
}

.section-story {
    background: var(--crema-light);
}

.section-story h2,
.section-values h2,
.section-mission h2,
.section-final h2 {
    color: var(--taupe-darkest);
    font-weight: 700;
}

.section-story p {
    color: var(--text-secondary);
    line-height: 2;
    font-size: 1.05rem;
}

/*==================================================
    ETIQUETAS
==================================================*/

.section-label {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 30px;
    background: var(--beige-light);
    color: var(--taupe-dark);
    font-weight: 600;
}

/*==================================================
    IMAGEN HISTORIA
==================================================*/
.story-image img {
    border-radius: 28px;
    box-shadow: var(--shadow-md);
}

/*==================================================
    FRASE
==================================================*/
.quote-section {
    background: var(--beige-light);
}

.quote-section blockquote {
    max-width: 850px;
    margin: auto;
    text-align: center;
    color: var(--taupe-darkest);
    font-size: 1.7rem;
    line-height: 1.8;
    font-style: italic;
}

.quote-section blockquote::before {
    content: "“";
    display: block;
    font-size: 5rem;
    line-height: .7;
    color: var(--beige-dark);
}

/*==================================================
    MISION
==================================================*/
.section-mission {
    background: var(--crema-light);
}

.section-mission .lead {
    color: var(--text-secondary);
}

/*==================================================
    VALORES
==================================================*/

.section-values {
    background: var(--beige-lightest);
}


.value-card {
    height: 100%;
    padding: 40px 30px;
    background: var(--crema-lightest);
    border-radius: 28px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: .3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: auto auto 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--beige-light);
}

.value-icon i {
    color: var(--taupe-dark);
    font-size: 2rem;
}

.value-card h4 {
    color: var(--taupe-darkest);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.final {
    background: linear-gradient(180deg, var(--beige-lightest), white);
}

/*==================================================
    NUMEROS
==================================================*/
.number-card h3 {
    color: var(--taupe-dark);
    font-size: 3rem;
}

.number-card p {
    color: var(--text-secondary);
}

/*==================================================
    FINAL
==================================================*/
.final-heart {
    width: 80px;
    height: 80px;
    margin: auto auto 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--rosa-light);
}

.final-heart i {
    color: var(--rosa-darkest);
    font-size: 2rem;
}

/*==================================================
    RESPONSIVE
==================================================*/
@media(max-width:991px) {
    .nosotros-banner {
        padding: 80px 0 70px;
    }

    section {
        padding: 70px 0;
    }
}

@media(max-width:576px) {
    .nosotros-banner .container,
    .section-story .container,
    .quote-section .container,
    .section-mission .container,
    .section-values .container,
    .section-numbers .container,
    .section-final .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero-title h1 {
        font-size: 2.3rem;
    }

    .hero-badge {
        width: 52px;
        height: 52px;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}