/* */
body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--color-base);
    background: #fff;
    font-size: 16px;
    overflow-x: hidden;
    min-height: 500px;
    line-height: 26px;
}

header {
    background: #ffcc37;
    overflow: hidden;
    z-index: 5;
    position: relative;
}

section,
footer {
    z-index: 1;
}

h1,
.section-title {
    font-size: 1.6rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
}

h4 {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.loader {
    position: fixed;
    width: 200px;
    height: 200px;
    background: url('../img/layout/loader.gif') center center no-repeat;
    background-size: 100% auto;
    top: 0;
    left: 0;
    z-index: 1000;
    top: calc(50% - 100px);
    left: calc(50% - 100px);
    opacity: .5;
}

.top-bar {
    width: 100%;
    height: auto;
    z-index: 12;
    display: flex;
    align-items: top;
    justify-content: space-between;
    height: 80px;
    background: var(--gradient-green-0);
    position: fixed;
    box-shadow: 0 0 14px rgba(0, 0, 0, .6);
    transition: all .2s ease-out;
}

.top-bar-home {
    background: transparent;
    height: 150px;
    position: absolute;
    box-shadow: none;
}

.logo-home {
    position: relative;
    left: 3%;
    top: 20px
}

.logo-img-home {
    width: 250px;
    position: relative;
}

.logo-fixed {
    position: relative;
    margin-top: 4px;
    margin-left: 2%;
}

.logo-img-fixed {
    width: 150px;
    position: relative;
}

/* menú */
.navbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    right: 2%;
    top: 20px;
    height: 40px;
    /* Mantén la altura original */
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    transition: max-height 0.3s ease-out;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 15px;
    overflow: visible;
}

.menu-top {
    font-size: 1rem;
    text-shadow: 2px 1px 0px var(--color-green);
    padding: 4px 11px;
    color: #fff;
    text-decoration: none;
    transition: all 0.12s ease-in-out;
    border-radius: 5px;
}

.menu-top-icon {
    position: relative;
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: transparent 67 center center / cover no-repeat;
    transition: all 0.12s ease-in-out !important;
    margin: auto;
}

.menu-top-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-image: url('../img/layout/home-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    z-index: 1;
    transition: all 0.12s ease-in-out !important;
}

.menu-top:hover {
    color: var(--color-green);
    text-shadow: none;
    background: var(--gradient-yellow-0);
}

.menu-top-icon:hover {
    background: var(--gradient-yellow-0) center center / cover no-repeat;
}

.menu-top-icon:hover::before {
    background-image: url('../img/layout/home.svg');
}

.search-icon::before {
    background-image: url('../img/layout/search-white.svg');
}

.search-icon:hover::before {
    background-image: url('../img/layout/search.svg');
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
    margin-right: 20px;
    margin-top: 20px;
}

.menu-toggle .bar {
    background: #fff;
    height: 2px;
    width: 35px;
    margin: 4px 0;
    transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(14px);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(-14px);
}

/* Estilos para el ícono de búsqueda */
#search-toggle {
    cursor: pointer;
    margin-left: 15px;
}

/* Estilos para el menú de búsqueda */
.search-menu {
    position: absolute;
    top: 40px;
    right: 0;
    background: #e9e9e9;
    width: 300px;
    padding: 10px;
    z-index: 10;
    transform: scaleY(0);
    transform-origin: top;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 3px 3px 20px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    line-height: 20px;
}

.search-menu.active {
    transform: scaleY(1);
    opacity: 1;
}

/* Estilos del formulario dentro del menú de búsqueda */
.search-menu form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-menu input {
    padding: 8px;
    border: none;
    border-radius: 4px;
    width: 70%;
    outline: none;
    color: #888;
    font-size: 14px;
    box-shadow: inset 2px 2px 3px rgba(0, 0, 0, .2);
}

.search-menu button {
    margin-left: 10px;
    font-size: 14px;
}

