/* Añadir al archivo styles.css */

/* Colores de la marca */
:root {
    --primary-color: #E94E1B; /* Tono del logo */
    --secondary-color: #f8f9fa; /* Fondo claro */
    --text-color: #333; /* Texto principal */
    --highlight-color: #D3D3D3; /* Gris suave */
    --title-color: #2f4f4f; /* Gris oscuro */
    --link-color: #E94E1B; /* Tono del logo */
    --secondary-colorLight: #E6E9EC; /* background */
    --fotter-background:#DEE2E7; /* background footer */
}

/* Estilos generales */
body {
    font-family: Arial, sans-serif;
    background-color: var(--secondary-colorLight);
    color: var(--text-color);
}

.navbar {
    /*background-color: var(--highlight-color); /* Fondo gris suave */

}

.navbar .container {
    background-color: var(--highlight-color); /* Fondo gris suave */
    border-radius: 15px;
}

.navbar-nav {
    display: flex;
    flex-wrap: wrap; /* Permitir que los elementos se envuelvan a la siguiente línea */
    justify-content: flex-start;
    width: 100%;
}

.navbar-nav li {
    margin: 10px 15px; /* Espacio entre los elementos del menú */
}

.navbar a {
    color: var(--text-color) !important; /* Texto principal */
    padding: 10px 15px;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    font-weight: bold;
}

.navbar a:hover {
    background-color: var(--primary-color);
    color: #fff !important;
}

.contentInfo
{
    background-color: var(--secondary-color); /* Fondo gris suave */
    border-radius: 15px;
}
.header {
    background-color: var(--secondary-colorLight); /* Fondo claro */
    color: var(--text-color);
    padding: 10px 0;
   /* border-bottom: 1px solid #ddd; /* Línea fina para separar */
}

.header .row {
    align-items: center;
}

.header img {
    max-width: 350px; /* Aumenta el tamaño del logo en escritorio */
}

.header h1 {
    margin: 0;
    font-size: 1.5em; /* Texto más pequeño */
}

.header p {
    margin: 5px 0;
    font-size: 0.9em; /* Texto más pequeño */
}

.contact-info-bar {
    background-color: var(--highlight-color);
    color: #fff;
    padding: 5px 0;
}

.contact-info-bar p {
    margin: 0;
    font-size: 0.9em;
}

.contact-info-bar a {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px;
    display: block;
}

.contact-info-bar a i {
    margin-right: 5px;
}

.footer {
    background-color: var(--fotter-background);
    color: #fff;
    padding: 10px 0;
    text-align: center;
}

@media (max-width: 576px) {
    .header {
        padding: 5px 0;
    }
    .header img {
        max-width: 280px; /* Ajusta el tamaño del logo en móviles */
    }
    .header h1 {
        font-size: 1.2em; /* Texto más compacto en móviles */
    }
    .header p {
        font-size: 0.8em; /* Texto más compacto en móviles */
    }
    h3 {
        font-size: 1.2em; /* Títulos más pequeños en móviles */
    }
    h2{
        font-size: 1.6em; /* Títulos más pequeños en móviles */
    }

    .navbar-nav {
        justify-content: center; /* Centrar los elementos del menú en móviles */
    }

    .navbar-nav li {
        margin: 5px 0; /* Reducir el margen en móviles */
    }
}

/* Clases para el contenido */
.heading-brand {
    color: var(--primary-color);
    font-size: 16px;
}

.title-brand {
    color: var(--title-color);
    font-size: 14px;
}

.contact-info a {
    color: var(--link-color);
}

.whatsapp-icon {
    width: 50px;
    height: 41px;
}



.text-center {
    text-align: center;
}

.imagenPost {
    max-width: 100%;
    height: auto;
    /*display: block; /* */
    margin: 0 auto;
}

.subtitulo {
    color: #696969;
    font-size: 16px;
    font-weight: bold;
}

.title-class{
    font-size: 26px !important;
    text-align: center !important;
    font-weight: bold;
    color:#315A88;
    padding-top: 12px;
}

.title-class2{
    font-size: 26px !important;
    text-align: center !important;
    font-weight: bold;
    color:#315A88;
    padding-top: 12px;
}

a.nav-link:visited, a.nav-link:link {
    color: #0766cb;
}
a.nav-link:hover {
    color: #07478b;
    text-decoration: underline;
}


a:hover {
    color: #002B60;
    text-decoration: underline;
}
a {
    color: #003A80;
    font-weight: bold;
}