/* Página Sobre Mí (usa navbar/footer de index.css) */
body {
    background: #fef6ff;
}

/* Sobre mí */
.about-me-section {
    background: #fff;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.profile-img img {
    max-width: 320px;
    border: 6px solid #a569bd;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.text-purple {
    color: #6d1a94;
}

.about-text h3 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: clamp(20px, 3.2vw, 28px);
}

.about-text h5 {
    font-size: clamp(16px, 2.4vw, 20px);
}

.about-text p {
    font-size: clamp(14px, 2.2vw, 16px);
    line-height: 1.8;
}

.obillo {
    width: clamp(18px, 5vw, 32px);
    height: auto;
}

/* Inspiración */
.inspiration-section {
    background: #fff;
}

.inspiration-section .container {
    background: #d493f8;
    color: #fff;
    border-radius: 40px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.section-title {
    font-weight: 700;
    font-size: 1.8rem;
    color: #fff;
}

.inspiration-img {
    width: 30%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .2);
    transition: transform .3s ease;
}

.inspiration-img:hover {
    transform: scale(1.08);
}

/* Valores */
.value-section {
    background: #fff;
    padding-bottom: 3rem;
}

.value-section .container {
    background: #e6d3fa;
    border-radius: 40px;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    width: 70%;
}

.values-title {
    font-weight: 700;
    font-size: 1.7rem;
    color: #4b007d;
    margin-bottom: 2rem;
}

.value-pill {
    background: #a849e8;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    padding: .7rem 1.8rem;
    border-radius: 40px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    cursor: default;
    transition: transform .3s ease;
    width: 250px;
    height: 30%;
}

.value-pill:hover {
    transform: scale(1.1);
}

/* Anécdota */
.anecdote-section {
    background: #4b007d;
    position: relative;
    overflow: hidden;
}

.anecdote-title {
    font-size: clamp(22px, 4vw, 36px);
}

.anecdote-subtitle {
    font-size: clamp(14px, 2.4vw, 18px);
}

.anecdote-text {
    font-size: clamp(14px, 2.2vw, 17px);
    line-height: 1.8;
    word-break: break-word;
}

.anecdote-butterfly {
    width: 400px;
    height: auto;
    opacity: .9;
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Bordes ondulados (fallback sin imagen) */
.wave-top,
.wave-bottom {
    width: 100%;
    height: 60px;
    background: transparent;
}

.wave-top {
    position: absolute;
    top: 0;
    left: 0;
}

.wave-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Collage clientes */
.clientes-collage {
    padding: 48px 0;
    background: #faf6ff;
}

.cc-title {
    color: #4b007d;
    font-weight: 800;
    margin-bottom: 18px;
}

.cc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.cc-item {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    aspect-ratio: 1/1;
}

.cc-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.cc-item:hover img {
    transform: scale(1.04);
}

@media (min-width:992px) {
    .cc-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsivo */
@media (max-width:767.98px) {
    .value-section .container {
        width: 100% !important;
    }

    .anecdote-butterfly {
        width: min(240px, 70vw);
        padding-top: 16px;
        padding-bottom: 0;
    }

    .wave-top,
    .wave-bottom {
        height: 40px;
    }

    .anecdote-section .container {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
        align-items: center;
    }
}