/* TIPOGRAFIAS */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
  
  /* COLORES PRINCIPALES ******************************************************************** */
  :root {
    --color-c1: #fffaea;
    --color-c2: #194465;
    --color-c3: white;
    --color-c4: #fb7602;
    --color-c5: black;
    --color-c6: #063659;
    --color-c7: #f0b237;
  }
  
  * {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
  }
  body {
   /*  height: 100vh; */
    display: flex;
    flex-direction: column;
    font-family: "Roboto", sans-serif;
    font-weight: 400; 
    font-style: normal;
  
  }
  
  /* NAVBAR *********************************************************************************** */
  #nav {
    background-color: var(--color-c3);
  
   
  }
  #logo{
    width: 150px;

  }
#logo img{
  width: 100%;
  object-fit: contain;
  object-position: center;
}
  
  
  
  /* BLOQUE2 ******************************************************************************************* */
  
  #bloque1 {
    width: 100%;
    height: auto;

  }
  
  /* BLOQUE2 ******************************************************************************************* */
  
  #bloque2 {
    width: 100%;
    height: auto;
  }
  
  /* BLOQUE3 ******************************************************************************************* */
  #bloque3 {
    width: 100%;
    height: auto;
  }
  /* BLOQUE4 ******************************************************************************************* */
  #bloque4 {
    width: 100%;
    height: auto;
  }
  
  /*  FORMULARIO ************************************************** */

  
  .containerForm {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--color-c1);
    padding: 20px;
 
 
  }
  #oForm.sin900 input.inputname,
  #oForm.sin900 input.inputmail {
    display: block;
  }
  #oForm input.inputname,
  #oForm input.inputmail {
    display: none;
  }
  
  #oForm.fdh input.inputname,
  #oForm.fdh input.inputmail {
    display: block;
  }
  
  .fdh #oForm input.inputname,
  .fdh #oForm input.inputmail {
    display: block;
  }

  .textForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    background-color: var(--color-c1);
   padding: 20px 10px;
   font-size: 1.5rem;
   font-weight: 500;
   margin: 0px;
   line-height: 1.2;
   text-align: center;
   color:var(--color-c5);
    border-radius: 10px 10px 0px 0px;
  }

  .textCabecera {
    width: 100%;
    height: auto;
    background-color: var(--color-c2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    font-weight: 500;
    font-size:1.3rem;
    margin: 0px;
    line-height: 1.2;
    color: white;
  padding: 10px 0px;
  
  }

  .textCabecera a {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0px;
    line-height: 1.5;
    color: rgb(0, 0, 0);
    text-decoration: none;
  
  }
  .textCabeceraFdh {
    display: none;
  }
  
  .formulario {
    width: 100%;
    height: auto;
 
  }
  #oForm {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    padding: 0px 10px;
   
  }

