.hero-content .cta-button {
    font-size: 1.1rem;
    padding: 15px 40px;
    font-weight: 600;
}

/* Servicios de Asesoría */
.advisory-services {
    padding: 100px 0;
    background-color: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark-text);
}

.service-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--light-text);
}

/* Beneficios de Asesoría */
.advisory-benefits {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.benefits-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.benefits-text {
    flex: 1;
    min-width: 300px;
}

.benefits-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--dark-text);
    position: relative;
}

.benefits-text h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 20px;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    margin-bottom: 25px;
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark-text);
}

.benefit-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}

.benefits-image {
    flex: 1;
    min-width: 300px;
}

.benefits-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Cómo funciona */
.how-it-works {
    padding: 100px 0;
    background-color: var(--white);
}

.steps-container {
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    z-index: 2;
}

.step-connector {
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.step-connector:before, .step-connector:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.step-connector:before {
    left: 0;
}

.step-connector:after {
    right: 0;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark-text);
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--light-text);
}

/* Testimonios */
.testimonials {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.testimonials-slider {
    margin-top: 50px;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content:before {
    content: '\201C';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--dark-text);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--dark-text);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Help CTA Section */
.help-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #232f3e 0%, #131921 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-content h2 strong {
    color: var(--primary-color);
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button i {
    font-size: 1.5rem;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #20ba5a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}

/* Planes de Asesoría */
.advisory-plans {
    padding: 100px 0;
    background-color: var(--white);
}

.plans-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.plan-card {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
}

.plan-card.featured {
    transform: scale(1.05);
    background-color: var(--white);
    border: 2px solid var(--primary-color);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.plan-tag {
    position: absolute;
    top: 20px;
    right: -30px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 5px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-header {
    padding: 30px;
    text-align: center;
    background-color: var(--secondary-color);
    color: var(--white);
}

.plan-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
}

.period {
    font-size: 0.9rem;
    opacity: 0.8;
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.plan-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

.plan-footer {
    padding: 0 30px 30px;
    text-align: center;
}

.plan-button {
    display: block;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.plan-button:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Recordatorio */
.reminder {
    padding: 50px 0;
    background-color: var(--light-bg);
    text-align: center;
}

.reminder h2 {
    font-size: 2.5rem;
    color: var(--dark-text);
}

.reminder h2 strong {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
}

.faq-icon {
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--light-text);
    margin-bottom: 20px;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
}

.faq-item.active .faq-question h3,
.faq-item.active .faq-icon {
    color: var(--white);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 20px;
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-title,
.service-card,
.benefits-text,
.benefits-image,
.step,
.testimonial,
.cta-content,
.plan-card,
.faq-item {
    animation: fadeInUp 0.6s ease forwards;
    margin-top: 10%;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .advisory-services,
    .advisory-benefits,
    .how-it-works,
    .testimonials,
    .advisory-plans,
    .faq-section {
        padding: 80px 0;
    }
    
    .steps-container {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .step-connector {
        width: 3px;
        height: 40px;
        margin: 0 auto;
    }
    
    .step-connector:before, .step-connector:after {
        left: 50%;
        transform: translate(-50%, 0);
    }
    
    .step-connector:before {
        top: 0;
    }
    
    .step-connector:after {
        top: auto;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 80px 0;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefit-icon {
        font-size: 1.3rem;
    }
    
    .benefit-content h3 {
        font-size: 1.2rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .reminder h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        padding: 70px 0;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .benefits-text h2 {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1.1rem;
    }
    
    .reminder h2 {
        font-size: 1.7rem;
    }
} 