/* Estilos para la landing page */
:root {
    --primary-color: #ff6b81;
    --secondary-color: #2c3e50;
    --dark-color: #212529;
    --darker-color: #1a1f24;
    --light-color: #ffffff;
}

.hero-section {
    background-color: var(--darker-color);
    color: #f8f9fa;
    padding: 3rem 2rem; 
    text-align: center;
    margin-bottom: 3rem;
}

.hero-title {
    font-size: 3rem; 
    font-weight: 700;
    color: #f8f9fa;
    margin: 0; 
}

/* MAIN CONTENT */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.content-card {
    background-color: var(--light-color);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
}

/* TÍTULO CENTRADO */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.about-content {
    display: flex;
    align-items: flex-start;
    gap: 3rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #445;
    font-size: 1.1rem;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: white;
    border-radius: 8px;
    padding: 1.8rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
}

.feature-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #445;
    line-height: 1.7;
    font-size: 1.05rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
}

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

.author-info h4 {
    margin: 0 0 0.3rem 0;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

/* CTA SECTION */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #ff8e9e 100%);
    color: white;
    text-align: center;
    padding: 3.5rem 2rem;
    border-radius: 8px;
    margin-top: 4rem;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.cta-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background-color: white;
    color: var(--primary-color);
    padding: 0.9rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
}