/* ===== CONTENIDO PRINCIPAL ===== */

/* Layout Base */
.main {
    min-height: calc(100vh - 80px); /* Altura total menos nav */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--vista-white) 0%, var(--citrine-white) 50%, var(--chantilly) 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 60px;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    box-sizing: border-box;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23f8c5e4" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23c6709b" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ba0b5f" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.hero__content {
    max-width: 800px;
    width: 100%;
    position: relative;
    z-index: 2;
    padding: 0 20px;
    box-sizing: border-box;
}

.hero__title-background {
    position: absolute;
    top: -275px; /* Moved up more to avoid text overlap */
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 450px;
    border-radius: 500px 500px 0 0;
    overflow: hidden;
    z-index: 1;
    opacity: 1;
}


.hero__title-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(0.5);
}


.hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 100px 0 24px 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
    word-wrap: break-word;
    hyphens: auto;
    -webkit-hyphens: auto;
}

.hero__title-highlight {
    background: linear-gradient(135deg, var(--jazzberry-jam), var(--cardinal-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    /* Evitar cortes de palabra no deseados en el texto destacado */
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
    word-break: keep-all;
    overflow-wrap: normal;
}

.hero__brand {
    display: inline-block;
    max-width: 500px;
    height: auto;
    margin: 8px 0;
    padding: 0;
    border-radius: 0;
}

.hero__title-accent {
    color: var(--corn-harvest);
    position: relative;
}

/* Quitar línea decorativa bajo el título */
.hero__title::after { display: none; content: none; }

.hero__subtitle {
    font-size: 1.3rem;
    color: var(--color-secundario);
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.7);
    padding: 12px 20px;
    border-radius: 25px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 11, 95, 0.1);
    transition: all 0.3s ease;
}

.hero__benefit:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 15px rgba(186, 11, 95, 0.1);
}

.hero__benefit-icon {
    width: 20px;
    height: 20px;
    color: var(--jazzberry-jam);
    flex-shrink: 0;
}

.hero__benefit span {
    font-weight: 600;
    color: var(--color-secundario);
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    margin-bottom: 50px;
}

.hero__social-proof {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.hero__testimonials-carousel {
    width: 100%;
    max-width: 600px;
    overflow: hidden;
    position: relative;
    cursor: grab;
    margin: 0 auto;
    padding: 0 20px 40px 20px;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero__testimonials-carousel:active {
    cursor: grabbing;
}

.hero__testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 0;
}

.hero__testimonial {
    flex: 0 0 100%;
    text-align: center;
    padding: 0 20px;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.hero__testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 0 0 20px 0;
}

.hero__testimonials-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--indian-khaki);
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.hero__testimonials-dot.active {
    background: var(--hopbush);
    opacity: 1;
    transform: scale(1.2);
}

.hero__testimonial {
    background: rgba(255, 255, 255, 0.8);
    padding: 24px;
    border-radius: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(186, 11, 95, 0.1);
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.hero__stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.hero__stars svg {
    width: 20px;
    height: 20px;
    color: #ffd700;
}

.hero__testimonial-text {
    font-style: italic;
    color: var(--color-secundario);
    margin: 0 0 8px 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.hero__testimonial-author {
    color: var(--cardinal-pink);
    font-weight: 600;
    font-size: 0.9rem;
}

.hero__stats {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--jazzberry-jam);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.9rem;
    color: var(--color-secundario);
    font-weight: 500;
}

.hero__image {
    max-width: 500px;
    width: 100%;
    position: relative;
}

.hero__image-container {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(186, 11, 95, 0.2);
    transition: transform 0.3s ease;
}

.hero__image-container:hover {
    transform: translateY(-5px);
}

.hero__img {
    width: 100%;
    height: auto;
    display: block;
}

.hero__image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--jazzberry-jam), var(--cardinal-pink));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(186, 11, 95, 0.3);
}

/* ===== CARRUSEL DE CLIENTAS ===== */
.hero__clients-carousel {
    width: 100%;
    max-width: 100%;
    margin: 30px auto 0;
    position: relative;
    padding: 0 60px;
    box-sizing: border-box;
    pointer-events: none;
}

