
@font-face {
    font-family: 'Graphik';
    src: url('../fonts/Graphik.ttc') format('opentype');
}


/* Estilos generales */
body {
    margin: 0;
    font-family: 'Segoe UI Emoji', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
}

p {
    margin: 5px;
}

.p1 {
    font-family: Graphik;
    font-size: 20px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
}

.p2 {
    font-family: Graphik;
    font-size: 12px;
    font-weight: 400;
    line-height: 12px;
    text-align: left;
}


.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background-color: #FFFFFFCC;
    color: #000000;
    position: relative;
    z-index: 2;
    position: absolute;
    left: 0;
    right: 0;
    padding: 25px 60px;
}

.navbar-logo {
    font-family: DM Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 28px;
    text-align: right;

}

.navbar-links {
    display: flex;
    gap: 40px;
    font-family: Graphik;
    font-size: 20px;
    font-weight: 400;
    line-height: 28.57px;
    text-align: center;

}

.navbar-links a {
    color: #000000;
    text-decoration: none;
}

.navbar-logo {
    color: #000000;
}

.link_home{
    text-decoration: none;
}


.navbar-links a:hover,
.navbar-logo:hover {
    color: #D05814;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    width: 24px;
    height: 20px;
}

.hamburger img {
    display: none;
    /* Ocultar ambos SVGs por defecto */
    width: 24px;
    height: 24px;
}

/* Mostrar el icono de hamburguesa por defecto */
.hamburger .icon-rest {
    display: block;
}

/* Estilos para el menú móvil */
.mobile-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    color: #000000;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-menu a {
    color: #000000;
    text-decoration: none;
    font-size: 1.5rem;
    text-align: center;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img_std {
    display: block !important;
}

.img_mob {
    display: none !important;
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 70px 60px;
    background-color: #F4F4F4;
}

.footer a {
    color: #000000;
}

.footer a:hover {
    color: #00A070;
}

a{
    color: #000000;
    text-decoration: none;
}

a:hover {
    color: #00A070;
}



/* Estilos responsivos */
@media (max-width: 768px) {

    .navbar,
    .footer {
        padding: 20px;
    }

    .navbar {
        z-index: 3;
    }

    .navbar-logo {
        font-size: 18px;
        line-height: 28px;

    }

    .navbar-links {
        display: none;
    }

    .navbar-links {
        font-size: 30px;
        line-height: 36px;

    }

    .hamburger {
        display: block;
    }

    .hamburger.active .icon-rest {
        display: none;
        /* Ocultar el SVG de reposo cuando está activo */
    }

    .hamburger.active .icon-active {
        display: block;
        /* Mostrar el SVG activo cuando está activo */
    }

    .mobile-menu.show {
        display: flex;
    }

    .mobile-menu.show {
        display: flex;
    }

    .img_std {
        display: none !important;
    }

    .img_mob {
        display: block !important;
    }

    .footer {
        flex-direction: column;
    }

    .footer-b2 {
        padding-top: 20px;
    }

    #contact{
        font-size: 20px;
        line-height: 26px;
    }

    .pinitial{
        position: relative;
    }

    .contact_box{
        padding-inline: 20px;
        width: initial;
    }

    .pb80{
        padding-bottom: 40px;
    }
    
    .pt80{
        padding-top: 20px;
    }
    
}