/* Contenedor principal */
.titulares-wrapper {
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center;
}

/* Título principal */
.titulares-title {
    color: #026aa7; 
    font-size: 2rem;
    margin-bottom: 12px;
}

/* Banner tipo etiqueta */
.titulares-label {
    background-color: #90c8ec; 
    padding: 10px 16px;
    width: 80%; 
    box-sizing: border-box;
}

/* Subtítulo */
.titulares-subtitle {
    color: white;
    font-size: 32px;
    margin: 0;
}

/* Estilo para pantallas grandes */
@media (min-width: 768px) {
    .titulares-wrapper {
        align-items: flex-start;
        text-align: left;
    }

    .titulares-title {
        font-size: 2.5rem;
    }

    .titulares-label {
        width: auto; 
        display: inline-block;
    }

    .titulares-subtitle {
        font-size: 1.4rem;
    }
}


/* Contenedor alienígena */
.xarblon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); 
  gap: 12px;
  margin-top: 5%;
  margin-left: 3%;
  margin-bottom: 5%;
  width: 95%;
  max-width: 600px;
  justify-content: center; 
  align-items: center;
}

/* Cada banner cuadrado */
.quazz-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1; 
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Círculo mágico */
.orbix {
  width: 80px;
  height: 80px;
  background: #3b9ce2c8;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffffff;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}

/* Responsive: SOLO si la pantalla es muy pequeña */
@media (max-width: 320px) {
  .xarblon-grid {
    grid-template-columns: 1fr; 
  }
}


.slideshow-cinta-moviles {
  overflow: hidden;
  width: 100%;
  margin-bottom: 10%;
  margin-top: 18%;
  height: auto;
  padding: 20px 0;
  background-color: #3498db; 
}

.slideshow-track-moviles {
  display: flex;
  animation: scroll-slideshow 40s linear infinite;
}

.slideshow-cinta-moviles img {
  flex-shrink: 0;
  width: clamp(150px, 25vw, 300px);
  height: auto;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border-radius: 15px;
  margin: 0 10px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  animation: proyector-brillo 3s ease-in-out infinite;
}

/* Efecto hover: agrandar suavemente */
.slideshow-cinta-moviles img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

/* Animación de desplazamiento infinito */
@keyframes scroll-slideshow {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Ajustes móviles */
@media (max-width: 768px) {
  .slideshow-cinta-moviles {
    padding: 10px 0;
  }
  .slideshow-cinta-moviles img {
    border: 3px solid #fff;
    width: clamp(250px, 25vw, 300px);
    border-radius: 10px;
  }
}



/*====================NUEVO CARRUSEL 現代社会 phones ======================*/
/*----nuevas cartas corregidas---*/
.carrusel-carousel, .carrusel-carousel * { box-sizing: border-box; }
.carrusel-carousel img { display: block; }

/* ----- Contenedor general (altura bajita) ----- */
.carrusel-carousel{
  position: relative;
  width: 100%;
  height: 40vh;           
  min-height: 260px;
  margin-bottom: 5%;
  margin-top:10%;
  overflow: hidden;
  --carrusel-accent: #ffffff;
}
@media (min-width: 768px){
  .carrusel-carousel{ height: 55vh; min-height: 360px; } 
}

/* ----- Ocultar radios ----- */
.carrusel-carousel > input[type="radio"]{ display: none; }

/* ----- Ventana y pista ----- */
.carrusel-viewport{ width: 100%; height: 100%; overflow: hidden; }
.carrusel-track{
  display: flex;
  height: 100%;
  width: 500%; 
  transition: transform .6s cubic-bezier(.22,.61,.36,1);
}

.carrusel-panel{
  position: relative;
  height: 100%;
  flex: 0 0 calc(100% / 5); 
}

/* Posiciones para 5 imágenes */
#carrusel-s1:checked ~ .carrusel-viewport .carrusel-track{ transform: translateX(0%); }
#carrusel-s2:checked ~ .carrusel-viewport .carrusel-track{ transform: translateX(-20%); }
#carrusel-s3:checked ~ .carrusel-viewport .carrusel-track{ transform: translateX(-40%); }
#carrusel-s4:checked ~ .carrusel-viewport .carrusel-track{ transform: translateX(-60%); }
#carrusel-s5:checked ~ .carrusel-viewport .carrusel-track{ transform: translateX(-80%); }

/* Flechas visibles solo en el panel activo */
#carrusel-s1:checked ~ .carrusel-viewport .carrusel-panel--1 .carrusel-arrow{ display: block; }
#carrusel-s2:checked ~ .carrusel-viewport .carrusel-panel--2 .carrusel-arrow{ display: block; }
#carrusel-s3:checked ~ .carrusel-viewport .carrusel-panel--3 .carrusel-arrow{ display: block; }
#carrusel-s4:checked ~ .carrusel-viewport .carrusel-panel--4 .carrusel-arrow{ display: block; }
#carrusel-s5:checked ~ .carrusel-viewport .carrusel-panel--5 .carrusel-arrow{ display: block; }

/* Punto activo */
#carrusel-s1:checked ~ .carrusel-dots label[for="carrusel-s1"],
#carrusel-s2:checked ~ .carrusel-dots label[for="carrusel-s2"],
#carrusel-s3:checked ~ .carrusel-dots label[for="carrusel-s3"],
#carrusel-s4:checked ~ .carrusel-dots label[for="carrusel-s4"],
#carrusel-s5:checked ~ .carrusel-dots label[for="carrusel-s5"]{
  background: var(--carrusel-accent);
}
.carrusel-panel > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40%;
}