.content {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto 0 auto;
    padding: 50px 20px;
    position: relative;
}

.content-top {
    margin-top: 80px;
}

.slider-content {
    padding: 50px 0;
    width: 100%;
    max-width: 1300px;
    margin: auto;
}

#go-up {
    position: fixed;
    bottom: 10px;
    right: 10px;
    display: none;
    background: var(--gradient-green-0);
    color: #fff;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    z-index: 1000;
    line-height: 50px;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.3);
    border: 2px solid #fff;
}

#go-up::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    background-image: url('../img/layout/arrow-up-white.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    z-index: 1;
    transition: all 0.12s ease-in-out !important;
}

#go-up:hover {
    background: var(--gradient-yellow-0);
}

#go-up:hover::before {
    background-image: url('../img/layout/arrow-up.svg');
}

.wsp {
    z-index: 1000;
    position: fixed;
    left: 15px;
    bottom: 15px;
    width: 60px;
    height: 60px;
    background: url('../img/layout/wsp-icon.png') center center no-repeat;
    background-size: 100% auto;
    transition: transform 0.3s ease-in-out;
    animation: pulse 2s infinite;
    cursor: pointer;
}

.wsp-text {
    position: fixed;
    left: 45px;
    bottom: 23px;
    width: 0;
    z-index: 999;
    background: linear-gradient(0deg, #27b258 0%, #51c779 100%);
    color: #fff;
    border: 4px solid #fff;
    padding: 0;
    font-size: 1rem;
    font-weight: 500;
    transition: width 0.3s ease-in-out, padding 0.3s ease-in-out;
    border-radius: 25px;
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 1px 2px 10px rgba(0, 0, 0, .3);
}

.wsp:hover {
    animation: none;
    transform: scale(1.1);
}

.wsp:hover+.wsp-text {
    width: 200px;
    padding: 5px 40px;
}

.btn {
    background: var(--gradient-green-0);
    border: 0;
    outline: none;
    cursor: pointer;
    border-radius: 5px;
    padding: 8px 12px;
    color: #fff !important;
    transition: all .12s linear;
    text-decoration: none;
    font-weight: 500;
}

.btn:hover {
    color: var(--color-green) !important;
    background: var(--gradient-yellow-0);
}

#products-toggle::after {
    content: url('../img/layout/chevron-down-white.svg');
    margin-left: 7px;
}

/* Estilos generales para el menú desplegable */
.menu-dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fbfbfb;
    list-style: none;
    padding: 0;
    margin: 0;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 10;
    width: 200px;
}

.menu-dropdown.active .dropdown-menu {
    display: block;
    max-height: 300px;
}