/*   #oForm .inputname,
  #oForm .inputnum,
  #oForm .inputmail {
    margin-bottom: 10px;
    width: 100%;
    height: 50px;
    padding-left: 10px;
    border: 2px solid #eeeeee !important;
    background-color: #ffffff;
  
  } */
  
  .sinForm {
    display: none;
  }
  
  .botonEnviar {
    color: black;
    margin: 10px auto;
    display: block;
    background-color: var(--color-c3);
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
    border: none;
    width: 100%;
    height: 60px;
    border-radius: 5px;
  }
  .botonEnviar:hover{
   background-color:var(--color-c4);
  }
  form .ssl {
   color:var(--color-c5) !important;
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin: 10px 0;
    font-family: Arial;
  }
  
  .control-checkbox{
    color:var(--color-c5);
  }

  /* CHECK BOX PRIVACIDAD***************************************************** */
  .containerPrivacidad {
    width: 100%;
  }
  .control {
    font-family: arial;
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 3px;
    padding-top: 3px;
    cursor: pointer;
    font-size: 12px;
    line-height: 14px;
    min-height: 30px;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .control input {
    position: absolute;
    z-index: -1;
    opacity: 0;
  }
  .control_indicator {
    position: absolute;
    top: 5px;
    left: 0;
    height: 25px;
    width: 25px;
    background: #e6e6e6;
    border: 1px solid #000000;
    border-radius: 0px;
  }
  .control:hover input ~ .control_indicator,
  .control input:focus ~ .control_indicator {
    background: #cccccc;
  }
  .control input:checked ~ .control_indicator {
    background: #67cd65;
  }
  .control:hover input:not([disabled]):checked ~ .control_indicator,
  .control input:checked:focus ~ .control_indicator {
    background: #0e6647;
  }
  .control input:disabled ~ .control_indicator {
    background: #e6e6e6;
    opacity: 6;
    pointer-events: none;
  }
  .control_indicator:after {
    box-sizing: unset;
    content: "";
    position: absolute;
    display: none;
  }
  .control input:checked ~ .control_indicator:after {
    display: block;
  }
  .control-checkbox a {
    color: var(--color-c5);
  }
  .control-checkbox .control_indicator:after {
    left: 8px;
    top: 5px;
    width: 4px;
    height: 8px;
    border: solid #ffffff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
  }
  .control-checkbox input:disabled ~ .control_indicator:after {
    border-color: #7b7b7b;
  }
  .control-checkbox .control_indicator::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 3.01rem;
    height: 3.01rem;
    margin-left: -0.781rem;
    margin-top: -0.743rem;
    background: #72ed6f;
    border-radius: 3rem;
    opacity: 0.6;
    z-index: 99999;
    transform: scale(0);
  }
  @keyframes s-ripple {
    0% {
      transform: scale(0);
    }
    20% {
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1);
    }
  }
  @keyframes s-ripple-dup {
    0% {
      transform: scale(0);
    }
    30% {
      transform: scale(1);
    }
    60% {
      transform: scale(1);
    }
    100% {
      opacity: 0;
      transform: scale(1);
    }
  }
  .control-checkbox input + .control_indicator::before {
    animation: s-ripple 250ms ease-out;
  }
  .control-checkbox input:checked + .control_indicator::before {
    animation-name: s-ripple-dup;
  }
  
  #tapaForm {
    display: none;
text-align: center;
      padding: 20px;
  }
  .loading {
    margin-top: 10px;
    width: 20%;
  }
  
  /* FOOTER   ******************************************************************** */
  
  #footerContainer {
    background-color: rgb(255, 255, 255);
  }
  #footer {
    padding: 20px 0;
  }
  
  #letras {
    width: 100%;
  }
  
  #letras a {
    text-decoration: none;
    margin: 3px;
    color: rgb(0, 0, 0);
    font-size: 0.8rem;
  }
  
  #footerLogo {
    padding-top: 15px;
    padding-bottom: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
  }

/* FORMULARIO ESTILOS */

.containerForm {
  height: 650px;

box-shadow: 12px -6px 12px rgba(0, 0, 0, 0.25);


}

.informate {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0px;
  line-height: 1.2;
  text-align: center;
  color: var(--color-c2);
  padding-top: 50px;
  padding-bottom: 20px;
}

.selectform {
  border: none;
  border-radius: 5px;
  padding: 5px;
  margin-bottom: 5px;
}

.inputname,
.inputnum,
.inputmail,
.inputnum {
  border: none !important;
  border-radius: 5px !important;
  padding: 5px !important;
  margin-bottom: 5px !important;
}
input::placeholder {
  color: black;
  opacity: 1;
}

.btn-enviar {
  background-color: var(--color-c4);
  color: var(--color-c3);
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
}

form .ssl {
  padding-bottom: 50px;
}

/* TEXTO LEGAL.................... */

#textoLegalPromo {
  font-size: 0.8rem;
  margin: 0px;
  line-height: 1.2;
  color: black;
  padding: 20px 0px;
 
}

