/* 
 * Estilos adicionales para mejorar el centrado del texto
 * en todo el sitio web
 */

/* Clases generales de centrado */
.text-center {
    text-align: center !important;
}

.center-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Estilos para la página principal */
.hero-content {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-content h1,
.hero-content p {
    text-align: center !important;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    text-align: center !important;
}

.service-card h3,
.service-card .price,
.service-card ul,
.service-card li {
    text-align: center !important;
}

.service-card ul {
    list-style-position: inside !important;
    padding-left: 0 !important;
}

/* Ventajas */
.advantage {
    text-align: center !important;
}

.advantage .advantage-number,
.advantage h3,
.advantage p {
    text-align: center !important;
}

.advantage-number {
    position: relative !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    margin-bottom: 15px !important;
}

/* Testimonios */
.testimonial-content,
.testimonial-content p,
.testimonial-author {
    text-align: center !important;
}

/* FAQ */
.faq h2,
.accordion-header {
    text-align: center !important;
}

/* Contacto */
.contact h2,
.form-group label,
.checkbox-group {
    text-align: center !important;
}

.contact-form-container button {
    display: block !important;
    margin: 20px auto !important;
}

/* Ajuste global para móviles */
@media (max-width: 768px) {
    section h2,
    section h3,
    section p,
    .btn,
    .form-group,
    .checkbox-group {
        text-align: center !important;
    }
} 