/* Estilos Experiencias */
body {
    padding-top: 120px;
    background-color: #f8f9fa;
}

/* Sección EXPERIENCIAS */
.experiencias-section {
    padding: 80px 50px;
    background-color: white;
    margin: 50px 0;
}

.experiencias-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.experiencias-header {
    margin-bottom: 50px;
}

.experiencias-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.experiencias-header h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #e91e63;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Testimonios */
.testimonio-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.testimonio-item:hover {
    transform: translateY(-5px);
}

.testimonio-persona {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 30px;
}

.testimonio-foto {
    flex: 0 0 200px;
}

.testimonio-foto img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border: 3px solid #e91e63;
}

.testimonio-texto {
    flex: 1;
    text-align: left;
}

.testimonio-texto h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.testimonio-texto p {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
}

.testimonio-texto .highlight {
    color: #e91e63;
    font-weight: 500;
}

.testimonio-contenido .highlight {
    color: #e91e63;
    font-weight: 500;
}

.testimonio-imagenes {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.antes-despues {
    flex: 1;
    max-width: 400px;
    text-align: center;
}

.antes-despues h4 {
    font-size: 1.1rem;
    color: #e91e63;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.antes-despues img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.antes-despues img:hover {
    transform: scale(1.05);
}

/* Sección de Redes Sociales */
.social-section {
    padding: 60px 50px;
    background-color: white;
    text-align: center;
}

.social-container {
    max-width: 800px;
    margin: 0 auto;
}

.social-container h2 {
    font-size: 1.2rem;
    font-weight: 400;
    color: #333;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #e91e63;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
    background-color: #c2185b;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* Animaciones de entrada */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.fade-in-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Delays para los iconos de redes sociales */
.social-icons .social-icon:nth-child(1) { transition-delay: 0.2s; }
.social-icons .social-icon:nth-child(2) { transition-delay: 0.4s; }
.social-icons .social-icon:nth-child(3) { transition-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .experiencias-section {
        padding: 60px 30px;
        margin: 30px 0;
    }

    .testimonio-item {
        flex-direction: column;
        padding: 20px;
    }

    .testimonio-imagenes {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .antes-despues {
        max-width: 100%;
    }

    .antes-despues img {
        height: 250px;
    }

    .testimonio-persona {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .testimonio-texto {
        text-align: center;
    }

    .testimonio-foto {
        flex: 0 0 auto;
    }

    .testimonio-foto img {
        width: 150px;
        height: 150px;
    }

    .social-section {
        padding: 50px 30px;
    }
}

@media (max-width: 480px) {
    .experiencias-section {
        padding: 40px 20px;
    }

    .experiencias-header h1 {
        font-size: 1.8rem;
    }

    .experiencias-header h2 {
        font-size: 1rem;
    }

    .testimonio-item {
        padding: 15px;
    }

    .testimonio-texto h3 {
        font-size: 1.2rem;
    }

    .testimonio-texto p {
        font-size: 0.9rem;
    }
}

/* También agregar para compatibilidad */
.highlight {
    color: #e91e63 !important;
    font-weight: 500;
}