.hero__clients-note {
    margin-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6b8e3a;
    font-style: italic;
}

.hero__clients-track {
    display: flex;
    animation: scrollClients 90s linear infinite;
    gap: 10px;
    align-items: center;
    width: calc(34 * 220px);
    min-width: calc(100vw - 120px);
}

.hero__client-image {
    flex: 0 0 200px;
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.hero__client-img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    border-radius: 50%;
    display: block;
}

.hero__client-image:hover .hero__client-img {
    transform: scale(1.05);
}

.hero__client-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 16px 16px;
    color: white;
    text-align: center;
    border-radius: 0 0 50% 50%;
}

.hero__client-name {
    font-size: 0.9rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== RESPONSIVE HERO ===== */
@media (min-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 100px 40px;
        gap: 60px;
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
        overflow: visible;
        min-height: auto;
        box-sizing: border-box;
    }
    
    .hero__content {
        width: 100%;
        max-width: 900px;
        padding: 0 20px;
        position: relative;
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero__title {
        font-size: 3.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.2;
        margin-bottom: 24px;
        text-align: center;
    }
    
    .hero__subtitle {
        font-size: 1.3rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.6;
        margin-bottom: 32px;
        text-align: center;
    }
    
    .hero__image { 
        width: 100%;
        max-width: 900px;
        text-align: center;
        position: relative;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        margin: 0 auto;
        order: 999;
    }

    .hero__title-background { 
        top: -275px; 
        width: 420px; 
        height: 360px; 
        opacity: 1; 
    }
    
    .hero__benefits {
        align-items: center;
        margin-bottom: 32px;
        position: relative;
        z-index: 5;
        width: 100%;
    }
    
    .hero__benefit {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }
    
    .hero__buttons {
        flex-direction: row;
        justify-content: center;
        gap: 20px;
        margin-bottom: 40px;
        position: relative;
        z-index: 5;
    }
    
    .hero__social-proof {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 0;
        position: relative;
        z-index: 5;
        gap: 30px;
        width: 100%;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__testimonial {
        width: 100%;
        max-width: 600px;
        margin-right: 0;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 20px;
        flex-shrink: 0;
    }
    
    .hero__clients-carousel { 
        margin-top: 0; 
        position: relative; 
        z-index: 1;
        overflow: hidden;
        width: 100%;
        max-width: none;
        margin-left: 0;
        margin-right: 0;
        padding: 0;
    }
    
    .hero__image {
        width: 100%;
        max-width: none;
    }
    
    .hero__clients-note { 
        margin-top: 12px;
        margin-bottom: 0;
        position: relative;
        z-index: 1;
    }
}

/* ===== TESTIMONIOS EN ESCRITORIO COMO 3 COLUMNAS ===== */
@media (min-width: 1024px) {
    .hero__testimonials-carousel {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
        overflow: visible;
        cursor: default;
    }
    .hero__testimonials-track {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
        transform: none !important;
    }
    .hero__testimonial {
        flex: initial;
        min-height: 220px;
    }
    .hero__testimonials-carousel:active { cursor: default; }
    .hero__testimonials-nav { display: none; }
    
    /* Carrusel de clientas ocupando todo el ancho */
    .hero__clients-carousel {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0;
        box-sizing: border-box;
    }
    
    .hero__image {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(-50vw + 50%);
        margin-right: calc(-50vw + 50%);
        padding: 0;
    }
    
    .hero__clients-track {
        width: calc(34 * 220px);
        min-width: 100vw;
    }
}

@media (max-width: 767px) {
    .hero {
        padding: 60px 20px;
        gap: 40px;
        min-height: 100vh;
    }
    
    .hero__content {
        padding: 0 10px;
    }
    
    .hero__testimonials-carousel {
        padding: 0 10px;
    }
    
    .hero__clients-carousel {
        max-width: 100%;
        margin: 20px auto 0;
        padding: 0 30px;
    }
    
    .hero__clients-track {
        width: calc(34 * 170px);
        gap: 5px;
        min-width: calc(100vw - 60px);
    }
    
    .hero__client-image {
        flex: 0 0 150px;
        width: 150px;
        height: 150px;
    }
    
    .hero__client-img {
        width: 150px;
        height: 150px;
    }
    
    .hero__title-background {
        top: -240px; /* Moved up for mobile too */
        width: 350px;
        height: 320px;
        border-radius: 350px 350px 0 0;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .hero__buttons {
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero__stat-number {
        font-size: 1.5rem;
    }
}

/* ===== BOTONES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 200px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn__icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn__icon {
    transform: translateX(3px);
}

.btn--primary {
    background: linear-gradient(135deg, var(--jazzberry-jam) 0%, var(--cardinal-pink) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(186, 11, 95, 0.4);
    border: 2px solid transparent;
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 11, 95, 0.5);
    background: linear-gradient(135deg, var(--cardinal-pink) 0%, var(--jazzberry-jam) 100%);
}

.btn--primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(186, 11, 95, 0.4);
}

.btn--secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--jazzberry-jam);
    border: 2px solid var(--jazzberry-jam);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(186, 11, 95, 0.1);
}

.btn--secondary:hover {
    background: var(--jazzberry-jam);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 11, 95, 0.3);
    border-color: var(--jazzberry-jam);
}

.btn--secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(186, 11, 95, 0.2);
}

.btn--small {
    padding: 8px 16px;
    font-size: 0.9rem;
    min-width: auto;
}

/* ===== SECCIONES ===== */
.section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--jazzberry-jam);
    text-align: center;
    margin: 0 0 40px 0;
}

.section__cta {
    text-align: center;
    margin-top: 40px;
}

/* ===== MAQUILLAJE DE BODAS SECTION ===== */
.wedding-makeup {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--vista-white) 0%, var(--chantilly) 100%);
    position: relative;
    overflow: hidden;
}

