/* custom-navbar.css */

/* Reinicio básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Barra de navegación superior fija */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    /* Centrado vertical */
    justify-content: space-between;
    height: 70px;
    /* Altura de la barra */
    padding: 0 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Sección izquierda: Logotipo */
/* .navbar-left { */
/* En escritorio, el logo se alinea a la izquierda; en móvil lo centramos */
/* } */

.navbar-left .logo {
    height: 50px;
    /* Altura del logo */
    width: 272px;
    /* Ancho del logo */
    object-fit: contain;
}

/* Sección central: enlaces de navegación (versión escritorio) */
.navbar-center {
    flex: 1;
    text-align: center;
}

.nav-links {
    list-style: none;
    display: inline-flex;
    gap: 30px;
}

.nav-links li a {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20.8px;
    text-align: left;
    text-decoration: none;
    color: #333333;
}

/* Sección derecha: Botón "Agendar demo" (versión escritorio) */
.navbar-right {
    width: 168px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agendarDemo-MenuButton {
    width: 100%;
    height: 100%;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    color: white;
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

/* Personalización del botón colapsable (hamburguesa) */
.navbar-toggler {
    width: 26px;
    height: 26px;
    padding: 0;
    border: none;
    background-color: transparent;
}

.navbar-toggler-icon {
    display: block;
    width: 26px;
    height: 26px;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%230085FF' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* Menú móvil colapsable */
.mobile-menu {
    position: fixed;
    top: 70px;
    /* Justo debajo de la barra fija */
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 900;
    /* Menor que la barra (1000) para que aparezca debajo */
    padding: 10px 20px;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mobile-menu ul li a {
    font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20.8px;
    text-decoration: none;
    color: #333333;
}

/* Ajustes responsivos para móviles */
@media (max-width: 767px) {

    /* Ocultar navegación central y botón "Agendar demo" en móvil */
    .navbar-center,
    .navbar-right .calendar-container {
        display: none;
    }

    /* Centrar el logo en móvil */
    .navbar-left {
        flex: 1;
        text-align: center;
    }

    .navbar-left .logo {
        display: inline-block;
    }

    .logo {
        padding-left: 30px;
    }
}