
/* Estilos generales */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #333;
    margin: 0;
    padding: 0;
    padding-top: 100px; /* Ajusta este valor según la altura del menú */
}

/* Sección principal de la página */
main {
    max-width: 1200px;
    margin: 0 auto;
    /* Centrar contenido */
    padding: 20px;
}

/* Estilo para las secciones */
section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px; /* Espacio entre elementos */
    padding: 40px 40px;
    background-color: #e9e7e7; /* Fondo suave */
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); /* Sombra ligera */
}

/* Sección de introducción */
.section-intro {
    display: flex;
    flex-direction: column; /* Mantener en columna */
    align-items: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: 0 auto; /* Centra la sección horizontalmente */
    max-width: 900px; /* Ancho máximo aumentado para mejor presentación */
    text-align: center; /* Centrar el texto */
}

/* Estilo para el video */
.video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.intro-image {
    max-width: 220px;
    width: 100%;
    margin: 30px 0; /* Añade espacio arriba y abajo de la imagen */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content {
    max-width: 800px;
    text-align: justify;
    color: #333;
    padding: 20px;
}

.text-content h3{
    max-width: 800px;
    text-align: center;
    color: #333;
    padding: 20px;
}

.TITULO1 {
    font-size: 2.5em;
    text-transform: uppercase;
    color: #004494;
    margin: 0;
}

.TEXTO6 {
    font-size: 1.2em;
    line-height: 1.6;
    color: #1a237e;
    margin-bottom: 20px;

}

.TEXTO7 {
    font-size: 1.2em;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
}

/* Estilo para el video */
.video {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Contenedor que alinea el logo y el video uno al lado del otro */
.intro-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px; /* Espacio entre el logo y el video */
    margin-bottom: 20px;
}

/* Sección de diagramas */
.section-diagrams {
    text-align: center;
    padding: 40px 0;
}

.section-diagrams h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a237e;
}

.section-diagrams p {
    font-size: 1.6em;
    margin-bottom: 20px;
    color: #1a237e;
    text-align:justify;
}

.diagram-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Sección de características */
.section-features {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-features h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a237e;
    text-align: justify;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background-color: #ffffff; /* Fondo blanco para destacar cada característica */
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); /* Sombra ligera para darle profundidad */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-list li:hover {
    transform: translateY(-5px); /* Efecto de levantamiento al pasar el mouse */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.features-list li::before {
    content: "✔"; /* Icono de verificación */
    color: #004494; /* Color del icono */
    font-size: 1.5em;
    margin-right: 15px; /* Espacio entre el icono y el texto */
}

.features-list .feature-title {
    font-size: 1.4em;
    color: #1a237e;
    font-weight: bold;
}

.features-list .feature-description {
    font-size: 1.1em;
    color: #333;
    margin-left: 5px;
    line-height: 1.6;
}

/* Sección de administración de CFDI */
.section-admin {
    padding: 40px;
}

.section-admin h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a237e;
}

.section-admin ul {
    list-style: none;
    padding: 0;
}

.section-admin ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Sección de beneficios */
.section-benefits {
    padding: 40px;
}

.section-benefits h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a237e;
}

.section-benefits ul {
    list-style: none;
    padding: 0;
}

.section-benefits ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Sección de servicios */
.section-services {
    padding: 40px;
}

.section-services h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #1a237e;
}

.section-services ul {
    list-style: none;
    padding: 0;
}

.section-services ul li {
    font-size: 1.2em;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background-color: #1a237e;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 40px;
}

footer p, h2 {
    font-size: 1em;
}

footer a {
    color: #ffffff; /* Azul de Facebook */
    text-decoration: none;
    margin-left: 10px;
}

footer a i {
    font-size: 100px; /* Tamaño del icono */
}

footer a:hover {
    color: #ffffff; /* Color al pasar el ratón */
}