:root {
    --color-1-opaco: #e1167f80;
    --color-1-opaco-2: #e1167f17;
    --color-1: #e1167f;
    --color-2-opaco: #6b398217;
    --color-3-opaco: #6b398273;
    --color-2: #6b3982;
    --color-banner-opaco: #6b398273;
}

body {
    position: relative;
    padding-top: 60px;
    display: flex;
    flex-direction: column;
    height: 100vh;

}

body.catalogo {
    padding-top: 115px;
}

/*--------------------------------- HEADER (INICIO) --------------------------------------------*/
.menu {
    position: fixed;
    width: 100%;
    top: 0;
    display: flex;
    height: 67px;
    background-color: #fff;
    justify-content: center;
    align-items: center;
    padding: 20px 88px;
    z-index: 5;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: 0px -1px 10px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px -1px 10px 2px rgba(0, 0, 0, 0.2);
}

.menu .logo {
    height: fit-content;
}

.menu .logo img {
    height: 45px;
}

.menu nav {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu nav ul {
    display: flex;
    /* justify-content: center;
    align-items: center; */
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menu nav ul li a {
    font-size: 18px;
    padding: 10px;
    cursor: pointer;
    text-decoration: none;
    color: var(--bs-body-color);
    font-family: "Poppins", serif;
}

.menu nav ul li a.active {
    border-bottom: 2px solid var(--color-2);
    color: var(--color-2);
    /* background-color: var(--color-2-opaco); */
}

.menu nav ul li a:hover {
    color: var(--color-1);
    border-bottom: 2px solid var(--color-1);
    background-color: var(--color-1-opaco-2);
}

.menu button {
    background-color: var(--color-1);
    color: #fff;
    border-radius: 20px;
    border: none;
}

.menu button:hover {
    background-color: var(--color-2);
}

.menu button:active {
    background-color: var(--color-2) !important;
}

/* Botón hamburguesa */
.hamburguesa {
    display: none;
    /* Ocultar por defecto (se muestra sólo en móvil) */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    align-items: center;
    gap: 8px;
    /* Espacio entre el icono y la palabra */
}

.texto-categorias {
    font-size: 16px;
    display: none;
    font-family: "Poppins", serif;
    font-weight: 400;
    color: #7c611f;
}

/* Estilo del menú */
#menuNav {
    display: flex;
}

button.hamburguesa {
    padding: 9px 10px;
}

#opcsMenu {
    display: flex;
    flex-direction: row;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
}

#opcsMenu li {
    cursor: pointer;
}

/* Mostrar hamburguesa y ocultar menú en móviles */
@media (max-width: 480px) {
    .hamburguesa {
        display: flex;
        /* Mostrar botón hamburguesa */
    }

    #menuNav {
        display: none;
        /* Ocultar menú por defecto */
        position: absolute;
        top: 50px;
        left: 0;
        background: white;
        width: 100%;
        flex-direction: column;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 10px 0;
    }

    #menuNav.active {
        display: flex;
        /* Mostrar menú cuando se active */
    }

    #opcsMenu {
        flex-direction: column;
        /* Mostrar categorías en columna */
        gap: 10px;
    }

    .texto-categorias {
        display: block;
        /* Mostrar palabra "Categorías" sólo en móvil */
    }
}

header .menu-categorias {
    width: 100%;
    position: fixed;
    top: 67px;
    /* height: 48px; */
    background: #fff;
    z-index: 4;
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: 0px -1px 10px 2px var(--color-1-opaco-2);
    box-shadow: 0px -1px 10px 2px var(--color-1-opaco-2);
}

header .menu-categorias ul {
    list-style: none;
    display: flex;
    height: 100%;
    padding: 0;
    /* border-bottom: 2px solid #ebebeb; */
    margin: 0;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: auto;
    border: 1px solid var(--color-1-opaco);

}

header .menu-categorias ul li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
}

header .menu-categorias ul li.active {
    border-bottom-color: var(--color-2);
    font-weight: bold;
    background-color: var(--color-2-opaco);
    color: var(--color-2);
}

