/* Estilos específicos para la landing page */
.dr-landing-container {
    font-family: 'Open Sans', sans-serif;
    color: var(--dr-text-primary);
    margin-left: 0;
    width: 100%;
}

/* Hero Section */
.dr-hero-section {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, rgba(93, 74, 158, 0.1) 0%, rgba(255, 255, 255, 1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.dr-hero-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dr-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.dr-hero-subtitle {
    font-size: 1.25rem;
    color: var(--dr-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.dr-hero-cta {
    margin-top: 2rem;
}

.dr-hero-icon {
    position: relative;
    min-height: 300px;
    text-align: center;
}

.dr-main-icon {
    font-size: 8rem;
    color: var(--dr-primary);
}

.dr-icon-1, .dr-icon-2, .dr-icon-3 {
    position: absolute;
    font-size: 2.5rem;
    color: white;
    background-color: var(--dr-primary);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dr-icon-1 {
    top: 20%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.dr-icon-2 {
    top: 60%;
    left: 10%;
    animation: float 5s ease-in-out infinite 1s;
}

.dr-icon-3 {
    top: 40%;
    right: 10%;
    animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Secciones comunes */
.dr-section-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 2rem;
    color: var(--dr-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.dr-section-subtitle {
    font-size: 1.1rem;
    color: var(--dr-text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 3rem;
}

/* Beneficios */
.dr-benefits-section {
    padding: 5rem 0;
    background-color: white;
}

.dr-benefit-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: all 0.3s ease;
    background-color: var(--dr-bg-light);
    border-radius: 10px;
    height: 100%;
}

.dr-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.dr-benefit-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(93, 74, 158, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--dr-primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.dr-benefit-card:hover .dr-benefit-icon {
    background-color: var(--dr-primary);
    color: white;
}

.dr-benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dr-primary);
}

.dr-benefit-card p {
    color: var(--dr-text-secondary);
}

/* Funcionalidades */
.dr-features-section {
    padding: 5rem 0;
    background-color: var(--dr-bg-light);
}

.dr-feature-icon {
    text-align: center;
    font-size: 5rem;
    color: var(--dr-primary);
    margin-bottom: 2rem;
}

.dr-feature-list {
    list-style: none;
    padding-left: 0;
}

.dr-feature-list li {
    margin-bottom: 0.8rem;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
}

.dr-feature-list i {
    margin-right: 0.5rem;
    color: var(--dr-success);
    margin-top: 0.2rem;
}

/* Testimonios */
.dr-testimonials-section {
    padding: 5rem 0;
    background-color: white;
}

.dr-testimonial-card {
    background-color: var(--dr-bg-light);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.dr-testimonial-text {
    font-style: italic;
    color: var(--dr-text-secondary);
    margin-bottom: 2rem;
    flex-grow: 1;
    position: relative;
    padding-top: 1.5rem;
}

.dr-quote-icon {
    font-size: 3rem;
    color: rgba(93, 74, 158, 0.1);
    position: absolute;
    top: 0;
    left: 0;
    line-height: 1;
}

.dr-testimonial-author {
    display: flex;
    align-items: center;
}

.dr-testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 1rem;
    color: var(--dr-primary);
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(93, 74, 158, 0.1);
}

.dr-testimonial-author h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.2rem;
    color: var(--dr-primary);
}

.dr-testimonial-author p {
    font-size: 0.8rem;
    color: var(--dr-text-secondary);
    margin-bottom: 0;
}

/* CTA Section */
.dr-cta-section {
    padding: 4rem 0;
    background-color: var(--dr-primary);
    color: white;
}

.dr-cta-section .dr-section-title,
.dr-cta-section .dr-section-subtitle {
    color: white;
}

.dr-btn-light {
    background-color: white;
    color: var(--dr-primary);
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 50px;
}

.dr-btn-light:hover {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--dr-primary-dark);
}

/* Responsive */
@media (max-width: 992px) {
    .dr-hero-title {
        font-size: 2rem;
    }
    
    .dr-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .dr-section-title {
        font-size: 1.8rem;
    }
    
    .dr-main-icon {
        font-size: 6rem;
    }
    
    .dr-feature-icon {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .dr-hero-section {
        padding: 5rem 0;
        text-align: center;
    }
    
    .dr-hero-icon {
        min-height: 200px;
        margin-top: 2rem;
    }
    
    .dr-benefit-card {
        margin-bottom: 1.5rem;
    }
    
    .dr-feature-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    .dr-main-icon {
        font-size: 5rem;
    }
    
    .dr-icon-1, .dr-icon-2, .dr-icon-3 {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .dr-testimonial-card {
        margin-bottom: 1.5rem;
    }
}