/* RESET y Estilos Generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #111827;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Oswald', sans-serif;
}

/* Container Principal */
.rounded-container {
    background-color: #1f2937;
    border-radius: 15px;
    padding: 2.5rem;
    margin: 2rem auto;
    max-width: 900px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 500;
}

.subtitle {
    font-size: 1.2rem;
    color: #9ca3af;
    margin-bottom: 2rem;
    font-weight: 400;
}

/* Botones */
.buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.btn {
    background-color: #25d366;
    color: white;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: 'Oswald', sans-serif;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

/* Testimonios */
.testimonials {
    background-color: #1f2937;
    padding: 3rem 1rem;
    margin-top: 1rem;
}

.testimonials-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: white;
    font-weight: 500;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.testimonial-card {
    background-color: #111827;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-weight: 400;
}

.testimonial-author {
    font-weight: 500;
    color: #25d366;
}

.testimonial-source {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: #1f2937;
    padding: 1.5rem;
    margin-top: auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

footer p {
    color: #9ca3af;
    font-size: 0.9rem;
}

.faq-btn {
    background-color: transparent;
    color: #9ca3af;
    border: 1px solid #9ca3af;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.faq-btn:hover {
    background-color: rgba(156, 163, 175, 0.1);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .rounded-container {
        padding: 1.5rem;
        margin: 1rem;
    }
    h1 {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .footer-content {
        flex-direction: column;
        gap: 1rem;
    }
}