@charset "utf-8";

/* Tipografía y ajustes generales */

/*// <weight>: Use a value from 400 to 800
// <uniquifier>: Use a unique and descriptive class name

Utilizamos esta tipografía principalmente para títulos o aspectos resaltantes

.eb-garamond-<uniquifier> {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

La siguiente tipografía para textos secundarios 

.lato-thin {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.lato-light {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.lato-regular {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.lato-bold {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.lato-black {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.lato-thin-italic {
  font-family: "Lato", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.lato-light-italic {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.lato-regular-italic {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.lato-bold-italic {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.lato-black-italic {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-style: italic;
}
*/

/* Contenedor general */
.navbar-container {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    font-family: "Lato", sans-serif;
}

/* Parte superior */
.navbar-top {
    background-color: #FFF;
    color: white;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    position: relative;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.img-rss {
    width: auto;
    height: 35px;
    border-radius: 50%;
    margin-top: 10px;
}

.logo {
    height: auto;
    width: 180px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}


.nav-buttons.active {
    display: flex;
    animation: slideDown 0.3s ease forwards;
}

.nav-buttons a {
    color: #000;
    text-decoration: none;
    padding: 10px 15px;
    font-weight: 600;
    align-content: center;
    border-radius: 10px;
    font-size: 0.7rem;
    letter-spacing: 1px;
    line-height: 15px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.nav-buttons .active {
    background-color: #FFF;
    width: 100%;
    /* Color diferente al desplegar */
}

.nav-buttons a:hover {
    background-color: #000;
    color: #fff;

}

/* Menú hamburguesa */
.menu-toggle {
    display: none;
    font-size: 40px;
    cursor: pointer;
    border-radius: 5px;
    background-color: #FFF;
    border: none;
    color: #000;
}

.call-button {
    background-color: #000;
    color: #FFF;
    height: 30px;
    border-radius: 5px;
    box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.75);
    -webkit-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.75);
}


/* Parte inferior */
.navbar-bottom {
    background-color: #2f2f2f;
    height: 20px;
    align-content: center;
    color: #fff;
    text-align: center;
    padding: 0.75rem 1rem;
    font-family: 'Varela Round', sans-serif;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

.navbar-bottom a {
    color: #fff;
    font-weight: 300;
    text-decoration: none;
}

/* Responsive */

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1030px) {

    .nav-buttons {
        position: absolute;
        top: 130px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #FFF;
        display: none;
    }

    .nav-buttons a {
        padding: 10px;
        align-content: center;
        text-align: center;
        font-size: 20px;
        height: 40px;
        border-top: 1px solid #0055aa;
    }

    .nav-buttons.active {
        display: flex;
    }

    .menu-toggle {
        display: block;

    }

    .navbar-container .img-rss {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        margin-left: 50%;
    }

}

@media only screen and (min-device-width : 320px) and (max-device-width : 480px) {
    .navbar-top {
        height: 120px;
    }

    .logo {
        height: 150px;
        width: auto;
    }

    .menu-toggle {
        display: block;
        font-size: 40px;
        border: none;
    }

    .nav-buttons {
        margin-top: 50px;
    }

    .nav-buttons a {
        padding: 10px;
        align-content: center;
        text-align: center;
        font-size: 1.2rem;
        height: 30px;
        border-top: 1px solid #0055aa;

    }

    .navbar-bottom {
        height: auto;
        background-color: #2B3990;
        color: #FFF;

    }

    .navbar-bottom p {
        font-size: 1rem;
        width: 100%;
        margin: 0;
    }

}