/* Estilos generales */
body {
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
}

.menu_empresarial_nav {
  background-color: #003E6E;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 100;
  box-sizing: border-box;
}

.menu_empresarial_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.menu_empresarial_logo img {
  height: 28px;
  width: auto;
}

.menu_empresarial_cta-button {
  background-color: #27bcee;
    color: #fff;
    padding: 15px;
    font-size: 1em;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    box-sizing: border-box;
}

.menu_empresarial_cta-button:hover {
  background-color: #1198c5;
}










/*********** PORTADA ***********/

 .portada_empresas_container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 50px 20px;
        box-sizing: border-box;
        background-color: #EBF9FD;
    }
    .portada_empresas_inner {
        width: 70%;
        display: flex;
    }
    .portada_empresas_left {
        width: 70%;
        display: flex;
        align-items: center;
    }
    .portada_empresas_right {
        width: 30%;
        display:flex;
    }









/* Estructura general */

.portada_empresas_left_content {
    display: flex;
    flex-direction: column; /* Los servicios se apilan verticalmente */
    max-width: 1200px;
    width: 100%;
    padding: 5px 40px;
    box-sizing: border-box;
}

/* Títulos y texto */
.portada_empresas_title {
    font-size: 2.5em;
    font-weight: 700;
    color: #003E6E;
    font-family: 'Roboto', sans-serif;
}
.portada_empresas_title span{
    color: #27bcee;
}

.portada_empresas_description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    font-family: 'Roboto', sans-serif;
}

/* Íconos de sector, alineados horizontalmente uno debajo del otro */
.sector_icons {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-left: 15px;
    position: relative;
    margin-left: 40px;
}

.sector_icons::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 25%;
    background-color: #27bcee; /* Primer color */
}

.sector_icons::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    width: 5px;
    height: 25%;
    background-color: #6c63ff; /* Segundo color */
}

.sector_icons div:nth-child(3)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 25%;
    background-color: #003E6E; /* Tercer color */
}

.sector_icons div:nth-child(4)::after {
    content: '';
    position: absolute;
    top: 75%;
    left: 0;
    width: 5px;
    height: 25%;
    background-color: #FF6600; /* Cuarto color */
}









.sector_item {
    display: flex;
    align-items: center; /* Alinea el ícono y el texto en una sola línea */
    width: 100%; /* Asegura que cada servicio ocupe el 100% del ancho */
    padding: 10px 0;
    box-sizing: border-box;
}

.sector_item i {
    font-size: 30px;   
    margin-right: 15px; 
    line-height: 1;    
    width: 30px;        
    height: 30px;       
    display: inline-flex; 
    justify-content: center; 
    align-items: center; 
}
#sector_item_constructora{
    color: #27bcee;
}
#sector_item_universidad{
    color: #6c63ff;
}
#sector_item_municipalidad{
    color: #003E6E;
}
#sector_item_mineria{
    color: #FF6600;
}
.sector_item p {
    font-size: 14px;
    color: #555;
    margin: 0; /* Elimina margen en el texto */
}
.sector_item p span{
    font-weight: bold;
}

