/* ===========================================
   _elementos.css
   Estilos exclusivos para ELEMENTOS-GASEX
   Estructura y secciones asociadas al producto individual.
=========================================== */

/* > ELEMENTOS-GASEX
  ° ESTRUCTURA HEADER
   * SECCION: TENEMOS-TODO
   * SECCIÓN: CABECERA-ELEMENTOS
   * SECCIÓN: DETALLE-1
   * SECCIÓN: DETALLE-2
   * SECCIÓN: DETALLE-3
   * SECCIÓN: DETALLE-4
   * SECCIÓN: SEPARADOR
   * SECCIÓN: DETALLE-5
   * SECCIÓN: SEPARADOR
   * SECCION: COMPARADOR
   * SECCIÓN: SEPARADOR
   * SECCIÓN: APLICACIONES
   * SECCIÓN: EJEMPLOS-PRACTICOS
   * SECCIÓN: DETALLE-6
   * SECCION: OPINIONES
   * SECCIÓN: SECCION-IMAGENES-ELEMENTOS
   * SECCIÓN: INFORMACION-RELEVANTE
   * SECCION: CARRUSEL-BANNER
   * SECCIÓN: DETALLE-7
   * SECCIÓN: DETALLE-8
   * SECCION: PRODUCTOS-RELACIONADOS
  ° SECCION: FOOTER */


    /* ================================
SECCION: TENEMOS-TODO
================================== */

/* ================================
SECCION: CABECERA-ELEMENTOS
================================== */                           
.cabecera-elemento {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.cabecera-bg {
  /* background-image: url('img/banner-argon-2.0-min 1.png'); */
  background-size: cover;
  background-position: center;
  filter: brightness(0.6);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 400px; /* Mantiene la imagen como fondo visible */
  z-index: 1;
}




.titulo-imagen{
    display: flex;
}

.fa-download {
    color: white;
}

/* ================================
SECCION: SECCIÓN: DETALLE-1
================================== */
/* 
.detalle-detalle {
    padding: 2rem 0rem;
}

.detalle-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 2rem;
  padding: 0 1rem;
  flex-wrap: wrap;
}

.detalle-texto {
  flex: 1 1 60%;
}

.detalle-texto h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.detalle-texto p {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}

.tabs {
  display: flex;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #ccc;
  margin: 0 0 1.5rem 0;
}

.tabs li {
  list-style: none;
  cursor: pointer;
  font-weight: 500;
  color: #1a1a1a;
  padding: 0.5rem 0.7rem;
  transition: border 0.2s, color 0.2s;
  border-bottom: 3px solid transparent;
}

.tabs li.active {
  border-bottom: 3px solid #1C70B8;
  color: #1C70B8;
  font-weight: 700;
}

.tab-contents {
  margin-top: 0.5rem;
  min-height: 250px;
}

.tab-pane {
  display: none;
  animation: fadeIn 0.2s;
}
.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0;}
  to { opacity: 1;}
}



.detalle-imagen {
  position: relative;
  flex: 1 1 35%;
  text-align: right;
}

.detalle-imagen img {
  max-width: 100%;
  height: 250px;
  position: relative;
  top: 7rem;
}

.ionizacion-label {
  position: absolute;
  top: 3rem;
  right: 0;
  background-color: #1c244b;
  color: #fff;
  font-weight: 500;
  font-size: 1.2rem;
  padding: 0.4rem 1rem;
  border-radius: 4px;
} */

/* ================================
SECCION: SECCIÓN: DETALLE-2
================================== */
.detalle-2 {
  padding: 50px 40px;
  background: #D9D9D9;
}

.detalle-2 h2 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 30px;
  color: #1C244B;
}

