/* Fuentes de Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Roboto:wght@400;500&family=Source+Code+Pro:wght@400;600;700&display=swap');

/* Estilos generales (se mantienen igual) */
.navbar-brand img {
    max-height: 100px;
}

.custom-top-links {
    border-bottom: 1px solid #e0e0e0;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.custom-nav-links {
    padding: 10px 20px;
}

.dropdown-menu {
    font-size: 0.8em;
    left: -40px;
    min-width: 250px;
}

body {
    padding-top: 100px;
    font-family: 'Lato', sans-serif;
}

.custom-top-links span {
    font-family: 'Roboto', sans-serif;
    color: #198754;
    font-size: 0.8em;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.custom-nav-links a {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    margin-right: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.custom-top-links .btn-outline-success {
    font-size: 0.8em;
    padding: 2px 10px;
    white-space: nowrap;
}

.icon-small {
    max-height: 20px;
    margin-right: 5px;
    vertical-align: middle;
}

/* SOLUCIÓN DEFINITIVA PARA MÓVIL - FORZAR ESTILOS */
@media (max-width: 992px) {
    nav.navbar .mobile-header-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        padding: 10px 0 !important;
        position: relative !important;
        min-height: 60px !important;
    }
    
    nav.navbar .mobile-logo-center {
        position: absolute !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        z-index: 1020 !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    nav.navbar .mobile-logo-center img {
        max-height: 50px !important;
        height: 50px !important;
        width: auto !important;
    }
    
    nav.navbar .navbar-toggler {
        z-index: 1030 !important;
        position: relative !important;
    }
    
    nav.navbar .navbar-collapse {
        position: relative !important;
        z-index: 1000 !important;
        margin-top: 0 !important;
        background: white !important;
        border-top: 1px solid #e0e0e0 !important;
    }
    
    nav.navbar .navbar-collapse.collapsing,
    nav.navbar .navbar-collapse.show {
        z-index: 1000 !important;
        position: relative !important;
    }
    
    .navbar-toggler-placeholder {
        width: 40px !important;
        visibility: hidden !important;
    }
}

/* Estilos para la imagen de soporte remoto */
.remote-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    /* ELIMINAR los efectos de relieve */
    border-radius: 0;
    box-shadow: none;
}

@media (max-width: 768px) {
    .remote-image {
        max-width: 300px;
    }
}

/* Estilos para la sección de llamado a la acción */
#llamado-accion {
    background: #ffffff; /* Cambiado a blanco puro */
    padding: 4rem 0;
    border-radius: 20px;
    margin: 4rem auto;
    border: 1px solid #e9ecef; /* Borde sutil para definir la sección */
}

#llamado-accion .btn-success {
    background-color: #198754;
    border-color: #198754;
    transition: all 0.3s ease;
}

#llamado-accion .btn-success:hover {
    background-color: #157347;
    border-color: #146c43;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

#llamado-accion .btn-outline-success {
    color: #198754;
    border-color: #198754;
    transition: all 0.3s ease;
}

#llamado-accion .btn-outline-success:hover {
    background-color: #198754;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(25, 135, 84, 0.3);
}

@media (max-width: 768px) {
    #llamado-accion {
        padding: 3rem 1rem;
        margin: 3rem auto;
        border-radius: 15px;
    }
    
    #llamado-accion h2 {
        font-size: 2rem !important;
    }
    
    #llamado-accion .btn-lg {
        font-size: 1rem !important;
        padding: 0.8rem 2rem !important;
    }
}

