/* ESTILOS PARA LA PÁGINA DE WHATSAPP - LACTAOASIS */

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

/* Hero Section */
.whatsapp-hero {
    text-align: center;
    padding: 50px 0 30px;
    background: linear-gradient(135deg, #f0f9ff 0%, #f0fdf4 100%);
    border-radius: 20px;
    margin-bottom: 40px;
}

.whatsapp-content {
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-icon {
    font-size: 4rem;
    color: #25d366;
    margin-bottom: 20px;
}

.whatsapp-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, #25d366 0%, #128c7e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

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

.whatsapp-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: #25d366;
}

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

.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(37, 211, 102, 0.1), transparent);
}

/* Secciones */
.whatsapp-section {
    margin: 30px 0;
}

.section-card {
    background-color: #f9f9f9;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #25d366;
}

.section-card.warning-card {
    background-color: #f7f5ed;
    border-left-color: #f59e0b;
}

.section-card.pricing-card {
    background-color: #f9f9f9;
    border-left-color: #25d366;
}

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

.section-header i {
    font-size: 1.5rem;
    color: #25d366;
}

.warning-card .section-header i {
    color: #f59e0b;
}

.pricing-card .section-header i {
    color: #25d366;
}

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

.section-content {
    color: #666;
    line-height: 1.6;
}

/* Horario de atención */
.schedule-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.schedule-main {
    background-color: #dcfce7;
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid #25d366;
}

.schedule-main p {
    margin: 0;
    color: #166534;
}

.schedule-details p {
    margin-bottom: 10px;
}

.schedule-details em {
    color: #25d366;
    font-weight: 500;
}

/* Topics Grid */
.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.topic-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #f0fdf4;
    border-radius: 10px;
    border: 1px solid #bbf7d0;
}

.topic-item i {
    font-size: 1.2rem;
    color: #25d366;
    width: 20px;
    text-align: center;
}

.topic-item span {
    font-weight: 500;
    color: #166534;
}

/* Warning List */
.warning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.warning-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 10px;
    background-color: #f7f5ed;
    border-radius: 8px;
    border-left: 3px solid #f59e0b;
}

.warning-list i {
    color: #dc2626;
    margin-top: 2px;
    font-size: 1rem;
}

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

.whatsapp-pricing-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
}

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

.whatsapp-pricing-table th {
    background: linear-gradient(to right, #25d366, #128c7e);
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.whatsapp-pricing-table tr:nth-child(even) {
    background-color: #f8fafc;
}

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

.whatsapp-pricing-table tr:hover {
    background-color: #f0fdf4;
    transition: all 0.3s ease;
}

.whatsapp-pricing-table .price {
    font-weight: 700;
    font-size: 1.1rem;
    color: #25d366;
}

/* How it works */
.how-it-works {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background-color: #f0fdf4;
    border-radius: 12px;
    border-left: 4px solid #25d366;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content p {
    margin: 0;
    color: #166534;
    font-weight: 500;
}

/* Call to Action */
.whatsapp-cta {
    margin: 40px 0;
    text-align: center;
}

.cta-card {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 20px;
    padding: 40px 30px;
    border: 2px solid #bbf7d0;
}

.cta-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #166534;
    margin-bottom: 15px;
}

.cta-card p {
    color: #166534;
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 15px 30px;
    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;
    min-width: 200px;
}

.cta-primary {
    background: linear-gradient(to right, #25d366, #128c7e);
    color: #fff;
}

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

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.1);
    background-color: #f0fdf4;
    text-decoration: none;
    color: #25d366;
}

/* Service Note */
.service-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #25d366;
}

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

.service-note strong {
    color: #25d366;
}

/* Responsive */
@media (max-width: 768px) {
    .whatsapp-title {
        font-size: 2rem;
    }
    
    .service-intro {
        flex-direction: column;
    }
    
    .intro-image {
        height: 200px;
    }
    
    .topics-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .whatsapp-pricing-table {
        font-size: 0.9rem;
    }
    
    .whatsapp-container {
        padding: 20px;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .how-it-works {
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-pricing-table th,
    .whatsapp-pricing-table td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .section-card {
        padding: 20px;
    }
    
    .cta-card {
        padding: 30px 20px;
    }
}

