/* ============================================
   ABOUT / MI HISTORIA SECTION
   ============================================ */

.about {
    position: relative;
    width: 100%;
    background-image: url('../../assets/images/generales/peluqueria-x-1920.webp');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
}

/* Oscurecido sobre la imagen */
.about-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 0;
}

/* Contenedor interno de dos columnas */
.about-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 36px 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* ============================================
   COLUMNA IZQUIERDA — texto historia
   ============================================ */

.about-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-title {
    font-family: 'Dancing Script', cursive;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #29abe2;
    margin-bottom: 10px;
    text-align: center;
}

.about-left p {
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    color: #ffffff;
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   COLUMNA DERECHA — slogan + boton WhatsApp
   ============================================ */

.about-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    text-align: center;
}

.about-slogan {
    font-family: 'Great Vibes', cursive;
    font-size: clamp(1.9rem, 5vw, 3.8rem);
    font-weight: 400;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
}

/* Boton WhatsApp verde */
.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #4caf50;
    color: #ffffff;
    font-size: clamp(0.95rem, 1.5vw, 1.05rem);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.btn-whatsapp i {
    font-size: 1.2rem;
}

.btn-whatsapp:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .about {
        background-attachment: scroll;
        min-height: auto;
    }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 20px;
    }

    .about-right {
        gap: 24px;
    }

    .btn-whatsapp {
        white-space: normal;
        text-align: center;
        max-width: 320px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about-inner {
        padding: 28px 16px;
    }
}
