/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/*listado atributos*/
.listado-atributosprod .elementor-widget-container{
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 columnas = 33.3% cada una */
  gap: 16px; /* separaciones opcionales */
}
.listado-atributosprod .elementor-widget-container .atributo-con-nombre{
  display: flex;
  justify-content: start;
}
.valor-icono{
    padding-left: 1rem;
    margin-top: -2.5px;
    color: #0a8781;
}
.enlace-descarga-producto{
    border: 2px solid #000 !important;
    color: #000 !important;
    font-family: "Poppins", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 24px;
    margin-right: 1rem !important;
    transition-duration: .3s;
    transition-property: transform;
    background: #FFFFFF;
}
.enlace-descarga-producto:last-child{
  margin-right: 0px !important;
}
.enlace-descarga-producto:hover {
  transform: scale(1.1);
}
.contacto-cesped form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contacto-cesped form .form-field {
  flex: 1 1 calc(50% - 10px); /* 2 columnas */
  box-sizing: border-box;
}
.contacto-cesped form .form-field p{
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinea el contenido abajo */
    height: 100%; /* Asegura que ocupe la misma altura que sus hermanos */
}
.contacto-cesped form .form-field.full-width p{
    display: block;
}
.contacto-cesped form .form-field input{
    margin-bottom: 0px !important;
}
/* Para campos como textarea o checkbox que deben ocupar toda la fila */
.contacto-cesped .form-field textarea,
.contacto-cesped .form-field input[type="checkbox"],
.contacto-cesped .form-field input[type="submit"],
.contacto-cesped .form-field .wpcf7-acceptance {
  width: 100%;
}
.contacto-cesped .form-field.full-width {
  flex: 1 1 100%;
}
.contacto-cesped textarea{
    height: 80px !important; /* Cambia el valor según lo que necesites */
    min-height: unset !important;
    padding: 8px !important;
    resize: vertical !important; /* Puedes poner 'none' si no quieres que se pueda redimensionar */
    margin-bottom: 0px !important;
}
.contacto-cesped a{
    color: #000 !important;
    text-decoration: underline !important;
}
.wpcf7-list-item {
  display: inline-block !important;
  margin: 0 0 0 0em !important;
}
.contacto-cesped .wpcf7-submit{
    margin-top: 1rem !important;
}
/*----- BANNER COOKIES -----*/
html.show--consent .btnpref,
html.show--preferences .btnpref {
    display: none;
}

.btnpref {
    position: fixed;
    z-index: 99999999999;
    bottom: 15px;
    left: 15px;
    max-width: 72px;
    font-size: 14px;
    padding: 5px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 1px -1px 1px 0px rgba(0, 0, 0, 0.3);
}

.btnpref img {
    max-width: 40px;
    transition: transform 0.3s ease-in-out;
    display: block;
    margin: auto;
}

.btnpref img:hover {
    transform: scale(1.1);
    animation: bounce 0.5s ease;
}

/*animacion efecto rebote*/
@keyframes bounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.2);
    }

    50% {
        transform: scale(1);
    }

    70% {
        transform: scale(1.1);
    }

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

.btnpref:hover {
    cursor: pointer;
}


@media(max-width: 980px) {

    /*--Banner--Cookies--*/
    .btnpref {
        bottom: 69px !important;
        left: 0px;
        max-width: 180px;
        border: none !important;
        border-radius: 0px 8px 0px 0px !important;
        border-bottom-left-radius: 0px !important;
        border-bottom-right-radius: 0px !important;
    }

    .btnpref img {
        max-width: 14px !important;
    }
}