﻿:root {
    /*--bg-de: linear-gradient(to right, rgb(1, 9, 32), rgb(6, 22, 56), rgb(22, 70, 140), rgb(25,76,153));*/
    --bg-de: linear-gradient(to right, rgba(38,166,154,1) 0%, rgba(38,166,154,1) 24%, rgba(20,50,150,1) 100%);

}

.navbar-container {
    box-shadow: 0px 0px 10px 3px rgba(38,166,154, 0.2);
    /*top: 25px;*/
}

.menu-icon {
    display: none; /* Ocultar icono por defecto */
}

.img-navbar{
    height: 50px;
    object-fit: cover;
}

.navbar-buttom:hover {
    background-color: #26A69A;
    color: white;
    transition: all ease-in 300ms;
}

.active-menu {
    font-weight: bold;
    color: #26A69A;
    border-bottom: 6px solid #26A69A;
    transition: all ease-in 300ms;
}

.menu-container {
    display: flex;
    gap: 20px;
}

.navbar-subbuttom {
    text-transform: uppercase;
}

.navbar-subbuttom:hover {
    color: #26A69A;
}

.items-btn {
    position: relative;
    display: flex;
    align-items: center; /* Centra verticalmente el icono y el texto */
    gap: 10px; /* Ajusta el espacio entre el icono y el texto */
    font-size: 1.3em;
    font-weight: 500;
    text-align: center;
    transition: color 0.4s linear;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
}

    .items-btn i {
        font-size: 2em;
    }

    .items-btn:hover {
        color: #eee;
    }

    .items-btn::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        border-radius: 5px;
        z-index: -1;
        transition: transform 0.5s;
        transform-origin: 0 0;
        transition-timing-function: cubic-bezier(0,5,1.6,0.4,0.7);
        transform: scaleX(0)
    }

    .items-btn:hover::before {
        transform: scaleX(1);
    }


    .items-btn.instagram::before {
        background: linear-gradient(45deg, #833AB4, #C13584, #F56040, #FFDC80); /* Gradiente de Instagram */
    }
    .items-btn.tiktok::before {
        background: #1f212a; /* Azul de Facebook */
    }

    .items-btn.whatsapp::before {
        background: linear-gradient(45deg, #25D366, #128C7E); /* Verde de WhatsApp */
    }

.whatsapp {
    color: #25D366;
}
.instagram {
    color: #D81B60;
}
.tiktok {
    color: #1f212a;
}

/* Etiqueta */
.etiqueta {
    position: fixed;
    color: white;
    border-radius: 8px;
    border: 3px solid rgba(255, 255, 255, 1);
    font-weight: bold;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    transition: opacity 1s ease-in-out;
    cursor: pointer;
    text-align: left;
    padding: 0px 10px;
    width: max-content;
    height: max-content;
    left: -5px;
}

.primeraEtiqueta {
    background-color: rgba(190, 20, 20, 1);
}

.segundaEtiqueta {
    background-color: rgba(255, 200, 5, 1);
}

/*ESLOGAN*/
.eslogan-div {
    position: fixed;
    height: 25px;
    top: 0px;
    left: 0;
    width: 100%;
    white-space: nowrap;
    /*background: var(--bg-de);*/
    background-image: repeating-linear-gradient(140deg, rgba(0,0,0,0.03) 0px, rgba(0,0,0,0.03) 5px,transparent 10px, transparent 20px),linear-gradient(to right, rgba(38,166,154,1) 0%, rgba(38,166,154,1) 24%, rgba(20,50,150,1) 100%);
    color: white;
    padding: 2px 0;
    overflow: hidden;
    z-index: 1000;
}

.eslogan-text {
    width: 100%;
    display: inline-block;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.barraMenu {
    /*background: var(--bg-de);*/
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.8;
    height: 100%;
    top: 25px;
}


@keyframes marquee {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}


@media (max-width: 960px) {
    .menu-icon {
        display: inline-flex; /* Muestra el icono solo en pantallas pequeñas */
    }

    .img-navbar {
        height: 40px;
    }

    .menu-container {
        display: none; /* Oculta el menú en pantallas pequeñas */
    }
    .redes-navbar {
        display: none !important;
    }

    .etiqueta h6{
        font-size: 14px;
    }

    .etiqueta h4 {
        font-size: 18px;
    }

}
