.servicios-navegacion {
    padding: 60px 20px;
    background: #f7f7f7;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}
  
.servicios-botones {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}
  
.boton-servicio {
  background-color: #d6d6d6;
  color: #444;
  border-radius: 10px;
  padding: 28px 20px;       /* 🔧 aumentado */
  font-weight: 600;
  font-size: 1rem;          /* 🔧 texto más grande */
  cursor: pointer;
  width: 180px;             /* 🔧 más ancho */
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.boton-servicio i {
  display: block;
  font-size: 2.2rem;        /* 🔧 icono más grande */
  margin-bottom: 10px;
}

  
  .boton-servicio:hover,
  .boton-servicio.activo {
    background-color: #e17000;
    color: white;
  }
  
  .boton-servicio i {
    display: block;
    font-size: 2.8rem;
    margin-bottom: 8px;
  }
  
  .servicios-listado {
    max-width: 900px;
    margin: auto;
    background-color: #e17000;
    padding: 20px 30px;
    border-radius: 10px;
    color: white;
    font-weight: 500;
  }
  
  .servicios-listado ul {
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  .servicios-listado ul li {
    margin-bottom: 12px;
  }
  
  /* Animación entrada */
  .animado {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
  }
  
  .animado.activo {
    opacity: 1;
    transform: translateY(0);
  }
  .btn-ver-servicio {
    margin-top: 10px;
    background-color: #ffffff;
    color: #e17000;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .btn-ver-servicio:hover {
    background-color: #ffcc80;
  }
  /* Responsive */
  @media (max-width: 768px) {
    .servicios-botones {
      flex-direction: column;
      align-items: center;
    }
  
  .boton-servicio {
    width: 100%;
    font-size: 0.95rem;
    padding: 20px;
  }

  .boton-servicio i {
    font-size: 1.8rem;
  }
  }

  /* porque */
  /* inicio */
.info-dinamica-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 20px auto 40px; /* 🔽 espacio reducido arriba */
  padding: 20px;
  background-color: #f9f9f9;
}

.info-dinamica-wrapper img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.info-dinamica-texto {
  flex: 1;
  min-width: 280px;
}

.info-dinamica-texto h2 {
  color: #e17000;
  font-size: 2rem;
  margin-bottom: 15px;
}

.info-dinamica-texto p {
  font-size: 1rem;
  color: #444;
}

/* Responsive */
@media (max-width: 768px) {
  .info-dinamica-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .info-dinamica-texto h2 {
    font-size: 1.5rem;
  }

  .info-dinamica-texto p {
    font-size: 0.95rem;
  }
}
/* lineas de procesos de paginas  */

.linea-procesos-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.proceso-paso {
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 340px;
  color: white;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.proceso-paso::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.75), rgba(0,0,0,0.5));
  z-index: 1;
}


.proceso-paso .contenido {
  position: relative;
  z-index: 2;
}

.proceso-paso i {
  font-size: 2.2rem;
  color: #ffcc00;
  margin-bottom: 15px;
  display: block;
}

.proceso-paso h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: bold;
}

.proceso-paso p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.proceso-paso:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

/* Scroll animación */
.proceso-paso.activo {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Responsive */
@media (max-width: 768px) {
  .proceso-paso {
    max-width: 90%;
  }
}
/* Beneficios Claves */
.beneficios-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.beneficios-wrapper h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.beneficios-wrapper p.subtitulo {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #444;
}

.beneficios-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.beneficio-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
  max-width: 280px;
  flex: 1 1 240px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.beneficio-card i {
  font-size: 2.5rem;
  margin-bottom: 15px;
  transition: transform 0.4s ease;
}

.beneficio-card:hover i {
  transform: scale(1.2) rotate(8deg);
}

.beneficio-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.beneficio-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media (max-width: 768px) {
  .beneficio-card {
    max-width: 90%;
  }
}

/* FAQ Dinamico */
.faq-wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
}

.faq-wrapper h2 {
  font-size: 2rem;
  text-align: center;
  font-weight: 700;
  margin-bottom: 40px;
}