@media (max-width: 1450px) {
  .containerForm {
    height: 600px;
    padding: 10px 0px;
  }
  .informate {
    font-size: 1.2rem;
    padding-top: 20px;
  }
  form .ssl {
    padding-bottom: 20px;
  }

  .selectform {
    font-size: 0.9rem;
  }

  input::placeholder {
    font-size: 0.9rem;
  }
}














  
  /* MEDIA QUERIES ************************************************************************************************************** */
  
  @media (min-width: 992px) and (max-width: 1400px) {
    #oForm .inputname,
    #oForm .inputnum,
    #oForm .inputmail {
      margin-bottom: 10px;
      padding: 5px;
      border: 2px solid #ff7900;
      background-color: #ffffff;
    }
  
  
  
    /* MEDIA QUERIES  MOBIL  ****************************************************************************************************** */
  }
  @media (max-width: 1200px) {
    #logo{
      width: 130px;
    
    }
    .menudesplegable1:hover .oculto,
    .menudesplegable2:hover .oculto,
    .menudesplegable3:hover .oculto{
      top:20px;
    }
    .menudesplegable1 .triangulo::after,
     .menudesplegable2 .triangulo::after, 
     .menudesplegable3 .triangulo::after {
      top:15px;
     }
    .links{
      justify-content: start;
    }
    .links li{
      margin-right: 25px;
    }
    
    .links a {
      font-size: 1rem;
    }
    .helpDM {
      display: none !important;
    }
  
.cardparticular{
  flex-direction: column;
  align-items: end;
}
.cardAutonomo1{
  flex-direction: column;
  align-items: end;
}
.telefono .llamagratis {
  margin-right: 0px;
  font-size: 1rem;
  line-height: 1;
  margin: 0px;
}
  .cardAutonomo1 .autonomos{
   padding-right: 0px;
   font-size: 1rem;
   line-height: 1;
   margin: 0px;
  }

    /*     FORMULARIO */
    .inboxForm {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .textForm {
      width: 100%;
      height: auto;
      padding: 20px 10px;
      background-color: var(--color-c6);
      color: var(--color-c1);
    
    }
  
    .formulario {
      width: 80%;
      height: auto;
     
    }

    .cardFormularioMovil{
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .containerForm{
       width: 80%;
       height: auto;
       border-radius: 0px;
       background-color: var(--color-c1);
       padding: 0px;
         box-shadow: none;
    }
   
    .control-checkbox {
      color: var(--color-c5);
  }
    .control-checkbox a {
      color: var(--color-c5);
    }
    form .ssl {
      color:var(--color-c5) !important;
    }
    #textoLegalPromo{
         text-align: center;
     
    }
  }
  @media (min-width: 767px) and (max-width: 990px) {
    /* NAV */
    #logo{
      width: 130px;
    
    }
    .links{
      justify-content: start;
    }
    .links li{
      margin-right: 20px;
    }
    
    .links a {
      font-size: 0.8rem;
    }
    #menu_head .logotipo {
      width: 120px;
    
    }
    #menu_head .logotipoVerde {
      width: 50%;
    
    
    }
  
  #menu_head .multiOfertaLogo{
    width: 120px;
    margin-left: 10px;
  }
    /* FORM */
