/* ocultar y mostrar los botones en funcion del dispositivo*/
@media screen and (min-width: 500px) {
.desktop {display: inline;}
.movil {display: none;}
    }

@media screen and (max-width: 499px) {
    #header {
        padding-inline: 1em !important;
    }
.desktop {display: none;}
.movil {display: inline;}
    }

.boton {
    background-color: white;
    border: 1px solid #328dca;
    border-radius: 0px;
    color: #328dca;
    font-weight: 300;
    text-transform: none !important;
    -webkit-transition: 200ms ease-in;
    transition: 200ms ease-in;
}

.boton:hover {
    background-color: #328dca;
    color:#4d4d4d;
}

.contener-cta-mkt {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}


/*************************** Formulario **********************************/ 
.input-form {
    border-radius: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid white !important;
    width: 100% !important;
    color: white !important;
}

.input-form ::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 1) !important;
}

.input-form ::-moz-placeholder {
    color: rgba(255, 255, 255, 1) !important;
}

.input-form :-ms-input-placeholder {
    color: rgba(255, 255, 255, 1) !important;
}

.input-form ::-ms-input-placeholder {
    color: rgba(255, 255, 255, 1) !important;
}

.input-form ::placeholder {
    color: rgba(255, 255, 255, 1) !important;
}

/************Footer**********************/

/* Fondo y estructura del footer */
#footerwrap { 
  background: #DADBDA;            /* color de fondo */
  padding: 28px 0 36px;
  border-top: 1px solid #ccc;
}

#footer {
  text-align: center;
  font-family: inherit;
}

/* Texto general */
#footer p {
  margin: 6px 0;
  color: #444444;                 /* texto principal */
  font-size: 13px;
  line-height: 1.6;
}

/* Enlaces: mismo color que texto, azul oscuro al pasar */
#footer a {
  color: #444444;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

#footer a:hover {
  color: #003788;                 /* azul hover */
}

/* Negritas */
#footer strong {
  font-weight: 600;
  color: #444444;
}

/* Separadores "·" entre enlaces */
#footer p a + a::before {
  content: " · ";
  padding: 0 .25em;
  color: #777;
}

/* Iconos sociales (Themify icons) */
#footer i[class^="ti-"],
#footer i[class*=" ti-"] {
  font-size: 16px;
  display: inline-block;
  margin: 6px 8px 0;
  color: #444444;
  -webkit-transition: color 0.2s ease, -webkit-transform 0.15s ease;
  transition: color 0.2s ease, -webkit-transform 0.15s ease;
  transition: color 0.2s ease, transform 0.15s ease;
  transition: color 0.2s ease, transform 0.15s ease, -webkit-transform 0.15s ease;
}

#footer i:hover {
  color: #003788;                 /* mismo azul que los enlaces al pasar */
  -webkit-transform: translateY(-1px);
      -ms-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* Ajustes visuales */
#footer p:nth-of-type(1) {
  font-size: 18px;
  color: #444444;
}

#footer p:nth-of-type(2) {
  color: #444444;
  font-size: 12px;
}

/* Responsivo */
@media (max-width: 680px) {
  #footer p, #footer a {
    font-size: 12px;
  }
}




/**************** Header ****************************/ 
#header {
    max-width: none !important;
    width: 100%;
    padding-inline: clamp(1em, 5vw + 0.5em, 5em) !important;
}

.navbar-wrapper{
    height: 68.11px !important;
}



/***************** Carrousel ********************/

.tf_carousel_nav_wrap.carousel-nav-wrap.tf_w.tf_flx {
    -webkit-box-pack: end !important;
    -webkit-justify-content: end !important;
        -ms-flex-pack: end !important;
            justify-content: end !important;
}

/**********Recaptcha ocultar*****************/
/* Mover el reCAPTCHA a una posición más discreta */
.grecaptcha-badge {
    bottom: 10px !important;
    right: 10px !important;
    opacity: 0; /* lo hace semitransparente */
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.grecaptcha-badge:hover {
    opacity: 1;
}


.img-comp-container{
  position: relative;
  max-width: 100%;
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
  aspect-ratio: 3 / 2; /* así nunca queda a altura 0 */
}


