/* Logo principal en el header */
.logo-header {
  margin: 0;
  padding: 1rem 0;
  text-align: center;  /* Centrado horizontal */
}

.logo-header img.logo-img {
  width: 200px;         /* Ajusta el tamaño del logo */
  height: auto;
}

/* Responsivo */
@media (max-width: 768px) {
  .logo-header img.logo-img {
    width: 140px;
  }
}

/* =======================
   HERO SECTION
   ======================= */

/* ======================
   SECCIÓN: HERO
   ====================== */
.hero {
  background: url('../images/Banner-RotoKaiju-Monogera-01.webp') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  padding: 40px 2rem 2rem; /* o incluso menos, dependiendo de la altura de tu menú */
}

.hero-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffffff, #ededee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

.hero-text p {
  font-size: 1.35em;
  line-height: 1.7;
  color: #f5f5f5;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  margin-top: 1em;
}

.hero-text strong {
  color: #ff3860;
  font-weight: bold;
}

.hero-text em {
  color: #ffe082;
  font-style: italic;
  font-weight: bold;
}

.destacado {
  display: inline-block;
  margin-top: 0.5em;
  color: #fff;
  font-weight: 600;
  background: rgba(213, 35, 73, 0.9);
  padding: 0.2em 0.6em;
  border-radius: 6px;
  font-size: 1.1em;
}





/* Boton  Colección*/


.btn-roto {
  display: inline-block;
  margin-top: 1.5em;
  padding: 0.75em 2em;
  background-color: #d52349;
  color: #fff;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-roto:hover {
  background-color: #a01c35;
}


.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}



/* =======================
   HERO SECTION BOTONES INDEPENDIENTES
   ======================= */


.hero-banner {
  background: url('https://catpate.com/rotokaiju.comtest/assets/images/banner-monogera-sin-texto.png') center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
    padding: 0;
  padding-top: 2rem; /* sólo si tu header es fijo, para compensar su altura */
  position: relative;
}

.hero-content {
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 1rem;
  max-width: 800px;
}

.hero-content h1 {
  font-family: 'Bangers', cursive;
  font-size: 3rem;
  color: #ff3e3e;
  text-shadow: 3px 3px 0 #000;
}

.hero-content p {
  font-size: 1.5rem;
  color: #ffff66;
  text-shadow: 2px 2px 0 #000;
  margin-bottom: 2rem;
}

.botones-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.boton-estallido {
  font-family: 'Bangers', cursive;
  font-size: 1.4rem;
  color: #e31818;
  background: yellow;
  padding: 1rem 1.5rem;
  border-radius: 50% 20% / 30% 40%;
  box-shadow: 0 0 0 5px #000, 3px 3px 0 #000;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.2;
  transform: rotate(-5deg);
}

.boton-ver-figura {
  font-family: 'Luckiest Guy', cursive;
  font-size: 1.3rem;
  background-color: #ffcc00;
  color: #000;
  padding: 1rem 2rem;
  border: 4px solid #000;
  border-radius: 8px;
  box-shadow: 4px 4px 0 #000;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.boton-ver-figura:hover {
  transform: scale(1.05);
}


/**/

/*----------_Style queines somos*/

/* QUIÉNES SOMOS - Bloque principal */
.seccion-quienes {
  background-color: #111;
  color: #f8f8f8;
  padding: 4rem 1rem;
  text-align: left;
  font-family: 'Roboto', sans-serif;
  line-height: 1.7;
}

.seccion-quienes .container {
  max-width: 1200px;
  margin: 0 auto;
}

.seccion-quienes h2 {
  font-size: 2.5rem;
  color: #ff3e3e;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 0 #000;
}

.seccion-quienes h3 {
  font-size: 1.8rem;
  margin-top: 2rem;
  color: #ffe600;
  text-shadow: 1px 1px 0 #000;
}

.seccion-quienes p {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: #ddd;
}

.seccion-quienes strong {
  color: #fff;
}

.seccion-quienes ul {
  margin-top: 1rem;
  padding-left: 1.5rem;
}

.seccion-quienes ul li {
  margin-bottom: 0.5rem;
  list-style: square;
  color: #ccc;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .seccion-quienes h2 {
    font-size: 2rem;
  }
  .seccion-quienes h3 {
    font-size: 1.4rem;
  }
}