.dropdown-menu li {
    border-bottom: 1px solid #eaeaea;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    margin-right: 4px;
    background-image: url("../img/layout/arrow-right-slide.svg");
    background-size: 14px auto;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.dropdown-menu a {
    padding: 10px 8px;
    text-decoration: none;
    color: var(--color-base);
    display: block;
    font-size: 1rem;
}

.dropdown-menu a:hover {
    color: var(--color-green);
    background: var(--gradient-yellow-0);
}

.bg-banner-c {
    background-image: url('../img/layout/bg-shapes.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    width: 100%;
}

.bg-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Para asegurar que el reflejo no se salga del contenedor */
}

.bg-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/layout/bg-shapes.webp');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% auto;
    transform: scaleX(-1);
    transform-origin: center;
}

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.flex-column {
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.flex-grow {
    flex-grow: 1;
}

.home-categories,
.home-news {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}

.float-container {
    display: flex;
    align-items: stretch;
}


.float-container p {
    margin-bottom: 1.2rem;
}

.float-3 {
    width: 30%;
    background-size: cover;
    min-height: 100%;
}

.float-7 {
    width: 70%;
    padding-right: 3%;
    padding-left: 3%;
    min-height: 330px;
}

.float-5 {
    width: 50%;
    height: auto;
}

.codart,
.novedad-date {
    display: block;
    font-size: 14px;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

.novedad-date {
    text-align: right;
    color: #aaa;
    font-weight: 500;
}

.attachments-container {
    gap: 20px;
    margin-bottom: 30px;
    margin-right: 30px;
    display: block;
    float: left;
    width: 50%;
    height: auto;
    position: relative;
    z-index: 1;
}

.zoom-msg {
    width: 160px;
    height: 30px;
    position: absolute;
    left: calc(50% - 80px);
    top: 240px;
    background: linear-gradient(0deg, #666 0%, #111 100%);
    gap: 4px;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 0 3px rgb(255, 255, 255);
    text-align: left;
    padding-left: 13px;
    line-height: 30px;
    font-size: 12px;
    display: none;
}

.zoom-msg img {
    display: inline-block;
    width: 20px;
    transform: rotateY(180deg);
    position: absolute;
    right: 12px;
    top: 5px;
}

.docs-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 25px;
    gap: 20px;
    font-size: .9rem;
    font-weight: 500;
}

.docs-container img {
    width: 40px;
    transition: all .3s ease-in-out;
}

.docs-container img:hover {
    transform: scale(1.1);
}

.no-image {
    margin: auto;
    width: 200px;
    height: 200px;
    background-image: url('../img/layout/no-image.jpg');
    background-size: auto 100%;
}

.image-container {
    width: 100%;
    height: 250px;
    background-size: 100% auto;
    background-position: center center;
    transition: all .3s linear;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5);
}

.thumbnails-container {
    height: 200px;
    width: 100%;
    gap: 10px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding-top: 10px;
}

.thumbnails-container a {
    flex: 1;
    display: block;
    height: 100%;
    box-sizing: border-box;
    text-decoration: none;
}

.thumbnail {
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-position: center;
    background-repeat: no-repeat;
    transition: all .3s linear;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5);
}

.thumbnail:hover,
.image-container:hover {
    background-size: 120% auto;
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .3), 0 0 0 4px rgba(209, 200, 165, 0.3);
}

.home {
    background: url('../img/layout/home-left.jpg') center center no-repeat;
    background-size: cover;
}

.empresa {
    background: url('../img/layout/empresa.jpg') center center no-repeat;
    background-size: cover;
}

.contacto {
    background: url('../img/layout/contacto.webp') center center no-repeat;
    background-size: cover;
}

.novedades {
    background: url('../img/layout/novedades.jpg') center center no-repeat;
    background-size: cover;
}

.bg-yellow h2 {
    text-shadow: 0 0 5px #d3a10b
}

.link-sc {
    display: inline;
    width: auto !important;
    height: auto !important;
}

.article,
.article:visited {
    display: block;
    height: 100%;
    text-decoration: none;
    color: var(--color-base);
    font-size: 1rem;
}

.article:hover {
    color: var(--color-green);
}

.img-container {
    width: 100%;
    height: calc(100% - 50px);
    margin-bottom: 10px;
    background-position: center center;
    background-size: cover;
    border-radius: 5px;
    transition: all .3s ease-in-out;
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .5);
}

.article-name {
    height: 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-name::after {
    content: url("../img/layout/arrow-right-slide.svg");
    margin-left: 10px;
    margin-top: 6px;
}

#Mapa {
    width: 100%;
    height: 500px;
    display: none;
    background: #eee url('../img/layout/loader.gif') center center no-repeat;
    background-size: 150px auto;
    position: relative;
    z-index: 0;
}

#BtnOcultarMapa {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -25px;
    background-color: #fff;
    background-image: url('../img/layout/close.svg');
    background-size: 50px 50px;
    background-position: center center;
    z-index: 2;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .3);
    cursor: pointer;
    transition: all .2s ease-in-out;
}

#BtnOcultarMapa:hover {
    transform: scale(1.1);
}