header .menu-categorias ul li:hover {
    background-color: var(--color-1-opaco-2);
    border-bottom-color: var(--color-1);
    color: var(--color-1);
}

.banner {
    height: 600px;
    width: 100%;
    position: relative;
    background-image: url('../img/banner.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

a#HacerPedido {
    bottom: 35%;
}

.banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    /* background-color: rgba(225, 22, 127, 0.5); */
    bottom: 0;
    /* Color negro con 50% de opacidad */
    background-color: var(--color-banner-opaco);
    z-index: 1;
}

.banner * {
    position: relative;
    z-index: 2;
    /* Texto blanco para mejor contraste */
    color: #403000;
}

.banner>h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.banner .logo {
    display: flex;
    align-items: end;
    flex: 1;
    bottom: -10%;
}

.banner .contenedor-boton {
    display: flex;
    align-items: start;
    flex: .7;
}

.banner .logo img {
    /* height: 150px; */
}

@font-face {
    font-family: t1;
    src: url(../fonts/photograph.ttf);
}

.banner h2 {
    flex: 1;
    font-family: "Poppins", serif;
    /* Ajusta el tamaño entre 2rem y 8rem según el tamaño de la pantalla */
    font-size: clamp(1.5rem, 1vw, 8rem);
    font-weight: 100;
    /* Asegura que se rompan las palabras si es necesario */
    overflow-wrap: break-word;
    /* Opcional: Alinear el texto */
    text-align: center;
    /* Ajustar el espacio entre líneas */
    line-height: 1.2;
}

.banner button {
    background-color: #ffffff;
    color: var(--color-1);
    border-radius: 20px;
    border: none;
    padding: 7px 15px;
    font-weight: bold;
}

.banner button:hover {
    background-color: #ffeaea;
}

.banner button:active {
    background-color: #ffc7c7 !important;
}

/*--------------------------------- HEADER (FINAL) --------------------------------------------*/
/*--------------------------------- MAIN (INICIO) --------------------------------------------*/
main {
    flex: 1;
}

