/* ESTILOS PARA LA SECCIÓN DE SERVICIOS DE LACTAOASIS - WORDPRESS */
/* Añadir este CSS al final de style.css */

.lactaoasis-servicios-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.servicios-hero {
    text-align: center;
    padding: 50px 0 30px;
}

.servicios-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #333;
}

.gradient-text {
    background: linear-gradient(90deg, #d946ef 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.servicios-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Services Navigation */
.servicios-nav {
    margin: 30px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-nav-link {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    opacity: 0.5;
    position: relative;
    padding: 0;
    filter: grayscale(30%);
}

.service-nav-link.active {
    opacity: 1;
    filter: none;
    transform: scale(1.05);
}

.service-nav-link.active .nav-img-container {
    box-shadow: 0 0 20px rgba(217, 70, 239, 0.4);
    border-width: 4px;
}

.service-nav-link:hover:not(.active) {
    opacity: 0.8;
    filter: grayscale(10%);
}

.service-nav-link:hover:not(.active) .nav-img-container {
    transform: scale(1.02);
}

.nav-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.nav-img-container {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.service-nav-link:nth-child(1) .nav-img-container {
    border-color: #d946ef;
}

.service-nav-link:nth-child(2) .nav-img-container {
    border-color: #3b82f6;
}

.service-nav-link:nth-child(3) .nav-img-container {
    border-color: #06b6d4;
}

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

.nav-text {
    font-weight: 600;
    font-size: 1rem;
    color: #555;
    transition: all 0.3s ease;
}

.service-nav-link.active .nav-text {
    color: #333;
}

/* Services Main Content */
.servicios-main {
    margin: 40px 0;
}

.service-section {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.service-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.service-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    padding: 30px;
    margin-bottom: 30px;
}

/* Service Intro */
.service-intro {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.intro-content {
    flex: 1;
    min-width: 300px;
}

.service-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.service-description {
    color: #666;
    font-size: 1.1rem;
}

.intro-image {
    flex: 1;
    min-width: 300px;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.1), transparent);
}

/* Timeline Container */
.timeline-container {
    margin: 50px 0;
}

.timeline-header {
    text-align: center;
    margin-bottom: 30px;
}

.timeline-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d946ef;
    margin-bottom: 10px;
}

.timeline-subtitle {
    color: #666;
}

/* Horizontal Timeline */
.horizontal-timeline {
    position: relative;
    padding: 20px 0 40px;
}

.timeline-line {
    position: relative;
    height: 4px;
    background: linear-gradient(to right, #d946ef, #3b82f6, #06b6d4);
    margin: 0 auto;
    border-radius: 4px;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #fff;
    transition: width 0.5s ease;
}

.timeline-stages {
    display: flex;
    justify-content: space-between;
    margin-top: -15px;
}

.timeline-stage {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.stage-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.marker-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 10px;
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-stage:nth-child(1) .marker-circle {
    color: #d946ef;
    border: 2px solid #d946ef;
}

.timeline-stage:nth-child(2) .marker-circle {
    color: #3b82f6;
    border: 2px solid #3b82f6;
}

.timeline-stage:nth-child(3) .marker-circle {
    color: #06b6d4;
    border: 2px solid #06b6d4;
}

.marker-circle i {
    font-size: 1.2rem;
}

.stage-label {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.stage-content {
    width: 100%;
    padding: 0 10px;
}

.stage-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    height: 100%;
}

.stage-question {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #d946ef;
    margin-bottom: 15px;
}

.stage-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stage-benefits li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.stage-benefits i {
    color: #06b6d4;
    margin-top: 3px;
}

/* Imagen separadora */
.service-image-separator {
    margin: 40px 0;
    text-align: center;
}

.service-image-separator img {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Tarifas */
.service-tariffs {
    margin: 40px 0;
}

.tariffs-card {
    background-color: #f9f4f7;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-top: 5px solid #d946ef;
}

.tariffs-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #f0e4eb;
    padding-bottom: 15px;
}

.tariffs-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #d946ef;
    margin: 0;
}

.tariffs-subtitle {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.tariffs-table-container {
    overflow-x: auto;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.tariffs-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
}

.tariffs-table th, .tariffs-table td {
    padding: 15px 20px;
    text-align: left;
}

.tariffs-table th {
    background: linear-gradient(to right, #d946ef, #f0a0d0);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tariffs-table tr:nth-child(even) {
    background-color: #f9f4f7;
}

.tariffs-table tr:nth-child(odd) {
    background-color: #fff;
}

.tariffs-table tr:last-child td {
    border-bottom: none;
}

.tariffs-table tr:hover {
    background-color: #f0e4eb;
    transition: all 0.3s ease;
}

.tariffs-table td:last-child {
    font-weight: 600;
    color: #d946ef;
}

/* Sesiones intensivas */
.intensive-sessions {
    margin-top: 25px;
    padding: 20px;
    background-color: #f0f9ff;
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
}

.intensive-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #3b82f6;
    margin-bottom: 10px;
    font-weight: 600;
}

.intensive-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Service Offer */
.service-offer {
    margin: 40px 0;
}

.offer-card {
    background-color: #f0f9ff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
}

.offer-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.offer-header i {
    font-size: 1.5rem;
    color: #d946ef;
}

.offer-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: #333;
    margin: 0;
}

.offer-description {
    color: #666;
    margin-bottom: 20px;
}

.offer-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.offer-item {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
    min-width: 250px;
}

.offer-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #d946ef;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
}

.offer-footer {
    margin-top: 15px;
    color: #666;
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
}

/* Nota adicional */
.service-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #d946ef;
}

.service-note p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Call to Action */
.service-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    flex: 1;
    min-width: 200px;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-primary {
    background: linear-gradient(to right, #d946ef, #3b82f6);
    color: #fff;
}

.cta-secondary {
    background-color: #fff;
    color: #d946ef;
    border: 2px solid #d946ef;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 70, 239, 0.3);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(217, 70, 239, 0.1);
}

/* Botones "Más información" para la página principal */
.service-more-info {
    background: linear-gradient(to right, #d946ef, #3b82f6);
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.service-more-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(217, 70, 239, 0.3);
    color: #fff;
    text-decoration: none;
}

.service-more-info i {
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .servicios-title {
        font-size: 2rem;
    }
    
    .service-intro {
        flex-direction: column;
    }
    
    .intro-image {
        height: 200px;
    }
    
    .timeline-stages {
        flex-direction: column;
        gap: 30px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .tariffs-table {
        font-size: 0.9rem;
    }
    
    .nav-img-container {
        width: 80px;
        height: 80px;
    }
    
    .service-container {
        padding: 20px;
    }
    
    .tariffs-table th, .tariffs-table td {
        padding: 10px 12px;
    }
}