.wedding-makeup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="hearts" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10,3 C8,1 5,1 5,4 C5,1 2,1 0,3 C0,6 10,12 10,12 C10,12 20,6 20,3 C18,1 15,1 15,4 C15,1 12,1 10,3 Z" fill="rgba(186,11,95,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23hearts)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.wedding-makeup__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
    text-align: center;
}

.wedding-makeup__text {
    max-width: 600px;
    margin: 0 auto;
}

.wedding-makeup__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--jazzberry-jam);
    margin-bottom: 20px;
    line-height: 1.2;
}

.wedding-makeup__subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--cardinal-pink);
    margin-bottom: 24px;
    font-style: italic;
}

.wedding-makeup__description {
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 40px;
}

.wedding-makeup__features {
    display: grid;
    gap: 20px;
    margin-bottom: 40px;
}

.wedding-makeup__feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: none;
    text-align: left;
}

.wedding-makeup__feature:hover {
    transform: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.wedding-makeup__feature-icon {
    width: 24px;
    height: 24px;
    color: var(--jazzberry-jam);
    flex-shrink: 0;
}

.wedding-makeup__feature span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

.wedding-makeup__cta {
    text-align: center;
}

.wedding-makeup__button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--jazzberry-jam) 0%, var(--cardinal-pink) 100%);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(186, 11, 95, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.wedding-makeup__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.wedding-makeup__button:hover::before {
    left: 100%;
}

.wedding-makeup__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(186, 11, 95, 0.4);
}

.wedding-makeup__button-icon {
    width: 24px;
    height: 24px;
}

.wedding-makeup__note {
    margin-top: 16px;
    font-size: 0.9rem;
    color: var(--pale-sky);
    font-style: italic;
}

.wedding-makeup__image {
    position: relative;
    text-align: center;
}

.wedding-makeup__img {
    width: 100%;
    max-width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}


.wedding-makeup__badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--jazzberry-jam) 0%, var(--cardinal-pink) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(186, 11, 95, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== ¿QUIÉN ES ANITA PINTURITAS? SECTION ===== */
.about-anita {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--citrine-white) 0%, var(--vista-white) 100%);
    position: relative;
    overflow: hidden;
}

.about-anita::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="2" fill="rgba(186,11,95,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.about-anita__content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-anita__image {
    position: relative;
    text-align: center;
    order: 2;
}