/* ----- Banner centrado (z-index para que no quede detrás) ----- */
.carrusel-banner{
  position: absolute;
  width: 250px;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  background: #3b9ce2c8;
  color: #fff;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  max-width: min(92%, 680px);
}
.carrusel-banner h2{
  margin: 0 0 .35rem;
  color: #ffffff;
  font-size: clamp(1.4rem, 3.8vw, 2.2rem);
  font-weight: 950;
  background: linear-gradient(90deg, var(--carrusel-accent), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.carrusel-banner h3{
  margin: 0 0 .35rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 3.8vw, 2.2rem);
  font-weight: 950;
  background: linear-gradient(90deg, var(--carrusel-accent), #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.carrusel-banner p{
  margin: 0 0 .9rem;
  font-size: clamp(1rem, 2.4vw, 1.1rem);
}
.carrusel-btn{
  display: inline-block;
  padding: .55rem 1.1rem;
  border-radius: 28px;
  text-decoration: none;
  color: #000000;
  font-weight: bolder;
  background-color: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}
.carrusel-btn:hover{ transform: scale(1.05); box-shadow: 0 0 12px rgba(255,0,204,.45); }

/* ----- Flechas (solo en panel activo) ----- */
.carrusel-arrow{
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 42px; height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50%;
  background: #329ad7;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  user-select: none;
  display: none;            
}
.carrusel-prev{ left: 10px; }
.carrusel-next{ right: 10px; }
.carrusel-arrow:hover{ background: rgba(0,0,0,.6); }

/* Mostrar SOLO las flechas del panel visible */
#carrusel-s1:checked ~ .carrusel-viewport .carrusel-panel--1 .carrusel-arrow{ display: block; }
#carrusel-s2:checked ~ .carrusel-viewport .carrusel-panel--2 .carrusel-arrow{ display: block; }
#carrusel-s3:checked ~ .carrusel-viewport .carrusel-panel--3 .carrusel-arrow{ display: block; }

/* ----- Dots (opcionales) ----- */
.carrusel-dots{
  position: absolute;
  bottom: 12px; left: 0; right: 0;
  text-align: center;
}
.carrusel-dots label{
  display: inline-block;
  width: 10px; height: 10px;
  margin: 0 5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  cursor: pointer;
}
#carrusel-s1:checked ~ .carrusel-dots label[for="carrusel-s1"],
#carrusel-s2:checked ~ .carrusel-dots label[for="carrusel-s2"],
#carrusel-s3:checked ~ .carrusel-dots label[for="carrusel-s3"]{
  background-color: (#329ad7);
}
/* Layout de 2 columnas */
.layout-carrusel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.layout-carrusel-carousel-column {
  flex: 1 1 60%;
}

.layout-carrusel-news-column {
  flex: 1 1 40%;
  background: #f7f7f7;
  padding: 1rem;
  border-radius: 8px;
}

.layout-carrusel-news-column h2 {
  margin-bottom: 1rem;
}

.layout-carrusel-news-item {
  background: white;
  padding: 0.8rem;
  margin-bottom: 0.8rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* Responsive: en móvil se apila */
@media (max-width: 768px) {
  .layout-carrusel-carousel-column,
  .layout-carrusel-news-column {
    flex: 1 1 100%;
    margin-bottom: 15%;
  }
}


.banner-azul {
  width: 350px;
  max-width: 90%;       
  margin: 3% auto;    
  margin-bottom: 15%;   
  text-align: justify;
  border-radius: 12px;   
  padding: 0.2rem;         
}

.banner-azul p {
  font-size: 0.80rem;
  font-weight: 300;
  color: #000000;
  margin: 0; 
}


/*=========PICK UP  SECTION=========*/
.titulo-destacado-pickup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2em 0;
  font-family: sans-serif;
}

/* Líneas laterales tipo guiones (no puntos) */
.linea-guiones {
  flex: 1;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #c69c6d,
    #c69c6d 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
}

/* Texto del título sin adornos */
.titulo-principal {
  font-size: 1.5rem;
  font-weight: bold;
  color: #c69c6d;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
/*====TEXTO TOKUSHU====*/
.titulo-destacado-tokushu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2em 0;
  font-family: sans-serif;
}

/* Líneas laterales tipo guiones (no puntos) */
.linea-guiones-tokushu {
  flex: 1;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #329ad7,
    #329ad7 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
}

/* Texto del título sin adornos */
.titulo-principal-tokushu {
  font-size: 1.4em;
  font-weight: bold;
  color: #329ad7;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
.subtitulo {
  font-size: 1.2rem;
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif; 
  color: #000000; 
  margin-top: 10px; 
  text-align: center; 
  font-weight: normal; 
  line-height: 1.5; 
  max-width: 80%; 
  margin-left: auto;
  margin-right: auto; 
}
/* Banner horizontal fijo */
.banner-fijo-horizontal {
  display: flex;
  flex-direction: row;
  background-color: #f4ebdd;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  margin: 1em auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Imagen alineada a la izquierda */
.imagen-horizontal {
  flex: 0 0 45%;
  max-width: 45%;
}

.imagen-horizontal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenedor de texto */
.texto-horizontal {
  flex: 1;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Título */
.titulo-horizontal {
  font-size: 1.2rem;
  font-weight: bold;
  color: #6a4b30;
  margin-bottom: 0.6em;
  text-align: center;
}

/* Subtexto con fondo */
.subtexto-horizontal {
  background-color: #d6b892;
  padding: 0.9em;
  border-radius: 8px;
  font-size: 0.80rem;
  color: #fff;
  line-height: 1.5em;
}
.banner-fijo-horizontal.invertido {
  flex-direction: row-reverse;
}

/* No romper el layout en móvil */
@media screen and (max-width: 600px) {
  .banner-fijo-horizontal {
    flex-direction: row; 
  }

  .imagen-horizontal {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .texto-horizontal {
    flex: 1;
    padding: 0.8em;
  }
}


/* CONTENEDOR SOLO MÓVIL */
.bloque-movil {
  display: block;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .bloque-movil {
    display: none;
  }
}

/* RECTÁNGULOS */
.rectangulo-superior {
  height: 300px;
  background-color: #3498db;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px;
  padding-top: 5%;
  box-sizing: border-box;
  text-align: center;
  margin-top: 10%;
}

/* Contenedor horizontal del logo y título */
.contenedor-logo-titulo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

/* Estilo del logotipo */
.logo-rectangulo {
  height: 40px;
  width: auto;
  object-fit: contain;
  align-self: center;
}

/* Estilo del texto del título */
.texto-rectangulo-superior {
  color: white;
  font-size: 2.8rem;
  font-weight: bold;
  margin: 0;
}

.rectangulo-inferior {
  height: 300px;
  background-color: #3498db;
  margin: 0;
  margin-top: 10%;
  margin-bottom: 10%;
  display: flex;
  align-items:end;
  justify-content: center;
  text-align: center;
  padding: 10px;
  padding-bottom: 10%;
  padding-left: 6%;
  box-sizing: border-box;
}

/* TEXTO RECTÁNGULOS */

.texto-rectangulo-inferior {
  color: white;
  font-size: 1.3rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.5;
}

/* IMAGEN CIRCULAR CENTRADA */
.imagen-circular {
  position: absolute;
  top: calc(220px - 80px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 30px solid #fafafa;
  overflow: hidden;
  background-color: white;
  z-index: 10;
}

.imagen-circular img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/*========= NEWS SECTION=========*/
.titulo-destacado-news {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 2em 0;
  font-family: sans-serif;
}

/* Líneas laterales tipo guiones (no puntos) */
.linea-guiones {
  flex: 1;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #c69c6d,
    #c69c6d 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
}
.linea-guiones-bottom {
  flex: 1;
  height: 2px;
  background-image: repeating-linear-gradient(
    to right,
    #c69c6d,
    #c69c6d 8px,
    transparent 8px,
    transparent 16px
  );
  background-repeat: repeat-x;
  margin-top:10%;
  margin-bottom: 10%;
}

/* Texto del título sin adornos */
.titulo-principal-news {
  font-size: 1.4em;
  font-weight: bold;
  color: #75b7f0;
  white-space: nowrap;
  text-decoration: none;
  border: none;
}
/* Banner horizontal fijo */
.banner-fijo-horizontal-news {
  display: flex;
  flex-direction: row;
  background-color: #3b9ce2c8;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  margin: 1em auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Imagen alineada a la izquierda */
.imagen-horizontal-news {
  flex: 0 0 45%;
  max-width: 45%;
}

.imagen-horizontal-news img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenedor de texto */
.texto-horizontal-news {
  flex: 1;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Título */
.titulo-horizontal-news {
  font-size: 1.5em;
  font-weight: bold;
  color: #0d314a;
  margin-bottom: 0.6em;
  text-align: center;
}

/* Subtexto con fondo */
.subtexto-horizontal-news {
  background-color: #355062c8;
  padding: 0.9em;
  border-radius: 8px;
  font-size: 1.1em;
  color: #fff;
  line-height: 1.5em;
}
.banner-fijo-horizontal-news.invertido {
  flex-direction: row-reverse;
}

/* No romper el layout en móvil */
@media screen and (max-width: 600px) {
  .banner-fijo-horizontal-news {
    flex-direction: row; /* Mantenemos en horizontal */
  }

  .imagen-horizontal-news {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .texto-horizontal-news {
    flex: 1;
    padding: 0.8em;
  }
}

/*===NEWS TITLE BANNER===*/
/* CONTENEDOR SOLO MÓVIL */
.bloque-movil-news {
  display: block;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  margin-top: 5%;
}

@media screen and (min-width: 768px) {
  .bloque-movil-news {
    display: none;
  }
}

.contenedor-lazo-aviso {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 40px 0;
  margin-top: 5%;
}

.lazo-aviso-cinta-v2 {
  background-color: #90c8ec;
  color: white;
  font-weight: bold;
  font-size: 2.2rem;
  padding: 15px 50px;
  text-align: center;
  min-width: 280px;
  margin-top: 10%;

  /* Forma de lazo con puntas hacia dentro */
  clip-path: polygon(
    0 0, 10% 50%, 0 100%, 
    100% 100%, 90% 50%, 100% 0
  );
}

.texto-lazo-aviso {
  position: relative;
  z-index: 1;
}

.icono-lazo-aviso {
  position: absolute;
  top: -2px;     
  right: 15px;
  height: 70px;
  z-index: 2;     
}






.suzuki-zemi-container {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  max-width: 100%;
}

.suzuki-zemi-top {
  position: relative;
  margin-bottom: 0;
  font-size: 1.2rem;
}

.suzuki-zemi-circle {
  width: 120px;
  height: 120px;
  background-color: #36a9e1;
  border-radius: 50%;
  border-style: solid;
  border-width: 10px;
  border-color: #fafafa;
  position: absolute;
  top: -15px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}

.suzuki-zemi-ribbon {
  background-color: #36a9e1;
  color: white;
  padding: 8px 20px 8px 100px;
  clip-path: polygon(0 0, 100% 0, 95% 50%, 100% 100%, 0 100%);
  font-size: 13px;
  font-weight: bold;
  line-height: 1.4;
  z-index: 1;
  width: 90%;
  margin-left: 30px;
}

.suzuki-zemi-banner {
  background-color: #a7d4ef;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 15px;
  color: #082e4a;
  margin-top: 5px;
  font-weight: 600;
  overflow: hidden;
}

.suzuki-zemi-text-column {
  flex: 1;
  margin-right: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.suzuki-zemi-image-column {
  flex: 1;
  max-width: 50%;
  overflow: hidden; 
}
.suzuki-zemi-text-column p {
  font-size: 14px;
  margin-bottom: 12px;
}

.suzuki-zemi-button {
  display: inline-block;
  background-color: #ffffff;
  color: #2e74a5;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
.suzuki-zemi-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  border-radius: 8px;
}
/* 🔽 MEDIA QUERY para pantallas pequeñas */
@media (max-width: 390px) {
  .suzuki-zemi-circle {
    width: 90px;
    height: 90px;
    font-size: 13px;
    top: -10px;
    border-width: 6px;
  }

  .suzuki-zemi-ribbon {
    font-size: 12px;
    padding: 6px 15px 6px 75px;
    margin-left: 20px;
  }

  .suzuki-zemi-banner {
    flex-direction: column;
    padding: 12px;
  }

  .suzuki-zemi-image-column {
    max-width: 100%;
    margin-top: 10px;
  }

  .suzuki-zemi-image-column img {
    height: auto;
  }

  .suzuki-zemi-button {
    font-size: 13px;
    padding: 6px 12px;
  }

  .suzuki-zemi-text-column p {
    font-size: 13px;
  }
}


/*=====banner interview exalumns------*/

/* === CONTENEDOR PRINCIPAL === */
.zemi-right-container {
  font-family: 'Arial', sans-serif;
  color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
  position: relative;
  max-width: 100%;
}

/* === CÍRCULO A LA DERECHA === */
.zemi-right-circle {
  width: 120px;
  height: 120px;
  background-color: #4a858b;
  border-radius: 50%;
  border: 10px solid #fafafa;
  position: absolute;
  top: -15px;          
  right: 10px;
  z-index: 2;         
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 15px;
  text-align: center;
}

/* === RECTÁNGULO DECORATIVO CON BORDE DISCONTINUO === */
.zemi-right-banner-top {
  margin-right: 30px;                  
  background-color: #4a858b;            
  color: #ffffff;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: bold;
  text-align: left;
  position: relative;
  border-radius: 8px;

  /* 🔽 Borde externo separado */
  outline: 2px dashed #4a858b;
  outline-offset: 6px; 
}
/* === BANNER PRINCIPAL === */
.zemi-right-banner-main {
  background-color: #4a848b78;
  border-radius: 10px;
  display: flex;
  flex-direction: row;
  padding: 10px;
  color: #ffffff;
  font-weight: 600;
  margin-top: 15px;
  overflow: hidden;
}

/* === COLUMNA DE IMAGEN IZQUIERDA === */
.zemi-right-image-column {
  flex: 1;
  max-width: 50%;
  overflow: hidden;
}
.zemi-right-image-column img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* === COLUMNA DE TEXTO Y BOTÓN A LA DERECHA === */
.zemi-right-text-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 10px;
  text-align: right;
}
.zemi-right-text-column p {
  font-size: 14px;
  margin-bottom: 12px;
}
.zemi-right-button {
  display: inline-block;
  background-color: #ffffff;
  color: #274d51;
  padding: 8px 16px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
  align-self: flex-end;
}


/* === MEDIA QUERY PARA MÓVILES === */
@media (max-width: 390px) {
  .zemi-right-circle {
    width: 90px;
    height: 90px;
    font-size: 13px;
    top: -10px;
    right: 10px;
    border-width: 6px;
  }

  .zemi-right-banner-top {
    font-size: 12px;
    padding: 6px 10px;
    margin-right: 100px;
  }

  .zemi-right-banner-main {
    flex-direction: column;
    padding: 12px;
  }

  .zemi-right-text-column {
    padding-left: 0;
    text-align: center;
    align-items: center;
  }

  .zemi-right-button {
    align-self: center;
  }

  .zemi-right-image-column {
    max-width: 100%;
    margin-bottom: 10px;
  }

  .zemi-right-image-column img {
    height: auto;
  }

  .zemi-right-text-column p {
    font-size: 13px;
  }

  .zemi-right-button {
    font-size: 13px;
    padding: 6px 12px;
  }
}




/* Contenedor principal del banner */
.banner-zemi-custom {
  display: flex;
  flex-direction: row;
  background-color: #90c8ec;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  margin: 1em auto;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.banner-zemi-custom.invertido {
  flex-direction: row-reverse;
}

/* Imagen alineada a la izquierda */
.banner-zemi-img {
  flex: 0 0 45%;
  max-width: 45%;
}

.banner-zemi-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenido textual */
.banner-zemi-contenido {
  flex: 1;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-zemi-titulo {
  font-size: 1.5em;
  font-weight: bold;
  color: #026aa7;
  margin-bottom: 0.6em;
  text-align: center;
}

/* Contenedor de las keywords: ahora con control de saltos */
/* Contenedor de las keywords: ahora con control de saltos */
.zemi-keywords-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.6em; 
  justify-content: center;
  margin-bottom: 1em;
  max-width: 220px; 
  margin-left: auto;
  margin-right: auto;
}

/* Cada palabra clave como mini-banner */
.zemi-keyword {
  background-color: #329ad7;
  color: white;
  padding: 0.3em 0.6em;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: bold;
  white-space: nowrap;
}


/* Subtexto con fondo */
.banner-zemi-subtexto {
  background-color: #329ad7;
  padding: 1em;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.5em;
  text-align: center;
}

/* Botón */
.zemi-btn {
  display: inline-block;
  margin-top: 1em;
  padding: 0.6em 1.2em;
  background-color: #ffffff;
  color: #3b9ce2;
  text-align: center;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.zemi-btn:hover {
  background-color: #3b9ce2;
  color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .banner-zemi-custom {
    flex-direction: row;
  }

  .banner-zemi-img {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .banner-zemi-contenido {
    flex: 1;
    padding: 0.8em;
  }
}



/* Contenedor principal del banner invertido */
.zemi-inv-banner {
  display: flex;
  flex-direction: row-reverse; 
  background-color: #90c8ec;
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  margin: 1em auto;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Imagen a la derecha */
.zemi-inv-img {
  flex: 0 0 45%;
  max-width: 45%;
}

.zemi-inv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Contenido textual a la izquierda */
.zemi-inv-contenido {
  flex: 1;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

/* Título */
.zemi-inv-titulo {
  font-size: 1.5em;
  font-weight: bold;
  color: #026aa7;
  margin-bottom: 0.6em;
  text-align: center;
}

/* Contenedor de palabras clave */
.zemi-inv-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em 0.6em;
  justify-content: center;
  margin-bottom: 1em;
  max-width: 220px;
}

/* Palabra clave individual */
.zemi-inv-keyword {
  background-color: #329ad7;
  color: white;
  padding: 0.3em 0.6em;
  border-radius: 15px;
  font-size: 0.8em;
  font-weight: bold;
  white-space: nowrap;
  justify-content: center;
}

/* Texto descriptivo */
.zemi-inv-subtexto {
  background-color: #329ad7;
  padding: 1em;
  border-radius: 8px;
  font-size: 0.8rem;
  color: #fff;
  line-height: 1.5em;
  text-align: left;
}

/* Botón */
.zemi-inv-btn {
  display: inline-block;
  text-align: center;
  margin-top: 1em;
  padding: 0.6em 1.2em;
  background-color: #ffffff;
  color: #329ad7;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.zemi-inv-btn:hover {
  background-color: #3b9ce2;
  color: #ffffff;
}

/* Responsive: mantiene horizontal en móvil */
@media screen and (max-width: 600px) {
  .zemi-inv-banner {
    flex-direction: row-reverse;
  }

  .zemi-inv-img {
    flex: 0 0 40%;
    max-width: 40%;
  }

  .zemi-inv-contenido {
    flex: 1;
    padding: 0.8em;
  }
}
@media screen and (max-width: 768px) {
  .mobile-zemi-lazo-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 40px 0;
    margin-top: 5%;
  }

  .mobile-zemi-lazo {
    background-color: #90c8ec;
    color: white;
    font-weight: bold;
    font-size: 2.2rem;
    padding: 15px 50px;
    text-align: center;
    min-width: 280px;
    margin-top: 0%;
    clip-path: polygon(
      0 0, 10% 50%, 0 100%, 
      100% 100%, 90% 50%, 100% 0
    );
  }

  .mobile-zemi-lazo-texto {
    position: relative;
    z-index: 1;
  }

  .mobile-zemi-lazo-icono {
    position: absolute;
    top: -35px;
    right: 15px;
    height: 70px;
    z-index: 2;
  }
}
/* Por defecto oculto */
.titu-rare-x01 {
  display: none;
}

/* Mostrar solo en móviles */
@media screen and (max-width: 768px) {
  .titu-rare-x01 {
    display: block;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
    color: #3b9ce2;
    font-family: Arial, sans-serif;
    margin: 2vh 0;
  }
}
/* Mostrar todo solo en móviles */
@media screen and (max-width: 768px) {
  .mobile-zemi-lazo-wrapper-cv {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 40px 0 0 0;
  }

  .mobile-zemi-lazo-cv {
    background-color: #90c8ec;
    color: white;
    font-weight: bold;
    font-size: 2rem;
    padding: 15px 50px;
    text-align: center;
    min-width: 280px;
    margin-top: 5%;
    margin-bottom: 5%;
    clip-path: polygon(
      0 0, 10% 50%, 0 100%, 
      100% 100%, 90% 50%, 100% 0
    );
  }

  .mobile-zemi-lazo-texto-cv {
    position: relative;
    z-index: 1;
  }

  .mobile-zemi-lazo-icono-cv {
    position: absolute;
    top: -25px;
    right: 15px;
    height: 70px;
    z-index: 2;
    display: block; 
  }
}

/* Ocultar la imagen en pantallas mayores a 768px */
@media screen and (min-width: 769px) {
  .mobile-zemi-lazo-icono-cv {
    display: none;
  }
}




/*===========irregular shape circle =============*/
/* Contenedor general para la forma */
.contenedor-forma-elaborada-elanorados {
  position: relative;
  width: 100%;
  height: 600px;
  margin: 20px 0;
  display: flex;
  justify-content: right;
  margin-top: 10px;
  margin-bottom: 5%;
}

/* Estilo del SVG (forma) */
.forma-elaborada-elanorados {
  width: 80%; 
  height: auto;
  margin: 0 auto; 
}

/* Contenido dentro de la forma */
.contenido-forma-elaborada-elanorados {
  position: absolute;
  top: 50%;
  right: 10%; 
  transform: translateY(-50%); 
  color: rgb(0, 0, 0);
  text-align: left; 
  padding: 20px;
  max-width: 80%;
  z-index: 1;
}

/* Estilo del título dentro de la forma */
.titulo-forma-elaborada-elanorados {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

/* Estilo de la descripción dentro de la forma */
.descripcion-forma-elaborada-elanorados {
  font-size: 1rem;
  line-height: 1.5;
}

/* Media Query para pantallas pequeñas (móviles) */
@media screen and (max-width: 768px) {
  /* Mostrar solo en móviles: */
  .contenedor-forma-elaborada-elanorados {
    height: 400px;
    margin: 10px 0; 
    display: block; 
  }

  /* Ajustar el tamaño del SVG en móviles */
  .forma-elaborada-elanorados {
    width: 100%; 
    height: auto;
    transform: scale(1.2); 
    margin: 0 auto; 
    position: absolute;
    left: -3%; 
    margin-top: 5%;
    margin-bottom: 4%;
  }

  /* Ajustar el contenido dentro de la forma */
  .contenido-forma-elaborada-elanorados {
    padding: 15px; 
    max-width: 200%; 
    justify-content: right;
  }

  /* Ajustar el tamaño del título */
  .titulo-forma-elaborada-elanorados {
    font-size: 1.5rem; 
    text-align: right;
    margin-left: 50%;
    margin-top: 15%;
    margin-bottom: 0%;
    text-align: center;
  }

  /* Ajustar el tamaño de la descripción */
  .descripcion-forma-elaborada-elanorados {
    font-size: 0.9rem; 
    margin-left: 50%;
    text-align: center;
  }

  /* Imágenes superpuestas solo en móviles */
  .imagen-superpuesta {
    position: absolute;
    width: 170px;
    height: auto;
    object-fit: cover;
  }

  .imagen-1 {
    top: 15%;
    left: 0%;
  }

  .imagen-2 {
    top: 70%;
    left: 22%;
    transform: translate(-50%, -50%);
  }
}

/* Para ocultar en escritorio, hacer que desaparezca */
@media screen and (min-width: 769px) {
  .contenedor-forma-elaborada-elanorados {
    display: none; 
  }
}



/* Estilo del banner (solo visible en móviles) */
.banner-principal {
  display: flex;
  background-color: #329ad7; 
  color: white;
  padding: 35px;
  padding-left: 4%;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  margin: 0px;
  margin-top: 10%;
  margin-bottom: 30px; 
  position: relative; 
  height: 300px;
}

/* Estilo del texto */
.texto-banner-especial {
  max-width: 60%;
}

.titulo-banner-unico {
  font-size: 2rem;
  margin-bottom: 10px;
}

.descripcion-banner-clara {
  font-size: 1rem;
  line-height: 1.5;
}

/* Estilo de las imágenes en columna */
.imagenes-banner-unicas {
  display: flex;
  flex-direction: column; 
  gap: 10px; 
  align-items: flex-end; 
  position: absolute; 
  right: 0;
  bottom: 0; 
}

.imagen-banner-izquierda,
.imagen-banner-derecha {
  width: 170px; 
  height: auto;
  object-fit: cover;
  border: 10px solid #fafafa; 
  position: absolute; 
}

.imagen-banner-izquierda {
  top: 0; 
  right: 0; 
}

.imagen-banner-derecha {
  bottom: 0; 
  right: 0; 
}

/* Media Query para pantallas grandes (ordenadores) */
@media screen and (min-width: 769px) {
  .banner-principal {
    display: none; 
  }
}

/* Media Query para pantallas pequeñas (móviles) */
@media screen and (max-width: 768px) {
  .banner-principal {
    display: flex; 
  }
}


/* Estilo del contenedor del banner */
.banner-contenedor {
  display: flex;
  background-color: #329ad7; 
  color: white;
  padding: 10px;
  padding-left: 15%;
  align-items: center;
  justify-content: right;
  border-radius: 10px;
  margin: 0px;
  margin-top: 10%;
  text-align: right;
  margin-bottom: 30px; 
  position: relative; 
  height: 300px; 
}

/* Estilo del texto en el banner (ahora estará alineado a la derecha) */
.texto-banner-derecho {
  max-width: 60%; 
  text-align: right; 
  margin-left: 4%;
}

.titulo-principal-banner {
  font-size: 2rem;
  margin-bottom: 10px;

}

.descripcion-banner-contenido {
  font-size: 0.8rem;
  line-height: 1.5;
}

/* Estilo de las imágenes en columna y alineadas a la izquierda */
.imagenes-banner-izquierda {
  display: flex;
  flex-direction: column; 
  gap: 10px; 
  align-items: flex-start; 
  position: absolute; 
  left: 0; 
  top: 0; 
  bottom: 0; 
}

.imagen-banner-primera,
.imagen-banner-segunda {
  width: 170px; 
  height: auto;
  object-fit: cover;
  border: 10px solid #fafafa; 
  position: absolute; 
}

.imagen-banner-primera {
  top: 0; 
  left: 0; 
}

.imagen-banner-segunda {
  bottom: 0; 
  left: 0; 
}

/* Media Query para pantallas grandes (ordenadores) */
@media screen and (min-width: 769px) {
  .banner-contenedor {
    display: none; 
  }
}

/* Media Query para pantallas pequeñas (móviles) */
@media screen and (max-width: 768px) {
  .banner-contenedor {
    display: flex; 
  }
}
@media screen and (max-width: 400px) {
  .titulo-principal-banner {
    font-size: 1.5rem; 
  }
  .descripcion-banner-contenido {
    font-size: 0.8rem;
  }
}



/* Banner del título */
.caja_krang {
  background-color: #2c2c2c;
  padding: 20px;
  text-align: center;
  margin-top: 15%;
}

.titulo_zeep {
  color: #fff;
  font-size: 2rem;
  letter-spacing: 1px;
}

/* Contenedor de las noticias */
.listado_zarnak {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Fila de cada noticia */
.fila_grubb {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #d0d0d0;
  padding-bottom: 12px;
}

/* Título de cada noticia como enlace */
.mini_titulo_blip {
  font-size: 1rem;
  color: #111;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.mini_titulo_blip:hover {
  color: #0077cc;
}

/* Guion decorativo al frente del título */
.guion_deco {
  display: inline-block;
  width: 6px;
  height: 20px;
  background-color: #000000;
  border-radius: 3px;
}

/* Texto del párrafo */
.parrafo_snok {
  font-size: 0.80rem;
  color: #555;
  line-height: 1.5;
}

/* Responsive */
@media (min-width: 768px) {
  .listado_zarnak {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .envoltorio_fonklor {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
  }

  .caja_krang {
    width: 30%;
    height: auto;
    position: sticky;
    top: 0;
    margin-top: 10%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    padding-left: 20px;
  }

  .titulo_zeep {
    font-size: 2.5rem;
    text-align: left;
  }

  .listado_zarnak {
    width: 70%;
    padding: 40px;
    max-width: none;
    margin: 0;
    margin-top: 5%;
  }
}

.contenedor_boton_zark {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

@media (min-width: 1024px) {
  .contenedor_boton_zark {
    justify-content: flex-end;
    padding-right: 40px; 
  }
}

/* Botón estilizado */
.boton_viewmore_zark {
  padding: 10px 20px;
  background-color: #2c2c2c;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  font-size: 0.90rem;
  transition: background-color 0.3s ease;
}

.boton_viewmore_zark:hover {
  background-color: #444;
}




/*セミナー*/
.seminario-section {
  background-color: #e0f0ff; 
  padding: 10px 20px;
}

/* Los banners siguen con la misma estructura, no hace falta cambiar nada de esto */
.seminario-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: nowrap; 
  margin: 30px 0;
}

.seminario-box {
  position: relative;
  background-color: #f2f2f2;
  padding: 30px 20px 20px 20px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
  flex: 1 1 45%; 
  min-width: 300px; 
}

.seminario-tab {
  position: absolute;
  top: -25px;
  left: 20px;
  background-color: #1c3e60;
  padding: 10px 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.seminario-tab-graduates {
  position: absolute;
  width: 80%;
  height: auto;
  top: -25px;
  left: 30px;
  background-color: #13675f;
  padding: 10px 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.seminario-tab-tit {
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.seminario-tab-graduates-tit {
  margin: 0;
  color: white;
  font-size: 20px;
  font-weight: bold;
}

.seminario-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 20px;
  gap: 20px;
}

.seminario-left {
  flex: 1 1 60%;
}

.seminario-sub {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
}

.seminario-text {
  font-size: 12px;
  color: #555;
  line-height: 1.5;
  text-align: justify;
}

.seminario-right {
  flex: 1 1 35%;
}

.seminario-img {
  width: 100%;
  height: auto;
  display: block;
  align-content: center;
}

.seminario-btn-wrap {
  text-align: center;
  margin-top: 25px;
}

.seminario-btn {
  background-color: #007acc;
  color: white;
  padding: 12px 28px;
  font-size: 0.90rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.seminario-btn:hover {
  background-color: #005fa3;
}

/* Responsive: en móvil apilan */
@media (max-width: 768px) {
  .seminario-container {
    flex-direction: column;
    gap: 20px;
  }

  .seminario-box {
    flex: unset;
    width: 100%;
    margin-top: 10%;
    margin-bottom: 5%;
  }

  .seminario-content {
    flex-direction: column;
    align-items: center;
  }
  
  .seminario-left,
  .seminario-right {
    flex: unset;
    width: 100%;
    text-align: center;
  }
  
  .seminario-tab {
    left: 50%;
    transform: translateX(-50%);
    top: -30px;
  }

  .seminario-img {
    width: 80%;
    margin: 0 auto;
  }
}




/* Contenedor principal con fondo */
.tokushu-container {
    display: flex;
    flex-direction: column;
    padding: 16px;
    gap: 16px;
    background-color: #c0dcf347;
}

/* Columnas */
.tokushu-column {
    width: 100%;
}

/* Imágenes */
.tokushu-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin-bottom: 8px;
}

/* Imagen centrada solo para móviles */
.tokushu-mobile-image {
    margin-left: auto;
    margin-right: auto;
    width: 70%;
}

/* Ocultar imagen secundaria en móvil */
.tokushu-desktop-image {
    display: none;
}

/* Banner del título */
.tokushu-title {
    background-color: #51708a;
    color: #fff;
    padding: 8px 12px;
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: bold;
    display: inline-block;
}

/* Texto */
.tokushu-text {
    text-align: justify;
    line-height: 1.6;
    font-size: 0.80rem;
    color: #333;
}

/* Pantallas grandes */
@media (min-width: 768px) {
    .tokushu-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
    }

    .tokushu-right,
    .tokushu-left {
        width: 48%;
    }

    /* Ajustes para texto */
    .tokushu-text {
        font-size: 1rem;
    }

    .tokushu-title {
        font-size: 24px;
    }

    /* Mostrar segunda imagen y quitar centrado de la primera */
    .tokushu-desktop-image {
        display: block;
    }

    .tokushu-mobile-image {
        margin-left: 0;
        margin-right: 0;
    }
}

.seminario-tab-tokushu {
  position: absolute;
  width: 80%;
  height: auto;
  top: -25px;
  left: 30px;
  background-color: #329ad7;
  padding: 10px 25px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

