/* Estilos para páginas de servicios */
body {
    padding-top: 120px;
    background-color: #f8f9fa;
}

/* Sección principal del servicio */
.servicio-section {
    padding: 80px 50px;
    background-color: white;
    margin: 50px 0;
}

.servicio-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.servicio-header {
    margin-bottom: 50px;
}

.servicio-header h1 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    color: #333;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.servicio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: start;
}

.servicio-info {
    text-align: left;
    padding: 20px;
}

.servicio-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: justify;
}

.servicio-info ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.servicio-info ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #666;
    line-height: 1.6;
}

.servicio-info ul li:before {
    content: "•";
    color: #e91e63;
    font-size: 1.2em;
    position: absolute;
    left: 5px;
}

.servicio-imagen {
    width: 100%;
    height: 100%;
    max-height: 600px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Sección de contacto */
.contacto-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.contacto-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.contacto-item {
    text-align: center;
    padding: 20px;
}

.contacto-item h3 {
    color: #e91e63;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.contacto-item p {
    color: #666;
    font-size: 1rem;
}

/* Sección de Redes Sociales */
.social-section {
    padding: 30px 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.6s ease;
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
    opacity: 0;
    transform: translateY(20px);
}

.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;
}

.social-icon.visible {
    opacity: 1;
    transform: translateY(0);
}

.social-icon:nth-child(1) { transition-delay: 0.1s; }
.social-icon:nth-child(2) { transition-delay: 0.2s; }
.social-icon:nth-child(3) { transition-delay: 0.3s; }

/* Animaciones */
.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);
}

/* Estilos para la sección de video */
.video-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.podcast-info {
    text-align: left;
    padding: 20px;
}

.podcast-info h3 {
    color: #e91e63;
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 300;
}

.podcast-info h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 20px 0 15px;
    font-weight: 500;
}

.episode-highlights {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.servicio-header h2 {
    font-size: 1.5rem;
    color: #666;
    font-weight: 300;
    margin-top: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding-top: 100px;
    }

    .servicio-section {
        padding: 60px 30px;
    }

    .servicio-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .servicio-header h1 {
        font-size: 2rem;
    }

    .contacto-info {
        flex-direction: column;
    }

    .social-section {
        padding: 40px 20px;
    }

    .video-container {
        margin-bottom: 30px;
    }

    .podcast-info h3 {
        font-size: 1.5rem;
    }

    .podcast-info h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .servicio-section {
        padding: 40px 20px;
    }

    .servicio-header h1 {
        font-size: 1.8rem;
    }

    .servicio-info p {
        font-size: 0.9rem;
    }

    .contacto-item h3 {
        font-size: 1.1rem;
    }

    .contacto-item p {
        font-size: 0.9rem;
    }
}