/* Botón de llamada a la acción */
.portada_empresas_cta {
    margin-top: 40px;
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(135deg, #27bcee, #0097d9);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 30px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.portada_empresas_cta:hover {
    background: linear-gradient(135deg, #0097d9, #27bcee);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Testimonio */
.portada_empresas_description p {
    font-style: italic;
    font-size: 1em;
    color: #fff;
    margin-bottom: 10px;
    background: #27bcee;
    padding: 5px 15px;
    border-radius: 3px;
    box-sizing: border-box;
    line-height: 28px;
}

.portada_empresas_description p span{
    font-weight: bold;
}

    
    
    
    
    
    
    
/********** PARA EL FORMULARIO ***********/
    .form_cotizar_container {
    width: 100%;
    max-width: 600px;
    margin: auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-sizing: border-box;
}

.form_cotizar_header {
    text-align: center;
    margin-bottom: 20px;
}

.form_cotizar_header h2 {
    font-size: 24px;
    font-weight: bold;
    color: #003E6E;
}

.form_cotizar_header p {
    font-size: 16px;
    color: #666;
}

.form_cotizar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form_cotizar_input_group {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.form_cotizar_input_group label {
    font-weight: bold;
    margin-bottom: 5px;
    font-size: 0.9em;
    color: #003E6E;
}

.form_cotizar_input_group input {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s ease;
}
.form_cotizar_input_group input:focus {
    border: 2px solid #003E6E; 
    outline: none; 
}
.form_cotizar_submit {
    grid-column: span 2;
    text-align: center;
}

.form_cotizar_submit button {
    padding: 15px;
    font-size: 1em;
    background-color: #27bcee;
    border: none;
    color: white;
    cursor: pointer;
    border-radius: 3px;
    font-weight: bold;
}

.form_cotizar_submit button:hover {
    background-color: #1198c5;
}
    
.form_cotizar_input_group.full-width {
    grid-column: span 2; /* Hace que este campo ocupe el espacio de ambas columnas */
}
    
    
    
/****************************FRANJA DE CONVENIOS FRANJA ***********/    
    
    
/* Contenedor principal de la franja */
.franja_marcas_convenio_empresa {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background-color: #d6f5ff; 
    width: 100%; 
    overflow: hidden; 
    box-sizing: border-box;
}

/* Contenedor de ajuste del contenido */
.franja_marcas_convenio_empresa_contenedor {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 100%;
    overflow-x: auto; /* Permite el desplazamiento horizontal si el contenido excede el ancho */
}

/* Contenedor para el texto */
.franja_marcas_convenio_empresa_texto {
    margin-right: 30px;
    font-size: 18px;
    font-weight: bold;
    color: #333; /* Color del texto */
}

/* Contenedor de los logos */
.franja_marcas_convenio_empresa_logos {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
}

/* Cada línea de logos */
.franja_marcas_convenio_empresa_linea {
    display: flex;
    gap: 30px; /* Espaciado entre los logos */
}

/* Estilos para los logos */
.franja_marcas_convenio_empresa_logo {
    height: 35px; /* Tamaño uniforme para los logos */
    object-fit: contain; /* Asegura que las imágenes no se deformen */
}











/*** VIDEO DE PRESENTACION **/

 .video_presentacion_empresas_container {
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
    border-radius: 12px;
    box-sizing: border-box;
  }

  .video_presentacion_empresas_wrapper {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    border-radius: 8px;
  }

  .video_presentacion_empresas_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .video_presentacion_empresas_titulo {
    font-size: 2.2em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
    color: #003E6E;
    padding: 20px;
  }
  
  .video_presentacion_empresas_titulo span{
      color:#27bcee;
  }
  
  
  
  
  
  
  
  
  /*** para la seccion de servicios ****/
  
  /*** PARA LOS SERVICIOS DETALLADOS **/

/* Div principal */
.servicios-principal {
    
    background: linear-gradient(to bottom, #f0f0f0 50%, #fff 50%); /* Fondo con 50% color y 50% blanco */
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Div para el contenido ajustable */
.servicios-contenido {
    max-width: 1200px; /* Ancho recomendado */
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
}



/* Categorías de servicios (íconos) */
.categorias {
    display: flex;
    justify-content: space-around;
}

/* Estilos generales para las categorías */
.categoria-item {
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
    border-radius: 5px 5px 0 0;
}

.categoria-item i {
    font-size: 40px;
    color: #27bcee; /* Color inicial opaco */
    transition: all 0.3s ease;
}

.categoria-item p {
    font-size: 1em;
    color: #27bcee; /* Color de texto también opaco */
    transition: all 0.3s ease;
    font-weight: bold;
}

/* Ítem activo */
.categoria-item.active {
    opacity: 1; /* Ítem activo completamente visible */
    background: #27bcee;
}

.categoria-item.active i {
    color: #fff; /* Color principal en los íconos cuando están activos */
}

.categoria-item.active p {
    color: #fff; /* Color principal en el texto cuando está activo */
}

/* Hover en los ítems opacos */
.categoria-item:hover {
    opacity: 0.8;
}




/* Panel de servicio destacado */
.panel-destacado {
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 2px solid #27bcee;
    box-sizing: border-box;
}



/* Contenedor principal del servicio */
.servicio-contenido {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  border-radius: 10px;
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

.servicio-texto {
  flex: 1;
  margin-right: 40px;
}

.servicio-texto h2 {
  font-size: 32px;
  color: #003E6E; /* Color principal */
  margin-bottom: 20px;
}

.servicio-texto p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.servicio-texto .icon-list {
  margin-bottom: 30px;
}

.icon-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 1em;
  color: #333;
}

.icon-item i {
  font-size: 20px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #27bcee;
}


/* Botón con degradado */
.btn-cta {
    padding: 1em;
    background: #27bcee;
    color: white;
    border: none;
    border-radius: 3px;
    font-size: 1em;
    cursor: pointer;
    transition: background 0.3s ease;
    box-sizing: border-box;
    font-weight: bold;
    text-decoration: none;
    display: block;
    text-align: center;
}

.btn-cta:hover {
  background: #1198c5; /* Inversión del degradado en hover */
}








/* Sección de gráficos */
.servicio-grafico {
    flex: 1;
    text-align: right;
}

.servicio-grafico img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}



/*** metodologia ***/

.metodologia_empresas_timeline_section {
  background-color: #f5f5f5;
  padding: 60px 20px;
  box-sizing: border-box;
}

.metodologia_empresas_timeline_container {
  max-width: 1200px;
  margin: auto;
}

.metodologia_empresas_titulo {
  text-align: center;
  font-size: 32px;
  color: #003E6E;
  margin-bottom: 60px;
}

.metodologia_empresas_timeline_scroll {
  
  padding-bottom: 20px;
}

.metodologia_empresas_timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 40px;
  min-width: 1000px;
}

.metodologia_empresas_step {
  background: #fff;
  padding: 20px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  position: relative;
  flex: 1;
  min-width: 180px;
}

.metodologia_empresas_step::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -20px;
  width: 40px;
  height: 2px;
  background-image: linear-gradient(to right, #27bcee 50%, transparent 0%);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  z-index: 1;
}

.metodologia_empresas_step:last-child::after {
  content: none;
}

.metodologia_empresas_icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background:  #27bcee;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}

.metodologia_empresas_step:hover .metodologia_empresas_icon {
  transform: scale(1.1);
}

.metodologia_empresas_step h3 {
  font-size: 18px;
  color: #003E6E;
  margin-bottom: 10px;
}

.metodologia_empresas_step p {
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  margin: 0;
}




/** quienes somos **/

.quienes_somos_empresas_section {
  background-color: #f9f9f9;
  padding: 60px 20px;
  box-sizing: border-box;
}

.quienes_somos_empresas_container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.quienes_somos_empresas_column {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
}

.quienes_somos_empresas_titulo,
.quienes_somos_empresas_subtitulo {
  font-size: 24px;
  color: #003E6E;
  margin-bottom: 20px;
}

.quienes_somos_empresas_descripcion {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.quienes_somos_empresas_marca_item,
.quienes_somos_empresas_ubicacion_item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  background: #f1f9fd;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.quienes_somos_empresas_marca_item:hover,
.quienes_somos_empresas_ubicacion_item:hover {
    
  /*transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

.quienes_somos_empresas_logo,
.quienes_somos_empresas_bandera {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  object-fit: contain;
}

.quienes_somos_empresas_marca_item p,
.quienes_somos_empresas_ubicacion_item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #444;
}

.quienes_somos_empresas_ruc {
  font-size: 13px;
  color: #777;
}




/************** CERTIFICACION CONVENIOS **/

.certificacion_empresas_section {
  background: #f9f9f9;
  padding: 60px 20px;
  box-sizing: border-box;
}

.certificacion_empresas_container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.certificacion_empresas_titulo {
  font-size: 28px;
  color: #003E6E;
  margin-bottom: 20px;
}

.certificacion_empresas_texto {
  font-size: 1em;
  color: #003E6E;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 27px;
}
.certificacion_empresas_texto span{
    font-weight: bold;
}

.certificacion_empresas_logos {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
}

.certificacion_empresas_logo_card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  width: 180px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  min-height: 120px; /* puedes ajustar según tus necesidades */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Esto centra verticalmente el contenido */
  text-align: center;
}

.certificacion_empresas_logo_card img {
  height: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

#certicacion_empresas_autodesk{
    height: 33px;
}
#certicacion_empresas_drea{
    height: 27px;
}

.certificacion_empresas_logo_card p {
  font-size: 14px;
  color: #003E6E;
  margin: 0;
}



  



/*** para llamada de accion **/

.cta_empresas_section {
  background-color: #27bcee;
  padding: 60px 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.cta_empresas_container {
  max-width: 800px;
  margin: auto;
  color: #fff;
}

.cta_empresas_texto {
  font-size: 1.8em;
  font-weight: 500;
  margin-bottom: 25px;
 line-height: 40px;
}
.cta_empresas_texto span{
    color:#003E6E;
}

.cta_empresas_boton {
  background-color: #003E6E;
  color: #fff;
  padding: 15px;
  border-radius: 3px;
  font-size: 1em;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
  font-weight: bold;
  border:2px solid #003E6E;
}

.cta_empresas_boton:hover {
  background-color: #27bcee;
}









/*********** preguntas frecuents **/
.faq_empresas_section {
  max-width: 900px;
  margin: 60px auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.faq_empresas_titulo {
  font-size: 28px;
  color: #003E6E;
  text-align: center;
  margin-bottom: 30px;
}

.faq_empresas_item {
  
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  background: #fff;
    margin-top: 10px;
    border-radius: 3px;
}

.faq_empresas_pregunta {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: bold;
  padding: 20px;
  cursor: pointer;
  color: #003E6E;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

.faq_empresas_icon {
  font-size: 22px;
  font-weight: normal;
  transition: transform 0.3s ease;
  color: #27bcee;
}

.faq_empresas_item.active .faq_empresas_icon {
  transform: rotate(180deg);
  content: "−";
}

.faq_empresas_item.active .faq_empresas_pregunta {
  background-color: #f0f8ff;
}

.faq_empresas_respuesta {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease, padding 0.4s ease;
  background: #f9f9f9;
  padding: 0 15px;
}

.faq_empresas_item.active .faq_empresas_respuesta {
  max-height: 500px;
  padding: 15px;
  background: #f0f8ff;
}

.faq_empresas_respuesta p {
  margin: 0;
  font-size: 1em;
  color: #333;
  line-height: 26px;
}








/************ footer **/


.footer_empresas_wrapper {
  background-color: #003E6E;
  color: #ffffff;
}

.footer_empresas_main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 20px;
  max-width: 1300px;
  margin: auto;
  gap: 30px;
  box-sizing: border-box;
}

.footer_empresas_column {
  flex: 1 1 150px;
}

.footer_empresas_column h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #27bcee;
}

.footer_empresas_column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer_empresas_column li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer_empresas_column a {
  color: #ffffff;
  text-decoration: none;
}

.footer_empresas_column a:hover {
  color: #27bcee;
}

.footer_empresas_bottom {
  background-color: #002b4a;
  
}
.footer_empresas_bottom_content{
    display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 30px 20px;
  gap: 20px;
    width: 80%;
    margin:auto;
}

.footer_empresas_social {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer_empresas_social a {
  color: white;
  font-size: 20px;
  transition: transform 0.3s ease;
}

.footer_empresas_social a:hover {
  transform: scale(1.2);
  color: #27bcee;
}

.footer_empresas_paises {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.footer_empresas_pais {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.footer_empresas_pais img {
  width: 24px;
  height: 16px;
  object-fit: contain;
  border-radius: 2px;
}

.footer_empresas_verificacion h5 {
  margin: 0 0 10px;
  font-size: 15px;
}

.footer_empresas_verificacion form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer_empresas_verificacion input {
  padding: 8px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.footer_empresas_verificacion button {
  background-color: #27bcee;
  color: #003E6E;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.footer_empresas_legal {
  text-align: center;
  padding: 15px;
  background-color: #001f33;
  font-size: 13px;
  color: #ccc;
}







/*** para aviso despues de enviar formulario **/

/* Fondo oscuro full screen */
#aviso_empresas_exito {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.6); /* fondo oscuro semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease;
    z-index: 10000;
    overflow: hidden;
}

/* Mostrar popup */
.aviso_empresas_exito_visible {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Contenido centrado estilo tarjeta */
.aviso_empresas_contenido {
    background: #003E6E;
    padding: 25px 30px;
    border-radius: 8px;
    color: #27bcee;
    max-width: 400px;
    width: 90%;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    transition: transform 0.4s ease;
    text-align: center;
    font-size: 0.9em;
}
.aviso_empresas_contenido p span{
        font-size: 1.4em;
    color: #fff;
    font-weight: bold;
}

/* Botón cerrar */
#aviso_empresas_cerrar {
    position: absolute;
    top: 10px;
    right: 12px;
    background: transparent;
    border: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
    font-weight: bold;
    line-height: 1;
}

/* Opcional: animación suave de aparición para contenido */
.aviso_empresas_exito_visible .aviso_empresas_contenido {
    transform: translateY(0);
}

/* Cuando se oculta, opcional para animar salida */
#aviso_empresas_exito:not(.aviso_empresas_exito_visible) .aviso_empresas_contenido {
    transform: translateY(-20px);
}

/* Desactivar scroll en body cuando el popup está visible (añadir o quitar esta clase en body con JS) */
body.aviso_empresas_no_scroll {
    overflow: hidden;
}






/** para icono whatsapp **/

.whatsapp-icon {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            cursor: pointer;
        }

        .whatsapp-icon img {
            width: 50px;
            height: 50px;
        }

        .whatsapp-notification {
            position: absolute;
            top: -5px;
            right: -5px;
            background-color: red;
            color: white;
            border-radius: 50%;
            width: 20px;
            height: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }










/************* PARA RESPONSIVE **********/

@media (max-width: 768px) {
    
    
    /** para el header **/
    
  .menu_empresarial_container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .menu_empresarial_logo img {
    height: 24px;
  }
  .menu_empresarial_cotizacion{
        margin-top: 10px;
        margin-bottom: 7px;
  }

  .menu_empresarial_cta-button {
    width: 100%;
    max-width: 280px;
    text-align: center;
    padding: 14px;
    font-size: 1em;
  }
    
    
    
    
/* PORTADA */
  .portada_empresas_container {
    flex-direction: column;
    align-items: center;
    padding: 30px 15px;
  }

  .portada_empresas_inner {
    flex-direction: column;
    width: 100%;
  }

  .portada_empresas_left,
  .portada_empresas_right {
    width: 100%;
    justify-content: center;
  }

  .portada_empresas_left_content {
    padding: 10px 20px;
    align-items: center;
  }

  .portada_empresas_title {
    
  }

  .sector_icons {
    margin-left: 0;
    align-items: center;
  }

  .sector_item {
    justify-content: center;
  }

  .portada_empresas_cta {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
  }

  /* FORMULARIO */
  .form_cotizar {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }

  .form_cotizar_input_group,
  .form_cotizar_input_group.full-width {
    width: 100%;
  }

  .form_cotizar_submit button {
    width: 100%;
    font-size: 16px;
  }

  .form_cotizar_header h2 {
    font-size: 22px;
  }

  .form_cotizar_header p {
    
  }
    
    
/** para franja **/

.franja_marcas_convenio_empresa {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 15px;
    overflow: visible;
  }

  .franja_marcas_convenio_empresa_contenedor {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    overflow: visible;
  }

  .franja_marcas_convenio_empresa_texto {
    margin-right: 0;
    margin-bottom: 15px;
    text-align: center;
    width: 100%;
  }

  .franja_marcas_convenio_empresa_logos {
    overflow-x: auto;
    display: flex;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    width: 100%;
  }

  .franja_marcas_convenio_empresa_logo {
    height: 35px;
    flex-shrink: 0;
    scroll-snap-align: center;
  }

  .franja_marcas_convenio_empresa_linea {
    flex-wrap: nowrap;
  }






    
  /** para los servicios **/  
  .categorias {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 0;
    gap: 10px; /* espacio entre ítems */
  }

  .categoria-item {
        flex: 0 0 70%;
        scroll-snap-align: center;
        margin: 0 10px;
        box-sizing: border-box;
        border-radius: 3px;
        background-color: #f9f9f9;
        border-left: 4px solid #27bcee;;
  }
  
  .servicio-contenido{
      padding:0;
  }
  .servicio-texto{
    margin-right: 0px;
  }
  .servicio-grafico{
      display: none;
  }

  .categoria-item i {
    font-size: 32px;
  }

  .categoria-item p {
    font-size: 1em;
  }

  /* Opcional: ocultar scrollbars en algunos navegadores */
  .categorias::-webkit-scrollbar {
    display: none;
  }

  .categorias {
    -ms-overflow-style: none;  /* IE y Edge */
    scrollbar-width: none;     /* Firefox */
  }
  
  
  
  .icon-item i {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }
  
  
 /** metodologia **/
 
  .metodologia_empresas_timeline_scroll{
        overflow-x: auto;
    }
  .metodologia_empresas_timeline {
    min-width: 900px;
  }

  .metodologia_empresas_step {
    min-width: 240px;
  }

  .metodologia_empresas_titulo {
    font-size: 26px;
  }
  
  
  /***** CERTIFICAICON **/
  
  .certificacion_empresas_logo_card,
  .certificacion_empresas_cert_card {
    width: 100%;
  }
  
  
  /*** QUIENES SOMOS **/
  
  .quienes_somos_empresas_container {
    flex-direction: column;
  }
  
  
  /** cta empresa **/
  
  .cta_empresas_texto {
  }
  .cta_empresas_boton {
    width: 100%;
    padding: 14px 0;
  }
  
  
  
  /** footer **/
  
 .footer_empresas_main {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    text-align: center;
  }

  .footer_empresas_column {
    width: 100%;
    max-width: 300px;
    margin-bottom: 25px;
  }

  .footer_empresas_column h4 {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer_empresas_column ul {
    padding-left: 0;
  }

  .footer_empresas_column li {
    font-size: 14px;
  }

  /* Footer inferior */
  .footer_empresas_bottom_content {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .footer_empresas_social {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer_empresas_paises {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
 .footer_empresas_pais span{
     display:none;
 }
  .footer_empresas_verificacion {
    width: 100%;
    max-width: 300px;
  }

  .footer_empresas_verificacion h5 {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .footer_empresas_verificacion form {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .footer_empresas_verificacion input {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
  }

  .footer_empresas_verificacion button {
    width: 100%;
    font-size: 14px;
    padding: 10px;
  }

  .footer_empresas_legal {
    font-size: 12px;
    padding: 15px;
    text-align: center;
  }
  
  
  
  
  
  
  /** AVISO POP UP PARA ENVIO DE FORMULARIO */
  
  .aviso_empresas_contenido{
      width:70%;
  }
  
  
  
  
  
  
  
  
  
  
}