.MostrarMapa {
    width: 40px;
    height: 40px;
    display: inline-block;
    background: url('../img/layout/map-icon.svg') center center no-repeat;
    background-size: 100% auto;
    cursor: pointer;
    margin-left: 10px;
    transition: all .3s linear;
}

.MostrarMapa:hover {
    transform: scale(1.4);
}

footer {
    background-color: #eee;
    min-height: 400px;
    width: 100%;
    color: #6a6a6a;
    position: relative;
    z-index: 0;
}

.bg-footer {
    background-image: url('../img/layout/bg-shapes.webp');
    background-position: center;
    background-size: 2000px auto;
    background-repeat: no-repeat;
    opacity: .5;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.copy {
    background: var(--gradient-green-0);
    padding: 20px 0;
    color: #fff;
    border-top: 1px solid var(--color-yellow);
    position: relative;
    z-index: 2;
}

.footer-section {
    display: flex;
    justify-content: space-between;
}

.footer-section>div {
    flex: 1;
    padding: 0 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.footer-logo {
    width: 100%;
    max-width: 250px;
    margin: 30px auto 0 auto;
}

.footer-item .footer-icon {
    width: 35px;
    height: 35px;
    margin-right: 10px;
    background-color: #bbb;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 50%;
    border: 2px solid #fff;
    box-shadow: 0 5px 10px #aaa;
}

.footer-menu,
.footer-item {
    margin-left: 20px;
    margin-bottom: 23px;
}

.footer-menu a {
    display: block;
    margin-bottom: 9px;
}

.footer-menu a::before {
    content: "►";
    margin-right: 10px;
    font-size: 11px;
    vertical-align: top;
    color: var(--color-yellow)
}

.footer-social {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.social-media,
.social-media:visited {
    display: inline-block;
    text-align: center;
}

.social-media img {
    width: 50px;
    margin: 0 auto 5px auto;
    opacity: .8;
    border: 4px solid transparent;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    transition: all .3s linear;
}

.social-media img:hover {
    opacity: 1;
    border: 4px solid #fff;
    box-shadow: 0 5px 12px #aaa;
}

.icon-place {
    background-image: url('../img/layout/place-icon.svg');
    background-size: 25px auto;
}

.icon-phone {
    background-image: url('../img/layout/phone-icon.svg');
    background-size: 22px auto;
}

.icon-email {
    background-image: url('../img/layout/email-icon.svg');
    background-size: 20px auto;
}

.icon-instagram {
    background-image: url('../img/layout/instagram-icon.svg');
    background-size: 20px auto;
}

.btn-back {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-back img {
    width: 18px;
    margin-right: 10px;
}

ul.breadcrumb {
    padding: 0;
    list-style: none;
    margin-bottom: 30px;
}

ul.breadcrumb li {
    display: inline;
    font-size: 1rem;
}

ul.breadcrumb li+li:before {
    padding: 8px;
    color: var(--color-green);
    content: ">";
}

ul.breadcrumb li a {
    text-decoration: none;
}

ul.breadcrumb li a:hover {
    text-decoration: none;
}

.social-share-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    width: 100%;
    color: #444;
    background: linear-gradient(0deg, #ddd 0%, #fafafa 100%);
    height: 100px;
}

.social-share-bar a {
    display: flex;
    width: 42px;
    height: 42px;
    background: var(--gradient-green-0);
    align-items: center;
    justify-content: center;
    transition: all .2s linear;
    border-radius: 100%;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.25);
}

.social-share-bar a:hover {
    background: var(--gradient-yellow-0);
}

.social-share-bar img {
    width: 21px;
    height: auto;
}

.tabla-articulos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 20px;
    margin-bottom: 35px;
}

.celda-articulo {
    width: 23%;
    min-width: 300px;
    height: 350px;
    background: #f0f0f0;
    border-radius: 10px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: center;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
    transition: all .2s linear;
}

.celda-articulo:hover {
    background: linear-gradient(0deg, #ffe9ad 0%, #fffbf1 100%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .3);
}

.celda-articulo:hover p {
    color: var(--color-green)
}

.celda-articulo:hover .img-container,
.article:hover .img-container {
    box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .3), 0 0 0 4px rgba(209, 200, 165, 0.3);
}

.filters-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 30px 0;
    margin-bottom: 30px;
    font-weight: 500;
    color: #aaa;
    font-size: 17px;
    gap: 30px;
}

.frm-select {
    /* Reset */
    appearance: none;
    border: none;
    outline: 0;
    font-size: 16px;
    width: 270px;
    padding: 10px 15px;
    background: url('../img/layout/caret.svg') no-repeat right 0.8em center / 1.4em,
        linear-gradient(to left, var(--color-green) 3em, #f0f0f0 3em);
    color: var(--color-green);
    border-radius: 5px;
    box-shadow: 0 2px 7px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all .2s linear;
    border: 2px solid #fff;

    &::-ms-expand {
        display: none;
    }

    &:focus {
        outline: none;
    }
}

.frm-select:hover {
    background: url('../img/layout/caret.svg') no-repeat right 0.8em center / 1.4em,
        linear-gradient(to left, var(--color-yellow) 3em, #fff7de 3em);
    border: 2px solid var(--color-green);
}

.frm-select option {
    color: inherit;
    background-color: #f0f0f0;
}

.contact-logo {
    width: 100%;
    max-width: 260px;
    margin-bottom: 50px;
}

.contact-data {
    display: flex;
    justify-content: start;
}

.contact-data .float-7,
.contact-data .float-3 {
    padding-left: 0;
    padding-right: 0;
}

.contact-data .float-3 {
    height: auto;
    min-height: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    line-height: 22px;
}

.contact-item .icon-place,
.contact-item .icon-clock,
.contact-item .icon-phone,
.contact-item .icon-email {
    width: 40px;
    height: 40px;
    background: url('../img/layout/place-icon.svg') center center no-repeat;
    background-size: 38px auto;
    margin-right: 8px;
}

.contact-item .icon-clock {
    background: url('../img/layout/clock-icon.svg') center center no-repeat;
    background-size: 32px auto;
}

.contact-item .icon-phone {
    background: url('../img/layout/phone-icon.svg') center center no-repeat;
    background-size: 31px auto;
}

.contact-item .icon-email {
    background: url('../img/layout/email-icon.svg') center center no-repeat;
    background-size: 28px auto;
}

.contact-social {
    gap: 10px;
}

.contact-social a {
    width: 60px;
    height: 60px;
    background: var(--gradient-green-0);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s linear;
}

.contact-social a:hover {
    background: var(--gradient-yellow-0);
}

.contact-social img {
    width: 23px;
    height: auto;
}

/* Estilos generales para el formulario */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;

}

.form-container .white {
    text-shadow: 0 0 5px #333;
    font-size: 20px;
    line-height: 10px;
}

.form-group {
    margin-bottom: 15px;
}

.data-form {
    display: flex;
    gap: 20px;
}

/* Estilos para los elementos dentro del formulario en pantallas grandes */
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--color-green);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0b73b;
    border-radius: 6px;
    box-sizing: border-box;
    resize: none;
    outline: none;
    transition: all .3s linear;
    color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
    background: #fffeb7;
    box-shadow: 1px 3px 11px #9b6e0d;
}


