body {
    background: #f5f3f4;
}

@font-face {
    font-family: 'special';
    src: url('../fonts/special_agent/specialagent.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.special {
    font-family: 'special', sans-serif;
}

.titulo {
    color: #f5f3f4;    
}

.titulo h1 {
    font-size: 48pt;
}

.inter-thin {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.inter-normal {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.inter-bold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.inter-superbold {
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.montserrat-thin {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

.montserrat-normal {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

.montserrat-bold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
}

.montserrat-superbold {
    font-family: "Montserrat", sans-serif;
    font-optical-sizing: auto;
    font-weight: 900;
    font-style: normal;
}

.navegacion {
    top: 0;
    left: 0;
    height: 70px;
    background: rgba(193, 18, 31, 0.60);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14.5px);
    -webkit-backdrop-filter: blur(14.5px);
    z-index: 100;
    color: #f5f3f4;
}

.carrusel {
    top: 0;
    left: 0;
}

.carousel-item img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}


.overlay {
    z-index: 3;
    background: rgba(18, 18, 18, 0.6);
}

.subtitulo {
    color: #f5f3f4;
    margin-top: -10px;
}

.redes{
    color: #f5f3f4;
    right: 100px;
    bottom: 25px;
}

.redes .btn{
    color: #f5f3f4;    
    font-size: 10pt;
}

.whatsapp {
    bottom: 20px;
    right: 20px;
}

.whatsapp .btn {
    width: 50px;
    height: 50px;
    border: 2px solid #f5f3f4;
    background: rgb(7, 193, 7);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20pt;
    border-radius: 50%;
    color: #f5f3f4;
}

.menu_links {
    list-style: none;
    padding: 0;
}

.menu_links li a{
   color: #f5f3f4;
   text-decoration: none;
   display: flex;
   align-items: center;
   gap: 10px;
}

.menu_links li a i{
   font-size: 18pt;
}

.hamburguer {
    font-size: 24pt;
    color: #f5f3f4;
    display: none;
}

.sesion {
    display: block;
}

@media screen and (max-width: 768px) {
    .hamburguer{
        display: block !important;
    }    

    .menu_links {
        display: none !important;
    }

    .sesion {
        display: none !important;
    }

    .redes {
        display: none !important;
    }
}