.caracteristicas-d2 {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.caracteristica {
  flex: 1;
  min-width: 250px;
  background-color: transparent;
  text-align: center;
}

.numero {
  background-color: #1C244B;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  margin: 0 auto 10px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}



hr {
  border: none;
  border-top: 2px solid #1C244B;
  margin: 40px 0;
}

.configuracion {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.config-img img {
  max-width: 250px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

.config-texto {
  flex: 1;
}

.config-texto h3 {
  color: #1C244B;
  font-size: 20px;
  margin-bottom: 10px;
}

.config-texto p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.orbital-container {
  position: relative;
  width: 500px;
  height: 500px;
  margin: -5rem auto;
}


.nucleus {
  position: absolute;
  width: 80px;
  height: 80px;
  background-color: #4b0082;
  color: white;
  font-weight: bold;
  font-size: 24px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 80px;
  text-align: center;
}

.orbit {
  position: absolute;
  border: 2px solid #000000;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit1 {
  width: 140px;
  height: 140px;
  animation: rotate 8s linear infinite;
}

.orbit2 {
  width: 240px;
  height: 240px;
  animation: rotate 12s linear infinite reverse;
}

.orbit3 {
  width: 340px;
  height: 340px;
  animation: rotate 16s linear infinite;
}

.electron {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  /* Centrar imagen dentro */
  display: flex;
  justify-content: center;
  align-items: center;
}

.electron img {
  width: 22px;
  height: 22px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.electron:hover img {
  filter: brightness(1.8) drop-shadow(0 0 5px #00aaff);
  transform: scale(1.2);
}

.orbit1 .electron {
  transform: rotate(var(--angle)) translateY(calc(-55px + 15px));
}

.orbit2 .electron {
  /* transform-origin: center -120px; */
  transform: rotate(var(--angle)) translateY(calc(-105px + 15px));
}

.orbit3 .electron {
  /* transform-origin: center -170px; */
  transform: rotate(var(--angle)) translateY(calc(-155px + 15px));
}

/* .orbit1 .electron:nth-child(1) { transform: rotate(-10deg) translateY(-85px); }
.orbit1 .electron:nth-child(2) { transform: rotate(195deg) translateY(-55px); }

.orbit2 .electron:nth-child(1) { transform: rotate(-5deg) translateY(-135px); }
.orbit2 .electron:nth-child(2) { transform: rotate(45deg) translateY(-120px); }
.orbit2 .electron:nth-child(3) { transform: rotate(90deg) translateY(-105px); }
.orbit2 .electron:nth-child(4) { transform: rotate(135deg) translateY(-100px); }
.orbit2 .electron:nth-child(5) { transform: rotate(188deg) translateY(-105px); }
.orbit2 .electron:nth-child(6) { transform: rotate(225deg) translateY(-120px); }
.orbit2 .electron:nth-child(7) { transform: rotate(270deg) translateY(-135px); }
.orbit2 .electron:nth-child(8) { transform: rotate(315deg) translateY(-140px); }

.orbit3 .electron:nth-child(1) { transform: rotate(-4deg) translateY(-185px); }
.orbit3 .electron:nth-child(2) { transform: rotate(45deg) translateY(-170px); }
.orbit3 .electron:nth-child(3) { transform: rotate(90deg) translateY(-155px); }
.orbit3 .electron:nth-child(4) { transform: rotate(135deg) translateY(-150px); }
.orbit3 .electron:nth-child(5) { transform: rotate(186deg) translateY(-155px); }
.orbit3 .electron:nth-child(6) { transform: rotate(225deg) translateY(-170px); }
.orbit3 .electron:nth-child(7) { transform: rotate(270deg) translateY(-185px); }
.orbit3 .electron:nth-child(8) { transform: rotate(315deg) translateY(-190px); } */

.electron img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  transform: rotate(-45deg); /* contrarresta la rotación */
}

@keyframes rotate {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.electron {
    position: absolute;
    width: 30px;
    height: 30px;
    background-color: #0172BF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center;
    overflow: hidden;
}

.electron img {
    width: 60%;
    height: 60%;
    object-fit: contain;
    pointer-events: none;
}























/* Container del orbital */
.detalle-2 .orbital-container{
  position: relative;
  width: 280px; height: 280px;
  margin: 0 auto;
  /* Radios (puedes ajustarlos a tu diseño) */
  --r1: 60px;
  --r2: 95px;
  --r3: 130px;
}

/* Núcleo */
.detalle-2 .orbital-container .nucleus{
  position: absolute; inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 72px; height: 72px; border-radius: 999px;
  background: #511b8a; color: #fff; font-weight: 700;
  display:flex; align-items:center; justify-content:center;
  font-family: Montserrat, Arial, sans-serif;
}

/* Anillos (solo el borde) */
.detalle-2 .orbital-container .orbit{
  position: absolute;
  transform: none;
  border: 2px solid #151515; border-radius: 999px;
}
.detalle-2 .orbital-container .orbit1{
  width: calc(var(--r1)*2); height: calc(var(--r1)*2);
  top: calc(50% - var(--r1)); left: calc(50% - var(--r1));
}
.detalle-2 .orbital-container .orbit2{
  width: calc(var(--r2)*2); height: calc(var(--r2)*2);
  top: calc(50% - var(--r2)); left: calc(50% - var(--r2));
}
.detalle-2 .orbital-container .orbit3{
  width: calc(var(--r3)*2); height: calc(var(--r3)*2);
  top: calc(50% - var(--r3)); left: calc(50% - var(--r3));
}

/* Animación orbital */
@keyframes gx-orbit-spin { to { transform: rotate(360deg); } }
.detalle-2 .orbital-container .orbit1 { animation: gx-orbit-spin 5s linear infinite; }
.detalle-2 .orbital-container .orbit2 { animation: gx-orbit-spin 9s linear infinite reverse; }
.detalle-2 .orbital-container .orbit3 { animation: gx-orbit-spin 14s linear infinite; }
@media (prefers-reduced-motion: reduce) {
  .detalle-2 .orbital-container .orbit1,
  .detalle-2 .orbital-container .orbit2,
  .detalle-2 .orbital-container .orbit3 { animation: none; }
}

/* Electrones */
.detalle-2 .orbital-container .electron {
  position: absolute;
  left: 50%; top: 50%;
  width: 26px; height: 26px; border-radius: 999px;
  background: #2e73e6;
  transform: translate(-50%, -50%) rotate(var(--angle)) translate(var(--r)) rotate(calc(-1*var(--angle)));
  display: grid; place-items: center;
}

/* Icono — usa la variable y, si faltara, intenta con el path por defecto */
.detalle-2 .orbital-container .electron::after{
  content: "";
  width: 70%; height: 70%;
  background-image: var(--gasex-electron-icon), url("/wp-content/themes/gasex-clasico-theme/img/favicon 1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}


/* Asigna el radio según la órbita */
.detalle-2 .orbital-container .orbit1 .electron{ --r: var(--r1); }
.detalle-2 .orbital-container .orbit2 .electron{ --r: var(--r2); }
.detalle-2 .orbital-container .orbit3 .electron{ --r: var(--r3); }



.gx-electron{
  width: 28px; height: 28px; border-radius: 50%;
  background: #2f6df6; position: absolute; transform: translate(-50%, -50%);
}
.gx-electron::after{
  content: ""; display: block; width: 18px; height: 18px; margin: 5px auto 0;
  background-image: var(--gasex-electron-icon);
  background-size: contain; background-repeat: no-repeat; background-position: center;
  filter: drop-shadow(0 0 0 rgba(0,0,0,.001)); /* evita blur en algunos navegadores */
}








/* Aísla el bloque y evita que sus hijos “floten” sobre lo que sigue */
.wp-block-gasex-detalle-2,
.detalle-2 {
  position: relative;
  isolation: isolate;   
}

/* Fila de características: queda “debajo” de lo demás del propio bloque */
.detalle-2 .caracteristicas-d2 {
  position: relative;
  /* margin: 24px 0 150px; */
  z-index: 0;
  contain: paint;    
}

/* La regla <hr> y la sección inferior deben quedar por encima */
/* .detalle-2 hr,
.detalle-2 .configuracion {
  position: relative;
  z-index: 1;
} */

/* (Opcional) separador generoso para que nunca se toquen en scroll */
/* .detalle-2 hr { margin: 28px 0; } */



/* ================================
SECCION: DETALLE-3
================================== */
/* .detalle3 {
  padding: 0rem 0rem 3rem 0rem;
}

.detalle3-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
}

.detalle3-texto {
  flex: 1;
}

.detalle3 h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222529;
  text-align: center;
}

.detalle3-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222529;
}

.tabla-contenedor {
  flex: 1;
  
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
  margin-top: 0rem;
  width: 33rem;
}

.tabla-fase {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  font-family: 'Montserrat', sans-serif;
}

.tabla-encabezado {
  background-color: #1c1c1c;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
}

.tabla-encabezado img {
  height: 26px;
  margin-left: 0rem;
}

.tabla-fase table {
  width: 100%;
  border-collapse: collapse;
}

.tabla-fase th {
  text-align: left;
  padding: 0rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #797879;
  vertical-align: top;
}

.tabla-fase td {
  text-align: right;
  padding: 0rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #797879;
  vertical-align: top;
} */

/* ================================
SECCION: DETALLE-4 (IGUAL A DETALLE-3)
================================== */
/* .detalle4 {
  padding: 0rem 0rem 3rem 0rem;
}

.detalle4-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-evenly;
  flex-direction: row;
}

.detalle4 h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222529;
  text-align: center;
}

.detalle4-texto p {
  font-size: 1rem;
  line-height: 1.6;
  color: #222529;
}

.detalle4-imagen {
  flex: 1;
}

.detalle4-imagen img {
  width: 20rem;
  height: 20rem;
  margin-left: 15rem;
  object-fit: cover;
  object-position: center;
}

.tabla4-contenedor {
  flex: 1;
  
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-start;
  margin-top: 0rem;
  width: 45rem;
}

.tabla4-fase {
  background: #fff;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  font-family: 'Montserrat', sans-serif;
}

.tabla4-encabezado {
  background-color: #1c1c1c;
  color: white;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 1rem;
}

.tabla4-encabezado img {
  height: 26px;
  margin-left: 0rem;
}

.tabla4-fase table {
  width: 100%;
  border-collapse: collapse;
}

.tabla4-fase th {
  text-align: left;
  padding: 0rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #797879;
  vertical-align: top;

}

.tabla4-fase td {
  text-align: right;
  padding: 0rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #797879;
  vertical-align: top;
}

.wp-block-gasex-detalle-4.alignfull,
.wp-block-gasex-detalle-4.alignwide {
  width: 100%;
}

.wp-block-gasex-detalle-4 .detalle4-content {
  display: grid;
  grid-template-columns: minmax(300px, 560px) 1fr;
  gap: 2rem;
  align-items: start;
}

.wp-block-gasex-detalle-4 .detalle4-imagen img {
  width: 100%;
  height: auto;
  max-width: 560px;
  margin: 0;
  object-fit: contain;
}

.wp-block-gasex-detalle-4 .tabla4-contenedor { width: 100%; }

.wp-block-gasex-detalle-4 .tabla4-encabezado {
  display: grid;
  grid-template-columns: 1fr auto 26px;
  gap: .75rem;
  align-items: center;
}

.wp-block-gasex-detalle-4 .tabla4-brand{
  width: 26px; height: 26px;
  background-image: var(--gasex-brand-mark);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}

@media (max-width: 900px){
  .wp-block-gasex-detalle-4 .detalle4-content{
    grid-template-columns: 1fr;
  }
} */


/* ================================
SECCION: SEPARADOR
================================== */

/* ================================
SECCION: DETALLE-5
================================== */
.detalle5 {
  padding: 2rem 0rem;
}

.detalle5-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.detalle5-texto {
  flex: 1 1 500px;
}

.detalle5 h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.detalle5-texto p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.detalle5-imagenes {
  flex: 1 1 500px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.detalle5-imagenes img {
  max-width: 100%;
  width: 15.438rem;
  height: 22.438rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  object-fit: cover;
}

/* ================================
SECCION: SEPARADOR
================================== */

/* ================================
SECCION: COMPARADOR
================================== */

/* ================================
SECCION: SEPARADOR
================================== */

/* ================================
  SECCION: APLICACIONES (LIMPIO)
================================== */
/* .wp-block-gasex-aplicaciones.aplicaciones{
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.wp-block-gasex-aplicaciones.aplicaciones h2{
  font-size: 2rem;
  font-weight: 800;
  margin: 0 0 2rem;
}

.wp-block-gasex-aplicaciones .grid-aplicaciones{
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 2rem;
  align-items: stretch; 
  justify-items: stretch;
  white-space: normal;
  overflow: visible;
}

.wp-block-gasex-aplicaciones .card{
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 0 5px rgba(0,0,0,.1);
  text-align: left;
}

.wp-block-gasex-aplicaciones .card > img{
  width: 100%;
  height: 10.5rem;  
  object-fit: cover; 
  display: block;
}

.wp-block-gasex-aplicaciones .card h3{
  color: #0072ce;
  margin: 1rem 1rem .25rem;
  font-size: 1.2rem;
}
.wp-block-gasex-aplicaciones .card p{
  margin: 0 1rem 1rem;
  color: #1C70B8;
  font-size: .95rem;
}

.wp-block-gasex-aplicaciones .grid-aplicaciones > .card:last-child:nth-child(odd){
  grid-column: 1 / -1;
  max-width: 36rem; 
  margin-inline: auto;  
} */





/* ================================
SECCION: OPINIONES
================================== */

/* ================================
SECCION: SECCION-IMAGENES-ELEMENTOS
================================== */
/* .seccion-imagenes {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 0rem;
  box-sizing: border-box;
}

.fila1 {
  display: flex;
  gap: 1.25rem;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.fila1 .imagen1s,
.fila1 .imagen2s {
  position: relative;
  height: 21.18rem;
  overflow: hidden;
}

.fila1 .imagen1s {
  flex: 1;
  width: 19.233rem;
}

.fila1 .imagen2s {
  flex: 0 0 66%;
  max-width: 100%;
}

.fila1 img,
.fila2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 4px;
}

.fila2 .imagen-grande {
  width: 100%;
  position: relative;
  height: auto;
}

.fila2 .imagen-grande img {
  height: 22rem;
}

.texto-superpuesto {
  position: absolute;
  bottom: 0px;
  left: 0px;
  color: white;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  font-weight: bold;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .seccion-imagenes {
    max-width: 100%;
    padding: 1rem;
  }

  .fila1 {
    flex-direction: column;
  }

  .fila1 .imagen1s,
  .fila1 .imagen2s {
    height: auto;
    flex: 1 1 100%;
    max-width: 100%;
  }
} */

/* ================================
SECCION: INFORMACION-RELEVANTE
================================== */
/* .inf-relevante {
padding: 2rem 0rem;
}

.informacion-relevante {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
justify-content: center;
}

.container {

  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.container-cabecera {
  gap: 40px;
  margin-bottom: 4rem;
}

.container-cabecera p{
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
  gap: 40px;
  margin-bottom: 4rem;
}

.informacion-relevante .container-cabecera h2{
  font-size: 28px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
  gap: 40px;
  text-align: left;
}

.informacion-relevante .container-cabecera .subtitulo {
  font-size: 28px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
  gap: 40px;
  text-decoration: underline;
  text-underline-offset: 10px;
  text-align: center;
}

.informacion-relevante-texto {
flex: 1 1;
gap: 20px; 
text-align: justify;
}

.informacion-relevante .informacion-relevante-cabecera{
  text-align: left;
}

.informacion-relevante .titulo{
  font-size: 28px;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 15px;
  gap: 40px;
  list-style-type: disc;
}

.informacion-relevante .container h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  text-align: left;
}

.informacion-relevante-texto p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.informacion-relevante-imagenes {
  flex: 1 1;
  display: flex;
  justify-content: center;
  gap: 20px;

}

.informacion-relevante-imagenes img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  object-fit: cover;

} */

/* ================================
SECCION: CARRUSEL-BANNER
================================== */

/* ================================
SECCION: DETALLE-7
================================== */
.detalle7 {
  padding: 2rem 1rem;
}

.detalle7-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  /* align-items: center; */
  gap: 40px;
}

.detalle7-texto {
flex: 1 1;
/* padding-left: 2rem; */
/* padding-top: 4rem; */
}

.strong-azul {
  color: #396AFD;
}

.detalle7 .titulo {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 10px;
}

.detalle7 h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: left;
}

.detalle7-texto p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
  list-style-type: disc;
}

.detalle7-imagenes {
  flex: 1 1;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 2rem;
}

.detalle7-imagenes img {
  max-width: 100%;
  /* height: auto; */
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  object-fit: cover;
}


/* Invertir layout principal */
.detalle7.invertir .detalle7-container {
  display: flex;
  flex-direction: row-reverse;
}

/* Inferior: 2 columnas de texto */
.detalle7-inferior{
  max-width: 1200px;
  margin: 2rem auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2rem;
}
.detalle7-inferior h3{ margin: 0 0 .5rem; }
.detalle7-inferior ul{ margin: 0; padding-left: 1.2rem; }

/* Galería inferior: 2 imágenes */
.detalle7-galeria{
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 2rem;
}
.detalle7-galeria img{
  width: 100%;
  height: 14rem;           /* tamaño moderado */
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

/* Responsive */
@media (max-width: 768px){
  .detalle7-inferior,
  .detalle7-galeria{
    grid-template-columns: 1fr;
  }
}


/* ================================
SECCION: DETALLE-8
================================== */
.banner8 {
  display: flex;
  flex-direction: column;
  /* width: 100vw; */
  height: 28.3125rem; 
  background-image: url("img/10186702\ 1.png");
  background-size: cover;
  /* color: #fff; */
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.titulo-banner8 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-align: center;
}

.btn8 {
width: 45rem;
align-self: center;
margin-top: 23rem;
margin-right: 20%;
padding: 0.5rem 1.5rem;
background: #417DB5;
color: #fff;
font-size: 15px;
border-radius: 5rem;
text-decoration: none;
transition: background 0.3s;
text-align: left;
}

.btn8:hover {
  background: #fff;
  color: #003866;
}

/* ================================
SECCION: PRODUCTOS-RELACIONADOS
================================== */