.form-group .error {
    color: red;
    font-size: 0.875em;
    display: none;
}

.form-group.error input,
.form-group.error textarea {
    border-color: red;
}

.form-group.success input,
.form-group.success textarea {
    border-color: green;
}

.form-group button {
    float: right;
    margin-top: 12px;
    width: 100px;
    transition: all .3s linear;
}

.form-group button:hover {
    box-shadow: 0 0 0 3px #fff, 0 0 13px #805b0b;
}

#form-message {
    margin-top: 15px;
    font-size: 1.1em;
}

#honeypot {
    display: none;
}


#form-message {
    margin-top: 15px;
    font-size: 1.1em;
}

#honeypot {
    display: none;
}

.li::before {
    content: "►";
    color: var(--color-yellow);
    margin-right: 5px;
    font-size: 13px;
    vertical-align: top;
}

.celda-buscador {
    width: 100%;
    display: flex;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #e9e9e9;
    margin-bottom: 10px;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    transition: all .2s linear;
}

.img-buscador {
    max-width: 100px;
    margin: 10px;
    border-radius: 8px;
}

.items-empresa-container {
    gap: 8%;
    width: 100%;
    height: auto;
}

.item-empresa {
    width: 150px;
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.item-empresa-img {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-yellow-0);
    border-radius: 100%;
    border: 8px solid #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, .1);
}