section.contenedor {
    width: 100%;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.catalogo section.contenedor:nth-of-type(4n + 1) {
    background: var(--color-1-opaco-2);
}

.catalogo section.contenedor:nth-of-type(4n + 2) {
    background: #fff;
}

.catalogo section.contenedor:nth-of-type(4n + 3) {
    background: var(--color-2-opaco);
}

.catalogo section.contenedor:nth-of-type(4n + 4) {
    background: #fff;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@100&display=swap');

section.contenedor h2 {
    font-family: "Poppins", serif;
    /* Fuente delgada */
    font-weight: 400;
    /* Ajusta el tamaño según tus necesidades */
    font-size: 2.3rem;
    /* Espaciado entre letras */
    letter-spacing: 0.1rem;
    /* Centrar el texto */
    text-align: center;
    margin: 18px 0;
    padding: 0;
    /*Color solamente para éste tipo de título de la página */
    color: #7c611f;
}

/*** Promociones ***/
.bg-promociones {
    background-color: var(--color-1-opaco-2);
}

.contenedor-promociones {
    display: flex;
    /* Scroll horizontal si el contenido es más grande que la pantalla */
    overflow-x: auto;
    width: 100%;
}

.promociones {
    display: flex;
    /* Alinea los elementos al principio */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: auto;
}

.promociones .promocion {
    width: 200px;
    min-width: 200px;
    height: 150px;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 8px;
    padding: 5px;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    /* Sombra sutil */
    position: relative;
    overflow: hidden;
}

.promocion::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(102 76 16 / 50%);
    mix-blend-mode: multiply;
    z-index: 1;
}

.promociones .promocion:nth-child(1) {
    background-image: url('../img/chido/promocion-1.jpg');
}

.promociones .promocion:nth-child(2) {
    background-image: url('../img/chido/promocion-2.jpg');
}

.promociones .promocion:nth-child(3) {
    background-image: url('../img/chido/promocion-3.jpg');
}

.promociones .promocion h3 {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    /* Ocultar el desbordamiento */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* Limita a 2 líneas */
    -webkit-line-clamp: 2;
    /* Permitir que se rompan las líneas */
    white-space: normal;
    /* Puntos suspensivos si el texto excede el espacio */
    text-overflow: ellipsis;
    z-index: 2;
}

.promociones .promocion p {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    /* Ocultar el desbordamiento */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* Limita a 2 líneas */
    -webkit-line-clamp: 2;
    /* Permitir que se rompan las líneas */
    white-space: normal;
    /* Puntos suspensivos si el texto excede el espacio */
    text-overflow: ellipsis;
    z-index: 2;
}

/*** Productos ***/
.contenedor-productos {
    display: flex;
    /* Scroll horizontal si el contenido es más grande que la pantalla */
    overflow-x: auto;
    width: 100%;
}

.productos {
    display: flex;
    /* Alinea los elementos al principio */
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    margin: auto;
}

.contenedor-productos.no-overflow {
    display: flex;
    flex-direction: row;
    /* Centra el grupo de elementos */
    justify-content: center;
}

.no-overflow .productos {
    /* margin: 0; */
    display: flex;
    margin-left: auto;
    /* Empuja el grupo de elementos hacia la izquierda */
}

.productos .producto {
    width: 200px;
    height: 260px;
    margin: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* border-radius: 20px; */
    /* padding: 5px; */
    background-size: cover;
    background-position: center;
    background-color: var(--color-3-opaco);
    position: relative;
}

.producto .codigo {
    padding: 5px;
    background: var(--color-2);
    color: #fff;
    position: absolute;
    top: 10px;
    left: 0;
    font-size: 10px;
    z-index: 2;
}

.productos .producto .contenedor-foto {
    width: 100%;
    height: 100%;
    max-height: 200px;
    /* display: flex;
    justify-content: center; */
    position: relative;
    margin-bottom: 10px;
}

.productos .producto .contenedor-foto img {
    /* max-width: 100%;
    max-height: 100%; */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.productos .producto h3 {
    font-size: .9rem;
    font-family: "Poppins", serif;
    font-weight: bold;
    text-align: center;
    /* Ocultar el desbordamiento */
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* Limita a 2 líneas */
    -webkit-line-clamp: 1;
    /* Permitir que se rompan las líneas */
    white-space: normal;
    /* Puntos suspensivos si el texto excede el espacio */
    text-overflow: ellipsis;
    height: 25px;
    padding: 0 2px;
}

.productos .producto p {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    font-family: "Poppins", serif;
}

/*** Quienes somos ***/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

.bg-quienes-somos {
    background-color: #f6f6f6;
}

.bg-quienes-somos h3,
.bg-quienes-somos p {
    max-width: 1000px;
    width: 90%;
    margin: auto;
    text-align: center;
    font-family: "Poppins", serif;
}

.bg-quienes-somos h3 {
    font-weight: 400;
    /* Ajusta según el color que prefieras */
    color: #7c611f;
    margin-bottom: 23px;
    margin-top: 15px;
    font-size: 2.3rem;

}

.bg-quienes-somos p {
    font-weight: 400;
    text-transform: math-auto;
    /* Ajuste de espaciado entre letras si es necesario */
    letter-spacing: 0.05em;
}

/*** Sucursales ***/
section.bg-sucursales {
    background-color: #fff;
    display: flex;
    flex-direction: row;
}

.parte-izquierda {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.parte-izquierda .logo {
    height: fit-content;
    margin: auto;
}

.parte-izquierda .logo img {
    height: 100px;
}

.parte-izquierda h3 {
    text-align: center;
    font-weight: 400;
    color: #7c611f;
    margin-bottom: 23px;
    margin-top: 15px;
    font-size: 2.3rem;
}

.parte-izquierda article {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.parte-izquierda article svg {
    width: 20px;
    margin-right: 10px;
}

.parte-izquierda article p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    /* Ajusta la altura de línea según tus necesidades */
    line-height: 1.5em;
    /* line-height * number of lines */
    max-height: 3em;
}

.parte-derecha {
    flex: 1;
}

.parte-derecha #map {
    width: 100%;
    height: 300px;
}

@media (max-width: 800px) {
    section.bg-sucursales {
        flex-direction: column;
    }

    .parte-izquierda {
        width: 100%;
        padding: 20px 10px;
    }

    .parte-derecha {
        padding: 20px 10px;
        background-color: var(--color-2-opaco);
        width: 100%;
        flex: auto;
        margin: -20px -10px;
    }
}

/*--------------------------------- MAIN (FINAL) --------------------------------------------*/
/*---------------------------------  (INICIO) --------------------------------------------*/
footer {
    background: var(--color-2);
    padding: 20px 10px;
    margin-top: 20px;
}

footer p {
    margin: 0;
    text-align: center;
    color: #fff;
    font-size: clamp(.4rem, 5vw, .8rem);
}

/*---------------------------------  (FINAL) --------------------------------------------*/
/*--------------------------------- MODALES (INICIO) --------------------------------------------*/
.contenedor-modal {
    background-color: rgba(0, 0, 0, .2);
    height: 100%;
    width: 100%;
    color: #000;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 200;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contenido-modal {
    display: flex;
    max-width: 90%;
    width: 700px;
    height: fit-content;
    max-height: 350px;
    /* border: 2px solid red; */
    background: #fff;
    position: relative;
    /* padding: 10px; */
    /* offset-x | offset-y | blur-radius | spread-radius | color */
    -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.4);
    border-radius: 5px;
    opacity: 0;
}

.contenedor-modal .contenido-modal>svg {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    text-align: center;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    cursor: pointer;
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #fff;
}

.contenedor-modal .contenido-modal>svg path {
    fill: var(--color-1);
}

.contenedor-modal .contenido-modal>svg:hover {
    transform: rotate(90deg) scale(1.1);
}

@keyframes aparecer-modal {
    0% {
        transform: scale(.9);
        opacity: 50;
    }

    50% {
        transform: scale(1.1);
        opacity: 75;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.contenedor-modal.active .contenido-modal {
    opacity: 1;
    transform: 1;
    animation-name: aparecer-modal;
    animation-duration: .2s;
}

.contenido-modal .contenedor-imagen {
    flex: 1;
    min-height: 350px;
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 0;
    z-index: 2;
}

.contenido-modal .contenedor-imagen img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.contenido-modal .contenedor-texto {
    flex: 1;
    position: relative;
    padding: 10px 10px 0 10px;
    display: flex;
    flex-direction: column;
    max-height: 50%;
    overflow-y: auto;
}

.contenido-modal .contenedor-texto h3 {
    text-align: center;
    font-weight: bold;
    font-size: 20px;
    padding: 10px;
    border-bottom: 1px solid #c6c6c6;
    color: #363636;
    /* font-family: 'Playfair Display', serif; */
    font-family: 'Montserrat', sans-serif;
    /* font-family: 'Lora', serif; */
    /* font-family: 'Raleway', sans-serif; */
    /* font-family: 'Lora', serif; */
    background-color: var(--color-2-opaco);
    color: var(--color-1);
}

.contenido-modal .contenedor-texto .descripcion {
    flex: 1;
    overflow-y: auto;
}

.contenido-modal .contenedor-texto p {
    /* margin-bottom: 7px; */
    text-align: justify;
    padding-left: 10px;
    padding-right: 10px;
    color: #5c5c5c;
    /* font-family: 'Merriweather', serif;
    font-size: 18px;
    font-weight: 400;
    color: #333;
    /* font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    letter-spacing: 1px; */
    /* font-family: 'Lobster', 'Abril Fatface', ;
    font-size: 20px;
    font-weight: lighter;
    color: #703800; */
    /* font-family: 'Abril Fatface', serif;
    font-size: 18px;
    color: #8B4513; */
    /* font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #d35400;
    text-transform: uppercase;
    letter-spacing: 1.5px; */
}

.contenido-modal .contenedor-texto p .negritas {
    color: var(--color-2);
}

.contenido-modal .contenedor-texto .precio {
    position: sticky;
    bottom: 0;
    width: calc(100% + 20px);
    font-weight: bold;
    padding: 5px;
    background: var(--color-2-opaco);
    color: var(--color-1);
    text-align: center;
    font-size: 20px;
    margin-left: -10px;
    margin-right: -10px;
    z-index: 9999;
    /* Aumentar el z-index para asegurar que esté frente al contenido */
}

.btn-primary {
    background: var(--color-1);
    border: none;
    border: 1px solid var(--color-1);
    font-weight: bold;
}

.btn-primary:hover,
.btn-outline-primary:hover {
    background: var(--color-1-opaco);
    border: 1px solid var(--color-1-opaco);
}

.btn-primary:focus,
.btn-outline-primary:focus {
    background: var(--color-1-opaco);
    color: #fff;
}

.btn-primary:focus-visible,
.btn-outline-primary:focus-visible {
    background: var(--color-1-opaco);
    color: #fff;
}

.btn-primary:active,
.btn-outline-primary:active {
    background: var(--color-1) !important;
    color: #fff !important;
    outline: none !important;
    outline-width: 0 !important;
    border: none !important;
}

.btn-success:hover i,
.btn-primary i,
.btn-outline-primary i,
.btn-outline-danger i,
.btn-outline-success i {
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
}

.btn-success:hover i,
.btn-primary:hover i,
.btn-outline-primary:hover i,
.btn-outline-danger:hover i,
.btn-outline-success:hover i {
    transform: translate(-3px, 0px);
}

.btn-outline-primary {
    /* background: transparent; */
    border: 1px solid var(--color-base-fuerte-1);
    color: var(--color-base-fuerte-1);
    font-weight: bold;
}

/*--------------------------------- MODALES (FINAL) --------------------------------------------*/
/*--------------------------------- PANTALLA CARGA (INICIO) --------------------------------------------*/
/* Configuración del fondo y contenedor de carga */
.contenedor-pantalla-carga {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f0f8ff;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.loading-screen {
    position: relative;
    width: 100px;
    height: 100px;
    /* animation: rotate 6s linear infinite; */
    animation: rotate 6s linear infinite;
}

/* Flores alrededor del contenedor */
.flower {
    position: absolute;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    opacity: 0.8;
    animation: rotate 6s linear infinite;
}

.flower path {
    fill: var(--color-1);
}

/* Colocación circular de las flores */
.flower1 {
    top: 0;
    left: calc(50% - 7.5px);
    transform: translateX(-50%);
}

.flower2 {
    bottom: 0;
    left: calc(50% - 7.5px);
    transform: translateX(-50%);
}

.flower3 {
    top: calc(50% - 7.5px);
    left: 0;
    transform: translateY(-50%);
}

.flower4 {
    top: calc(50% - 7.5px);
    right: 0;
    transform: translateY(-50%);
}

/* Animación de rotación */
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Estilo del centro como flor principal */
.center-bloom {
    position: absolute;
    top: calc(50% - 15px);
    left: calc(50% - 15px);
    width: 30px;
    height: 30px;
    transform: translate(-50%, -50%);
    animation: rotate 6s linear infinite;
    /* Agrega esta línea */
    animation-direction: reverse;
}

.center-bloom path {
    fill: var(--color-2);
}

/*--------------------------------- PANTALLA CARGA (FINAL) --------------------------------------------*/
/*--------------------------------- FORMULARIOS (INICIO) --------------------------------------------*/
.form-floating label {
    -o-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    z-index: 0;
}

.form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
    z-index: 10 !important;
    background: transparent !important;
}

.form-floating .form-control,
.form-floating .form-select {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 2px solid #c8c8c8;
    border-radius: 0;
}

.form-floating .form-control:focus,
.form-floating .form-select:focus {
    border-bottom: 3px solid var(--color-2);
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.form-floating>label svg {
    height: 19px;
    padding-bottom: 3px;
}

.text-right {
    text-align: right;
}

textarea:focus {
    outline: none !important;
    outline-width: 0 !important;
    box-shadow: none !important;
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
}

.modal-search,
.input-con-icono {
    position: relative;
}

.modal-search input {
    cursor: pointer;
}

.input-con-icono>i {
    color: var(--color-1);
}

.modal-search>i,
.input-con-icono>i {
    position: absolute;
    top: calc(50% - 6px);
    right: 8px;
}

.input-con-icono.input-password>i {
    padding: 8px;
    top: calc(50% - 9px);
    cursor: pointer;
}

.input-con-icono.input-password>i:hover {
    color: var(--color-2);
}

.input-con-icono.input-password>i~i {
    display: none;
}

.input-con-icono.input-password.active>i {
    display: none;
}

.input-con-icono.input-password.active>i~i {
    display: block;
}

label.input-error {
    color: #ff2525 !important;
}

.input-error:not(label) {
    border-bottom: 3px solid #ff2525 !important;
    color: #ff2525 !important;
}

input[readonly]:not(.modal-search input[readonly]),
textarea[readonly] {
    background: var(--color-2) !important;
}

.contenedor-password {
    position: relative;
}

.contenedor-password .fa-eye,
.contenedor-password .fa-eye-slash {
    height: 22px;
    width: 22px;
    color: var(--color-1);
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: calc(50% - 11px);
    right: 10px;
    cursor: pointer;
}

/*--------------------------------- FORMULARIOS (FINAL) --------------------------------------------*/

/*--------------------------------- EXTRAS (INICIO) --------------------------------------------*/
.cursor-pointer {
    cursor: pointer;
}

.zoom-hover {
    -o-transition: transform .3s ease;
    -moz-transition: transform .3s ease;
    -webkit-transition: transform .3s ease;
    transition: transform .3s ease;
}

.zoom-hover:hover {
    transform: scale(1.1);
}

.negritas {
    font-weight: bold;
}

.oculto {
    display: none;
}

.no-overflow {
    overflow: hidden;
}

.no-overflow .productos {
    flex-wrap: wrap;
}

.transiciones {
    -o-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
}

/*--------------------------------- EXTRAS (FINAL) --------------------------------------------*/
@media (max-width: 500px) {
    body {
        padding-top: 57px;
    }

    .menu {
        height: 57px;
        padding: 10px 20px;
    }

    .menu nav ul li {
        font-size: 18px;
    }

    .menu button {
        font-size: 10px;
    }

    body.catalogo {
        padding-top: 100px;
    }

    body.catalogo .menu-categorias {
        top: 56px;
    }
}

@media (max-width: 600px) {

    /*--- MODALES (INICIO) ----*/
    .contenido-modal {
        flex-direction: column;
        max-height: 90%;
    }

    .catalogo section.contenedor h2 {
        font-size: 30px;
    }

    .no-overflow .productos {
        justify-content: center;
    }

    .no-overflow .productos .producto {
        width: 85%;
        height: 450px;
    }

    .no-overflow .productos .producto .contenedor-foto {
        max-height: 400px;
    }

    /*--- MODALES (FINAL) ----*/
}

/*ANIMACIÓN AL INICIAR PÁGINA*/
.animated-div {
    opacity: 0;
    transform: translateY(-100px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.animated-div.visible {
    opacity: 1;
    transform: translateY(0);
}

.animated-col {
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.from-left {
    transform: translateX(-100px);
}

.from-right {
    transform: translateX(100px);
}

.from-top {
    transform: translateY(100px);
}

.animated-col.visible {
    opacity: 1;
    transform: translateX(0);
}

.from-top.visible {
    transform: translateY(0);
}