.faq-lista {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #f8f8f8;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px;
  background-color: var(--color-seguri, #e17000);
  color: white;
  position: relative;
}

.faq-item[open] summary::after {
  content: \"−\";
}
.faq-item summary::after {
  content: \"+\";
  position: absolute;
  right: 20px;
  font-size: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  padding: 20px;
  color: #333;
  font-size: 0.95rem;
  border-top: 1px solid #ddd;
  background: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-item summary {
    font-size: 1rem;
  }
}

/* LLamado a la accion */
.cta-wrapper {
  background: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRe-c48cP44cKKaXBVRkja338DIUe6l5B-gKX5N8dUaIF-N-LEY4W3lXRqYFxE4dhgs4CQ&usqp=CAU") no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  color: white;
  overflow: hidden;
}

.cta-wrapper::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: auto;
}

.cta-content h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
}

.cta-content p {
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 30px;
}

.cta-content a {
  background-color: #e17000;
  color: white;
  padding: 15px 35px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-content a:hover {
  background-color: #c45e00;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 1.6rem;
  }

  .cta-content a {
    width: 100%;
    display: inline-block;
  }
}

/* comparativa */

.comparativa-wrapper {
  max-width: 1200px;
  margin: 80px auto;
  padding: 60px 20px;
}

.comparativa-wrapper h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.comparativa-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: stretch;
}
.comparativa-card {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 16px rgba(0,0,0,0.08);
  background: #f8f8f8;
  max-width: 100%;
  text-align: center;
}
.comparativa-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  max-height: 280px;
  margin: 0 auto;
}
.comparativa-card .contenido {
  padding: 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.comparativa-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #d35400;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  letter-spacing: 0.3px;
}
.comparativa-card p {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
  color: #333;
  text-shadow: 0.5px 0.5px 1px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .comparativa-card {
    flex: 1 1 90%;
  }
  .comparativa-card img {
    max-height: 220px;
  }
}
/* dinamismo ultima seccion */
  .modulo-sst-dinamico {
    padding: 60px 20px;
    background: #f9f9f9;
    box-sizing: border-box;
    overflow: hidden;
  }

  .modulo-sst-titulo {
    text-align: center;
    font-size: 2rem;
    color: #0d47a1;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
  }

  #modulo-sst-contenedor {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .modulo-sst-card {
    flex: 1 1 300px;
    max-width: 360px;
    background: #c87022;
    border-radius: 14px;
    padding: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .modulo-sst-card:hover {
    transform: scale(1.03);
  }

  .modulo-sst-card img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 15px;
  }

  .modulo-sst-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
  }

  .modulo-sst-card p {
    font-size: 0.95rem;
    color: #f1f1f1;
    line-height: 1.6;
  }

  .modulo-sst-frase {
    font-style: italic;
    font-weight: 400;
    margin-top: auto;
    color: #a2c4ff;
    font-size: 0.9rem;
  }

  @media (max-width: 1024px) {
    .modulo-sst-card {
      max-width: 100%;
      flex: 1 1 45%;
    }
  }

  @media (max-width: 768px) {
    #modulo-sst-contenedor {
      flex-direction: column;
      align-items: center;
    }
    .modulo-sst-card {
      max-width: 100%;
      flex: 1 1 100%;
    }
  }

  /* ultima parte */
   .tabla-wrapper {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
  }

  .tabla-wrapper h2 {
    text-align: center;
    font-size: 2rem;
    color: #0a0aff;
    margin-bottom: 30px;
  }

  .tabla-responsiva {
    width: 100%;
    border-collapse: collapse;
    overflow-x: auto;
    display: block;
  }

  .tabla-responsiva thead {
    background-color: #0a0aff;
    color: #fff;
  }

  .tabla-responsiva th,
  .tabla-responsiva td {
    padding: 12px 18px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 0.95rem;
  }

  .tabla-responsiva tbody tr:nth-child(even) {
    background-color: #f0f0f0;
  }

  .tabla-responsiva tbody tr {
    animation: fadein 0.8s ease-in;
  }

  @keyframes fadein {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @media (max-width: 600px) {
    .tabla-responsiva th,
    .tabla-responsiva td {
      padding: 10px;
      font-size: 0.85rem;
    }
  }