.about-anita__img-wrapper {
    display: inline-block;
    position: relative;
}

.about-anita__img {
    width: 100%;
    max-width: 400px;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--chantilly);
}

.about-anita__text {
    order: 1;
    max-width: 600px;
    margin: 0 auto;
}

.about-anita__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--jazzberry-jam);
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

.about-anita__name {
    font-size: 2rem;
    font-weight: 700;
    color: var(--cardinal-pink);
    margin-bottom: 10px;
    text-align: center;
}

.about-anita__subtitle {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--olive-green);
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
}

.about-anita__story {
    margin-bottom: 40px;
}

.about-anita__paragraph {
    font-size: 1.1rem;
    color: var(--black);
    line-height: 1.7;
    margin-bottom: 20px;
    text-align: justify;
}

.about-anita__credentials {
    display: grid;
    gap: 15px;
}

.about-anita__credential {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-anita__credential:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 25px rgba(186, 11, 95, 0.15);
}

.about-anita__credential-icon {
    width: 20px;
    height: 20px;
    color: var(--jazzberry-jam);
    flex-shrink: 0;
}

.about-anita__credential span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--black);
}

/* ===== TESTIMONIOS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: var(--vista-white);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.testimonial__card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.testimonial__text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--color-secundario);
    margin: 0 0 20px 0;
    line-height: 1.6;
}

.testimonial__author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial__avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--jazzberry-jam);
    margin: 0 0 5px 0;
}

.testimonial__role {
    font-size: 0.9rem;
    color: var(--color-secundario);
    margin: 0;
    opacity: 0.7;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--jazzberry-jam) 0%, var(--cardinal-pink) 100%);
    color: white;
    text-align: center;
}

.cta__content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta__title {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 25px 0;
    color: white;
    line-height: 1.3;
}

.cta__subtitle {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    opacity: 0.9;
    line-height: 1.6;
}

.cta__buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.cta .btn--primary {
    background: white;
    color: var(--jazzberry-jam);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta .btn--primary:hover {
    background: var(--vista-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.cta .btn--secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta .btn--secondary:hover {
    background: white;
    color: var(--jazzberry-jam);
    transform: translateY(-2px);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 768px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 80px 16px;
        gap: 60px;
    }
    
    .hero__content {
        flex: none;
        width: 100%;
        max-width: 900px;
        align-items: center;
    }
    
    .hero__image {
        flex: none;
        width: 100%;
        max-width: 900px;
        order: 999;
    }
    
    .hero__title {
        font-size: 3rem;
    }
    
    .hero__buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .wedding-makeup__content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        text-align: left;
    }
    
    .wedding-makeup__text {
        margin: 0;
    }
    
    .wedding-makeup__title {
        font-size: 3rem;
    }
    
    .wedding-makeup__subtitle {
        font-size: 1.5rem;
    }
    
    .wedding-makeup__description {
        font-size: 1.2rem;
    }
    
    .wedding-makeup__img {
        height: 500px;
    }
    
    .about-anita__content {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        text-align: left;
    }
    
    .about-anita__text {
        margin: 0;
        order: 1;
    }
    
    .about-anita__image {
        order: 2;
    }
    
    .about-anita__title {
        font-size: 3rem;
        text-align: left;
    }
    
    .about-anita__name {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .about-anita__subtitle {
        font-size: 1.4rem;
        text-align: left;
    }
    
    .about-anita__paragraph {
        font-size: 1.2rem;
    }
    
    .about-anita__img {
        height: 600px;
    }
    
    .testimonials__grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cta__buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .cta__title {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 100px 16px;
    }
    
    .hero__title {
        font-size: 3.5rem;
        /* En escritorio, no dividir palabras como "redescubrir" */
        hyphens: none;
        -webkit-hyphens: none;
        -ms-hyphens: none;
        word-break: keep-all;
        overflow-wrap: normal;
    }
    
    .section__title {
        font-size: 2.5rem;
    }
    
    .wedding-makeup,
    .about-anita,
    .testimonials,
    .cta {
        padding: 100px 0;
    }
    
    .cta__title {
        font-size: 3rem;
    }
}

