/* TIPOGRAFIAS */

  /* Regular */
@font-face {
    font-family: 'Poppins';
    src: url('../css/tipografia/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
/* Bold */
@font-face {
    font-family: 'Poppins-Bold';
    src: url('../css/tipografia/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
/* Italic */
@font-face {
    font-family: 'Poppins';
    src: url('../css/tipografia/Poppins-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
/* Bold Italic */
@font-face {
    font-family: 'Poppins';
    src: url('../css/tipografia/Poppins-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}
@font-face {
    font-family: 'Poppins-Light';
    src: url('../css/tipografia/Poppins-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins-ExtraLight';
    src: url('../css/tipografia/Poppins-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Poppins-Medium';
    src: url('../css/tipografia/Poppins-Medium.ttf') format('truetype');
    font-style: normal;
}
/* COLORES PRINCIPALES ******************************************************************** */
:root {
    --color-c1: #ffffff;
    --color-c2:#efdcb4;
    --color-c3: #e30c13;
    --color-c4: #dc3545;
    --color-c5: #fdc8c8;
    --color-c6: #c0dfd3;
    --color-c7: #a7d7d9;
  
}
*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
body{

    display: flex;
    flex-direction: column;
    font-family: 'Poppins';
}

/* NAVBAR *********************************************************************************** */
#nav{
    background-color: var(--color-c1);

}
#logo{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0px;
}
.logotipo{
    width: 220px;
}
.menuLogo{
    width: 50px;
    display: none;
}
.cerrarMenu{
    width: 30px;
    display: none;
}
#menu_head{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
   
}
.multiOfertaLogo{
    margin-top: 25px;
    margin-left: 20px;
}
.logoSeguros{
    width: 80%;
}
.linksOrange{
    width: 350px;
    display: flex;
    justify-content: space-around;
    font-size: 1rem;
}
.particulares{
    text-decoration: none;
    color:rgb(251, 123, 2) ;
}
.empresas{
    text-decoration: none;
    color:white ;
}
.empresas:hover{
    text-decoration: none;
    color:rgb(251, 123, 2) ;
}
#divTelefono {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Alinea la cápsula a la derecha */
    align-items: center;
    padding: 20px; /* Espacio opcional respecto al borde de la pantalla */
}

.telefono {
    background-color: black;
    border-radius: 50px; /* Crea el efecto de cápsula redondeada */
    padding: 10px 40px;  /* Espacio interno: arriba/abajo y lados */
    display: flex;
    align-items: center;
    gap: 10px;          
}

.telefono2{
    border-radius: 50px; /* Crea el efecto de cápsula redondeada */
    padding: 10px 40px;  /* Espacio interno: arriba/abajo y lados */
    display: flex;
    align-items: center;
    gap: 10px;          
    background-color: transparent;
}

.telefono .llamagratis {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;   /* Ajustado para que quepa en una línea */
    font-weight: 400;
    text-transform: uppercase;

}

.telefono .tel900 {
    display: flex;
    align-items: center;
    text-align: center;
}

.telefono .tel900 p {
    color: white;
    font-size: 1.8rem;   /* Tamaño del número */
   font-family: 'Poppins-Bold';    /* Negrita para el número */
    margin: 0;           /* Quita márgenes por defecto del <p> */
    white-space: nowrap;
}
#telPc{
    display: block;
}
#telMovil{
    display: none;
}
#containerNavbar{
   background-color: black;
}
#navbar{
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.menudesplegable{
    position: relative;
}
.links{
    width: 100%;
    list-style-type: none;
    display: flex;
    justify-content: start;
    align-items: center;
}
.links a{
    text-decoration: none;
    font-size: 18px;
    color: white !important;
    margin-right: 30px;
}
.links a:hover{
    text-decoration: none;
        color: var(--color-c3) !important;
}
.menudesplegable .triangulo::after {
    content: '';
    position: relative;
    right: -10px;
    top: 20px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 7px solid white;
}
.links li a.activo{
    color: var(--color-c3) !important;
}
.menudesplegable:hover .oculto{
    display: block;
    position: absolute;
    top: 25px;
    left: 0px;
    text-decoration: none;
    list-style-type: none;
    z-index: 2;
}
.oculto {
    display: none;
    position: absolute;
    list-style-type: none;
    padding-left: 10px;
    background-color: var(--color-c2);
}
.oculto li{
    white-space: nowrap;
    margin: 10px;
    width: auto;
}
.logoEmpresa{
    display: none;
}
.linksPrincipales{
    display: flex;
    flex-direction: column;
    display: none;
}
.fixed {
    position: fixed;
    top: 0;
    width: 100vw;
    left: 0;
    margin-left: 0;
    margin-right: 0;
    background-color: var(--color-c1);
    padding-top: 10px;
    z-index: 1;
}
/* BLOQUE1 ******************************************************************************************* */
#bloque1{
    width: 100%;
    height: auto;
    flex: 1;
}
/* 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;
}
 #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;
}
.informate{
    font-size: 2rem;
    margin: 0px;
    line-height: 1;
    font-family: 'Poppins-Bold';
  margin-bottom: 10px;
}
.textForm{
    width: 100%;
    height: auto;
    background-color: white;
  text-align: center;
  font-size: 1rem;
  margin: 0px;
line-height: 1.2;
padding: 15px 10px 10px 10px;
}
.textCabecera{
    width: 100%;
    height: auto;
    background-color:var(--color-c3);
    text-align: start;
    font-size: 1rem;
    margin: 0px;
    line-height: 1.2;
    color:white;
    text-align: center;
    padding: 10px 0px;
}
.textCabecera a{
    font-size: 2rem;
    margin: 0px;
   line-height: 1;
    color:white !important;
    text-decoration: none;
    text-align: center;
    font-family: 'Poppins-Bold';
}
.textCabeceraFdh{
    display: none;
}
.formulario{
    width: 100%;
    height: auto;
    background-color: white;
}
#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: none;
    background-color: #eeeeee;
}
.sinForm{
    display: none;
}
.botonEnviar{
    color: #ffffff;
    display: block;
    background-color:var(--color-c3);
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    width: 100%;
    height: 50px;
    margin-top: 10px;
}
form .ssl {
    color: rgb(0, 0, 0) !important;
    width: 100%;
    text-align: center;
    font-size: 13px;
    margin: 10px 0;
    font-family: Arial;
}
/* 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: #000000;
}
.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{
    padding: 20px;
    display: none;
    background-color: #ffffff
    /*
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    */
}
.loading{
    margin-top:10px;
    width: 20%;
}
/* FOOTER   ******************************************************************** */
#footerContainer{
    background-color:black;
}
#footer{
    padding: 20px 0;
}
#letras{
    width: 100%;
}
#letras a{
    text-decoration: none;
    margin: 3px;
    color:rgb(255, 255, 255) !important;
    font-size: 0.7rem;
}
#containFooterLogo{
    background-color: var(--color-c1);
}
#footerLogo{
    padding-top: 15px;
    padding-bottom: 50px;
    display: flex;
    justify-content: end;
    align-items: center;
}
/* MEDIA QUERIES ************************************************************************************************************** */
@media (min-width: 992px) and (max-width: 1450px) {

    .informate{
        font-size: 1.6rem;
    }
    .textForm{
        font-size: 1.2rem;
    }
}
/* MEDIA QUERIES  MOBIL  ****************************************************************************************************** */
@media (max-width: 1200px) {
    .helpDM{
        display: none  !important;
    }

    .telefono{
        flex-direction: column;
        gap:5px;
    }
   
    .telefono .llamagratis{
        text-align: center;
        padding-right: 0px;
        font-size: 1rem;
    }
    .links a {
        font-size: 18px;
    }
    /*     FORMULARIO */
    .textForm{
        width: 80%;
        height: auto;
        background-color: white;
        margin-top: 20px;
    }
    /* FORM */
    .formulario{
        width: 80%;
        height: auto;
        background-color: white;
    }
    #oForm .inputname,
    #oForm .inputnum,
    #oForm .inputmail {
        width: 70%;
    }
    .containerPrivacidad{
        width: 70%;
    }
    .botonEnviar{
        width: 70%;
    }
    #footerContainer{
        padding-bottom: 50px;
    }
}
@media (min-width: 767px) and (max-width: 990px) {
    #divTelefono{
        padding: 10px;
    }
      .logotipo{
    width: 200px;
  }
    /* NAV */
    .multiOfertaLogo{
    width: 150px;
    margin-top: 0px;
    margin-left: 0px;
  }
    /* FORM */
    #oForm .inputname,
    #oForm .inputnum,
    #oForm .inputmail {
        width: 70%;

    }
    .containerPrivacidad{
        width: 70%;
    }
    .botonEnviar{
        width: 70%;
    }
}
@media (max-width: 765px) {
    /* NAV */
    #nav{
        padding-bottom: 0px;
    }
    .textCabecera{
        display: none;
    }
    .textForm{
        font-size: 18px;
    }
  .logotipo{
    width: 150px;
  }
  .multiOfertaLogo{
    width: 100px;
    margin-left: 25px;
    margin-top: 15px;
  }
    /* BLOQUE1 ******************************************************************************************* */
    .linksOrange{
      display: none;
    }
    #logo{
        padding: 10px;
    }
    #divTelefono{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 5px;
    }
    .telefono {
        display: flex;
        justify-content:center;
        align-items: center;
        width: 100%;
    }
    .telefono2{
    background-color: black;
}
    .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;
    }
    #telMovil{
        border:none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
       
    }
    .fixed #telMovil{
        width: 90%;
    }
    #telMovil a{
     
        text-decoration: none;
        font-size: 2rem;
        text-align: center;
        color: white;
        margin: 0px;
    }
    #telMovil p{
     
        font-size: 0.8rem;
        line-height: 1.2;
        text-align: center;
        margin: 0px;
        padding: 0px;
        color: white;
    }
    #telMovil p span{
      
        font-size: 0.8rem;
        text-align: center;
        margin: 0px;
        padding: 0px;
    }
    .fixed #telMovil .llevarAformulario {
        padding: 5px;
    }
    #telMovil .llevarAformulario{
      
        font-size: 16px;
        text-align: center;
        margin: 0px;
        padding: 5px;
    }
    .menuLogo{
        width: 40px;
        display: block;
    }
    .cerrarMenu{
        width: 20px;
        display: block;
    }
    #navbar {
        background-color:black;
        width: 70%;
        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;
    }
    #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: start;
        margin-top: 10px;
        padding: 10px;
        background-color: var(--color-c1);
    }
    .logoEmpresa .logoNav{
        width: 50%;
        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;
        overflow-y: scroll;
    }
    .links a{
        font-size: 1rem;
    }
    .links li {
        padding: 3px 0px;
        color:white;
        margin-bottom: 10px;
    }
    .links a:hover{
        color: var(--color-c3) !important;
}
    .links li a.activo{
       color: var(--color-c3) !important;
}
    .menudesplegable{
        width: 100%;
    }
    .menudesplegable .oculto {
        margin-left: 25px;
        display: block;
    }
    .oculto{
        padding: 0px;
    }
    .oculto li {
        margin: 0px;
        width: 100%;
    }
    /* SECCION2 */
    .botonEnviar{
        font-size: 1.8rem;
    }
   /*  FORMULARIO */
   .textForm{
        width: 100%;
        height: auto;
        background-color: white;
        margin-top: 20px;
    }
    .formulario{
        width: 100%;
        height: auto;
        background-color: white;
    }
    #oForm .inputname,
    #oForm .inputnum,
    #oForm .inputmail {
        width: 100%;
    }
    .containerPrivacidad{
        width: 100%;
    }
    .botonEnviar{
        width: 100%;
    }
    /* FOOTER *********************************************************** */
}
@media (max-width: 380px) {
    .botonEnviar {
        font-size: 1.2rem;
    }
}
@media (max-width: 350px) {
    .logotipo{
    width: 120px;
  }



}