﻿
body {
    font-family: Arial, sans-serif; /* Esto afectará a todo el documento */
}
/* ===== ESTILOS BASE DEL HEADER ===== */
header[role="banner"] {
    /*background-color: #0F2554;*/
    background-color: #212A58;
    position: relative;
    /* min-height: 100px; /* Altura suficiente para logo + navbar */
}

/* Borde inferior amarillo (como en tu HTML) */
.border-bottom-amarillo {
    border-bottom: 4px solid #C8217E;
    background-color: transparent !important;
    height: 110px;
}

/* ===== LOGO ===== */
.navbar-brand {
    padding: 15px;
    display: inline-block;
}

.logo-img {
    /* height: 96px !important;  Ajusta según necesidad */
    height: 76px !important;
    transition: transform 0.3s ease;
    margin-left: 195px;
    margin-top: 10px;
}

    .logo-img:hover {
        transform: scale(1.05);
    }

/* ESTO SOBRESCRIBIRÁ LOS ESTILOS QUE VES */
.navbar-default .navbar-nav > li > a {
    font-size: 15px !important;
    font-family: Arial, sans-serif !important;
    font-weight: normal !important;
    line-height: normal !important;
    padding: 8px 12px !important;
    text-transform: none !important;
    /* Transición modificada para quitar movimiento */
    transition: color 0.3s ease, font-weight 0.3s ease !important;
}

    .navbar-default .navbar-nav > li > a:hover {
        /* font-weight: bold !important;*/
        text-decoration: none !important;
    }

.navbar-nav > li > a,
.navbar-default .navbar-nav > li > a {
    transition: color 0.3s ease !important; /* Solo color, sin font-weight */
}

.navbar {
    min-height: auto; /* Eliminamos altura fija */
}

/* Contenedor del menú */
.navbar-collapse {
    padding: 0;
}

/* ===== MENÚ CENTRADO ===== */

.navbar-center {
    position: absolute;
    left: 50%;
    /*transform: translateX(-50%); */
    bottom: 3px;
    /*background-color: darkred;
    margin-left:10px;*/
    width: 850px;
}


.navbar-nav {
    display: flex;
    gap: 20px; /* Espacio entre items */
}

    /* Items del menú */
    .navbar-nav > li > a {
        color: white !important;
        font-size: 12px;
        font-family: 'Work Sans', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 8px 12px;
        /* Transición modificada para quitar movimiento */
        transition: color 0.3s ease, font-weight 0.3s ease;
        position: relative;
    }

        /* Efecto hover */
        .navbar-nav > li > a:hover {
           /* font-weight: bold !important;
            text-decoration: none !important;*/
           text-decoration: underline !important;
        }
            
/* ===== DROPDOWN MENU ===== */
.dropdown-menu {
    /*background-color: #0F2554;*/
    background-color: #212A58;
    border: none;
    border-radius: 0;
    margin-top: 5px;
}

    .dropdown-menu > li > a {
        color: white !important;
        font-size: 13px;
        padding: 10px 20px;
        transition: all 0.2s;
    }

        .dropdown-menu > li > a:hover {
            background-color: rgba(255,255,255,0.1) !important;
            font-weight: bold;
            padding-left: 25px;
        }

/* ===== REDES SOCIALES ===== */
.barra-redes {
    position: absolute;
    right: 20px; /* Separado del borde derecho */
    bottom: 30px; /* Separado del borde inferior del header */
    z-index: 1000;
    display: flex;
    gap: 40px;
}

    .barra-redes a {
        font-size: 22px;
        text-decoration: none;
    }

/* Íconos con colores oficiales */
.icono-arg-facebook-circular {
    color: #1877F2; /* Azul Facebook */
}

.icono-arg-whatsapp-telefono {
    color: #25D366; /* Verde WhatsApp */
}

.icono-arg-mail-03 {
    color: #D44638; /* Rojo para correo */
}

/* Elimina esta regla que sobreescribe todos los íconos a blanco */
.barra-redes a i {
    /* color: #fff; */ /* QUITADO */
}

/* Si tenés íconos de FontAwesome específicos */
.barra-redes i.fa-facebook-f {
    color: #1877f2;
}

/* Quita margen al último icono */
.barra-redes a:last-child {
    margin-right: 0;
}

/* ===== BOTÓN TOGGLE PARA MÓVIL ===== */
.navbar-toggle {
    margin-top: 30px;
    margin-right: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .navbar-header {
        float: none;
    }

    .navbar-brand {
        display: block;
        text-align: center;
    }

    .navbar-center, .redes-sociales {
        position: static;
        transform: none;
        text-align: center;
        padding: 10px 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 5px;
    }

    .navbar-toggle {
        margin-top: 15px;
    }
}

/* FOOTER */
.main-footer {
    padding: 3px;
    background-color: #222A59 !important;
    color: white;
    padding: 40px 0;
    font-family: sans-serif; /* aplica sans-serif por defecto a todo el footer */
}

    .main-footer .block-title {
        font-size: 5.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: white; /* asegura que el color sea blanco */
        font-family: sans-serif; /* asegura sans-serif específicamente para títulos */
    }

    .main-footer h2,
    .main-footer h3 {
        font-family: sans-serif;
        font-weight: bold;
        color: #FFFFFF;
    }

    .main-footer li {
        padding: 6px 0;
        font-size: 14px;
        margin-left: 20px;
    }

    .main-footer a:hover {
        text-decoration: underline !important;
    }

    /* FIN FOOTER */
    .main-footer section {
        padding: 3px;
    }
/* FOOTER - REDES SOCIALES (Alinear horizontalmente) */
.social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Flexbox para alinear horizontalmente */
    flex-direction: row; /* Dirección horizontal (por defecto) */
    gap: 40px; /* Espacio entre íconos (ajusta según necesidad) */
    justify-content: center; /* Centrar horizontalmente */
    background-color: transparent !important; /* Elimina el fondo rojo si no lo necesitas */
}

    .social-list li {
        display: inline-block; /* Asegura que los <li> estén en línea */
        margin: 0; /* Elimina márgenes no deseados */
        padding: 0; /* Elimina relleno no deseado */
    }

    .social-list a {
        font-size: 32px; /* Tamaño de los íconos (ajusta) */
        color: white; /* Color de los íconos */
        transition: transform 0.3s ease;
    }

        .social-list a:hover {
            transform: scale(1.1); /* Efecto hover opcional */
        }
/* FIN FOOTER - REDES SOCIALES (Alinear horizontalmente) */

/* Estilo para íconos del header */
header .fa-whatsapp {
    color: #25D366; /* verde característico de WhatsApp */
    font-size: 1.2rem;
}

header .icono-arg-mail-03 {
    color: white;
    font-size: 1.2rem;
}

/* Asegura que los íconos estén alineados con el texto */
header .navbar-nav.navbar-right a i {
    vertical-align: middle;
    margin-right: 5px;
}
/* Fin Estilo para íconos del header */

/******************/
.alert-info_com {
    /* background: #F3FAFF;
    border-color: #5A7290;*/
}
/*****************/