.item-empresa p {
    width: 100%;
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
    color: var(--color-green);
    line-height: 22px;
}

.img-empresa {
    max-width: 200px;
    height: auto;
    opacity: 1;
    transition: all .2s linear;
}

.img-empresa:hover {
    opacity: .7;
}

.img-empresa img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.img-float-right {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

.img-float-left {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}
.lista-empresa li{
    margin: 15px 0;
}
/* Responsive */


@media (max-width: 1300px) {
    .menu-top-icon {
        background: #90a38d;
    }
}

@media (max-width: 900px) {
    .menu-dropdown .dropdown-menu {
        position: static;
        width: 100%;
    }

    .menu-dropdown li {
        text-align: left;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        z-index: 1;
        background: var(--color-green) url('../img/layout/logo-fixed.webp') center 30px no-repeat;
        background-size: 150px auto;
        text-align: center;
    }

    .nav-links.active {
        padding: 150px 30px 30px 30px;
        max-height: 100vh;
    }

    .menu-top {
        display: block;
        text-shadow: none;
    }

    .menu-top:hover {
        color: var(--color-green);
    }

    .home-menu-icon {
        background: transparent;
        display: block;
        width: 100%;
        border-radius: 5px !important;
    }

    .home-menu-icon img {
        margin: auto;
        padding-top: 10px;
    }

    .menu-toggle {
        display: flex;
    }

    .navbar {
        right: 0;
        top: 0;
        width: 100%;
        z-index: 0;
        position: absolute;
    }

    .navbar li {
        width: 100%;
    }

    #search-toggle {
        position: absolute;
        left: 25px;
        top: 8px;
    }

    .search-menu {
        top: 60px;
        left: 20px;
        width: calc(100% - 20px);
        max-width: 350px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .content {
        width: 100%;
        padding: 50px 4%;
    }

    .float-container,
    .contact {
        display: block;
        width: 100%;
    }

    .float-5 {
        margin-bottom: 50px;
    }

    .float-3 {
        height: 300px;
    }

    .data-form,
    .float-3,
    .float-5,
    .float-7 {
        display: block;
        width: 100%;
        flex-grow: 1;
        /* Ambos divs ocupan el 100% del ancho */
    }

    .data-form .float-5 {
        margin-bottom: 0;
    }

    .contact-data .float-3 {
        margin-top: 40px;
    }

    .empresa {
        background-size: 100% auto;
    }

    .filters-container {
        justify-content: center;
    }

    .filters-container p {
        display: inline-block;
        width: 140px;
        text-align: center;
    }

    .contact-data {
        display: block;
        width: 100%;
    }
}

@media (max-width: 700px) {
    .article {
        font-size: 14px !important;
        line-height: 18px !important;
    }

    .footer-section {
        flex-direction: column;
    }

    .footer-section>div {
        padding: 10px 0;
    }

    .empresa {
        background-size: cover;
    }

    .attachments-container {
        display: block;
        float: none;
        width: 100%;
    }

    .img-float-right,
    .img-float-left {
        float: none;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .img-empresa {
        max-width: 80%;
        margin: auto;
        margin-bottom: 30px;
    }
}

/* Animaciones */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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