/*     #oForm .inputname,
    #oForm .inputnum,
    #oForm .inputmail {
      width: 70%;
    } */
    .containerPrivacidad {
      width: 70%;
    }
    .botonEnviar {
      width: 70%;
    }
    .formulario {
      width: 80%;
      height: auto;
    
    }
    .containerForm{
       width: 80%;
    }
    
    /* FOOTER *********************************************************** */
    #footerContainer{
      padding-bottom: 50px;
    }
  }
  
  @media (max-width: 765px) {
    /* NAV */
   
    #logo{
      width: 110px;
    
    }

    
    /* BLOQUE1 ******************************************************************************************* */
  
    .linksOrange {
      display: none;
    }
    #logo {
      margin-bottom: 15px;
    }
  
    #divTelefono {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .telefono {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
    }
    .fixed .telefono {
      border-top: none;
    }
    .telefono .llamagratis {
      display: none;
    }
  
    .telefono .tel900 {
      font-size: 2rem;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    #telPc {
      display: none;
    }
  .cardAutonomo1{
    display: none;
  }
    #telMovil {
      border: none;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 100%;
      background-color: var(--color-c3);

   margin-bottom: 5px;
     
    }

  
    .fixed #telMovil {
      width: 90%;
    }
  
    #telMovil a {
      text-decoration: none;
      font-size: 1.5rem;
      text-align: center;
      color: white;
      margin: 0px;
      line-height: 1;
      font-weight: 600;
    
    }
    #telMovil p {

      font-size: 1rem;
      text-align: center;
      margin: 0px;
      padding: 0px;
      color: white;
      line-height: 1.2;
      padding-top: 5px;
      padding-bottom: 5px;
    
    }
    #telMovil p span {
      font-size: 1.1rem;
      text-align: center;
      margin: 0px;
      padding: 0px;
      line-height: 1.2;
    }
    .cardAutonomo{
      width: 100%;
      background-color: var(--color-c2);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding-top: 5px;
      padding-bottom: 5px;
    }

    .fixed #telMovil .llevarAformulario {
      padding: 5px 0px;
    }
    #telMovil .llevarAformulario {
      font-size: 1.2rem;
      text-align: center;
      margin: 0px;
      line-height: 1.2;
      padding-top: 5px;
      padding-bottom: 5px;
   
    }
  
    .menuLogo {
      width: 40px;
      display: block;
    }
    .cerrarMenu {
      width: 20px;
      display: block;
    }
  
    #navbar {
      background-color: var(--color-c3);
      width: 96%;
      height: 100vh;
      position: fixed;
      top: 0;
      left: 0;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
      z-index: 1000;
      transform: translateX(-100%);
      transition: transform 0.3s ease-in-out;
      border-right: 1px solid grey;
      overflow-y: scroll;
      padding-bottom: 50px;
  
    }
  
  
    #navbar.active {
      transform: translateX(0); /* Muestra el menú al activarlo */
    }
    #navbar .no-scroll {
      transform: translateX(0); /* Muestra el menú al activarlo */
      overflow: hidden;
    }
  
    /* Desactivar scroll cuando el menú está activo */
    body.no-scroll {
      overflow: hidden;
    }
    .logoEmpresa {
      width: 100%;
      display: block;
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 10px;
      padding: 10px;
      background-color: var(--color-c1);
   
    }
    .logoEmpresa .logoNav {
      width: 110px;
      object-fit: contain;
    }
  
    .linksPrincipales {
      display: flex;
      flex-direction: column;
      margin-top: 15px;
    }
  
    .links {
      width: 100%;
      height: 100vh;
      list-style-type: none;
      display: flex;
      flex-direction: column;
      justify-content: start;
      align-items: start;
      margin-top: 10px;
     
  
    }
  
  
    .links a {
      font-size: 1rem;
    }
  
    .links li {
      padding: 10px 0px;
     
    }
    .links li.menudesplegable1 {
      width: 100%;
      margin-bottom: 100px;
    }
    .links li.menudesplegable2 {
      width: 100%;
      margin-bottom: 220px;
    }
  
    .links li.menudesplegable3 {
      width: 100%;
      margin-bottom: 50px;
    }
  
  
    .menudesplegable1 .oculto,
    .menudesplegable2 .oculto,
    .menudesplegable3 .oculto {
   
      display: block;
      margin-top: 20px;
     border:2px solid var(--color-c5);
  
    }
  
    .oculto li {
      margin: 0px;
      width: 100%;
    }
  
    .menudesplegable1 .triangulo::after,
    .menudesplegable2 .triangulo::after, 
    .menudesplegable3 .triangulo::after {
     display: none;
    }
  
    /* SECCION2 */
    .botonEnviar {
      font-size: 1.8rem;
    }
  
    /*  FORMULARIO */
    .textForm {
      width: 100%;
      height: auto;
 
    }
  
    .formulario {
      width: 100%;
      height: auto;
    
    }
    .containerForm{
      width: 100%;
   }


     /* FOOTER *********************************************************** */
     #footerContainer{
      padding-bottom: 50px;
    }
  }
  
  @media (max-width: 320px) {
    .botonEnviar {
      font-size: 1.2rem;
    }
    #telMovil p {
      font-size: 0.9rem;
  
    }
    #telMovil p span {
      font-size: 0.9rem;
  
    }
    #telMovil .llevarAformulario {
      font-size: 1rem;
    }
  }
  