
:root {
    /* Colores */
    --color-oscuro: #000000;
    --color-enfasis: #fee81f;
    --color-alternativo: #ff3939;

      --comic-black: #000;
  --comic-white: #fff;

  --comic-yellow: #f2c94c;   /* mostaza */
  --comic-red: #e10600;

  --texto-comic: "Bangers", cursive;

    /* Backgrounds */
    --background-comic-rojo: url("./img/fondo_radial_rojo.jpg");
    --background-comic-azul: url("./img/fondo_radial_azul.jpg");
    --background-comic-verde: url("./img/fondo_radial_verde.jpg");
    --background-comic-naranja: url("./img/fondo_radial_naranja.jpg");
    --background-comic-rosa: url("./img/fondo_radial_rosa.jpg");
    --background-comic-celeste: url("./img/fondo_radial_celeste.jpg");
    --background-comic-morado: url("./img/fondo_radial_morado.jpg");
    --background-comic-azul-morado: url("./img/fondo_radial_azul_morado.jpg");
    --background-comic-marino: url("./img/fondo_radial_marino.jpg");
    --background-comic-naranja2: url("./img/fondo_radial_naranja2.jpg");
    --background-comic-rojo2: url("./img/fondo_radial_rojo2.jpg");


    /* Fuentes tipos */
    --texto-primario: "Montserrat", Arial, Helvetica, sans-serif;
    /*--texto-comic: "Anton", Arial, Helvetica, sans-serif;*/

    /* Fuentes tamanos */
    --texto-tamano-pequeno: clamp(0.95rem, 2vw, 1.3rem);
    --texto-tamano-normal: clamp(0.95rem, 2.5vw, 1.3rem);
    --texto-tamano-grande: clamp(1.5rem, 2.5vw, 2rem);
    --texto-subtitulos-1: clamp(2.8rem, 6vw, 3rem);
    --texto-subtitulos-2: clamp(1.2rem, 3vw, 2rem);
    --texto-subtitulos-3: clamp(1.1rem, 2vw, 1.75rem);
    --texto-subtitulos-4: clamp(1rem, 2.25vw, 1.50rem);
}

html {
    font-size: 16px; /* no lo cambies */
}

body, div, p, a{
    margin: 0;
    padding: 0;
    border: 0;
    font-family: var(--texto-primario)
}

a{
    text-decoration: none;
}

.header {
    margin: 0;
    border: 0;
    flex-direction: row;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 12px;
  position: relative;
  z-index: 300;
  background-color: var(--color-oscuro);
}

.hamburger {
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 400;
}

.hamburger span {
  height: 4px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 250;
  background:
    radial-gradient(#000 1px, transparent 1px),
    linear-gradient(135deg, #ffe600 0%, #ff9800 100%);

  background-size:
    10px 10px,
    cover;

  background-blend-mode: multiply;
}

.mobile-menu.active {
  transform: translateY(0);
}

.mobile-menu a {
  font-family: "Anton", sans-serif;
  font-size: 2.2rem;
  color: #000000;
  text-decoration: none;
  letter-spacing: 0.1rem;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}



.logo-header{
    max-width: 75px;
}

.logo-container{
    margin: 0 3rem 0 1rem;
}

.menu-item{
    margin: 0 2rem 0 0; 
    text-decoration: none;
    color: white;
    font-size: var(--texto-tamano-pequeno);
    font-family: var(--texto-primario)
}

.landing-box{
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  padding: 5svh 0 0 0;
}

.landing-logo{
    margin: 5svh 0 0 15svh;
    max-width: 50svw;
}

.menu-landing{
  background-color: #fdfdfb;
  background-image: radial-gradient(#000 5%, transparent 5%);
  background-size: 20px 20px;
  padding: 3rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  justify-content: space-evenly;
  font-size: 3rem;
  padding: 2rem 0 2rem 0;
}

.landing-hero-impact{
  position: relative;
  min-height: 80vh;
  padding: 4rem 2rem;

  background-color: #f2c94c;
  background-image:
    radial-gradient(#000 8%, transparent 9%);
  background-size: 14px 14px;

  overflow: hidden;
}

/* Capa oscura para contraste */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0,0,0,0.65) 0%,
    rgba(0,0,0,0.25) 50%,
    rgba(0,0,0,0.05) 100%
  );
  z-index: 1;
}

.hero-content{
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 620px;

  display: flex;
  flex-direction: column;
}

/* Tag superior */
.hero-tag{
  display: inline-block;
  margin: 2rem;
  padding: 0.4rem 0.75rem;

  background: #e10600;
  color: #fff;
  font-family: "Bangers", cursive;
  font-size: var(--texto-subtitulos-2);
  text-align: center;

  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;

}

/* Título */
.hero-title{
  font-family: "Bangers", cursive;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  line-height: 0.95;
  margin-bottom: 1.5rem;

  color: #fff;
  text-shadow:
    4px 4px 0 #000,
    8px 8px 0 #000;
}

.hero-title{
  margin: 2rem 0 2rem 0;  
}

.hero-title span{
  color: #f2c94c;
}

/* Subtítulo */
.hero-subtitle{
  font-size: 1.2rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
}

/* Botones */
.hero-actions{
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.fuente-comic{
  font-family: "Bangers", cursive;
  text-decoration: none;
  text-shadow: 4px 4px 0 #000, 8px 8px 0 #000;
}

.fuente-yellow{
  color: var(--comic-yellow);
}

.fuente-red{
  color: var(--comic-red);
}

.fuente-white{
  color: var(--comic-white);
}

.fuente-black{
  color: var(--comic-black);
}

.hero-cta{
  padding: 0.75rem 1.5rem;
  font-family: "Bangers", cursive;
  font-size: 1.2rem;
  text-decoration: none;


  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta.primary{
  background: #e10600;
  color: #fff;
}

.hero-cta.secondary{
  background: #fff;
  color: #000;
}

.hero-cta:hover{
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}

/* Visual */
.hero-visual{
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.hero-visual img{
  max-width: 300px;
  transform: rotate(-5deg);
}



.comic-bg {
  background-color: white;
  background-image: radial-gradient(#c6a323 1px, transparent 3px);
  background-size: 32px 32px;
}

.menu-card h2{
  margin: 1rem 0 0 0;
  text-transform: uppercase;
}

.card-enlace-sub-menu{
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;

  margin: 0 0 1.5rem 0;
  padding: 0.4rem;
  max-width: 260px;

  /* Fondo cómic pop-art */
  background-image: radial-gradient(
    var(--comic-black) 10%,
    transparent 11%
  );
  background-size: 10px 10px;

  /* Bordes fuertes */
  border: 5px solid var(--comic-black);
  border-radius: 10px;

  /* Sombra tipo viñeta */
  box-shadow: 6px 6px 0 var(--comic-black);

  /* Dinamismo */
  transform: rotate(-1deg);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-enlace-sub-menu.heroes{
  background-color: var(--comic-yellow);
}

.card-enlace-sub-menu.sidekicks{
  background-color: var(--comic-red);
}

.card-enlace-sub-menu.extras{
  background-color: #ffdc91;
}

.titulo-comic{
  font-family: var(--texto-comic);
  font-size: var(--texto-subtitulos-1);
  text-align: center;

  color: var(--comic-red);
  letter-spacing: 0.5px;

  text-shadow:
    -1px -1px 0 var(--comic-black),
     1px -1px 0 var(--comic-black),
    -1px  1px 0 var(--comic-black),
     1px  1px 0 var(--comic-black),
     3px  3px 0 var(--comic-black);
}

.card-enlace-sub-menu:hover{
  transform: rotate(1deg) scale(1.04);
  box-shadow: 9px 9px 0 var(--comic-black);
}

/* Badge */
.info-adicional::before{
  content: "¡PRUEBA NUESTRA CERVEZA BEERKINGO!";
  position: absolute;
  top: -5px;
  right: -50px;

  background: var(--comic-red);
  color: var(--comic-white);

  font-family: var(--texto-comic);
  font-size: 1.2rem;
  padding: 6px 9px;

  border: 3px solid var(--comic-black);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--comic-black);

  transform: rotate(15deg);
}

/* Imagen */
.card-enlace-sub-menu img{
  max-width: 200px;
  background: var(--comic-white);
  border-bottom: 4px solid var(--comic-black);
}

/* Card interior */
.card-comic{
  margin: 8px;
  padding: 0.5rem;

  background: var(--comic-white);
  border: 4px solid var(--comic-black);
  border-radius: 6px;

  box-shadow: 3px 3px 0 var(--comic-black);
}

/* Texto */
.card-comic p{
  font-family: "Bangers", cursive;
  text-decoration: none;
  text-shadow: 2px 2px 0 #000, 2px 2px 0 #000;
  font-size: clamp(1.5rem, 8svw, 2rem);
  text-align: center;
  color: var(--comic-red);
}


.sub-menu{
    padding: 0;
    margin: 0;
    justify-content: center;
}

.sub-menu-regular{
    flex-direction: row;
}

.sub-menu-reverse{
    flex-direction: row-reverse;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

/* Altura fija del carrusel */
.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.4s ease;
}


.slide {
  flex: 0 0 400px;
  opacity: 0.4;
  transform: scale(0.85);
  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.slide.active {
  opacity: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  z-index: 2;
}


.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  z-index: 500;
}

.prev { left: 10px; }
.next { right: 10px; }



.fotos-menu{
    display: flex;
    background-color: var(--color-oscuro);
    align-items: center;
}

.fotos-menu-lateral{
    flex-direction: column;
    padding: 0 1svw 0 1svw;
}

.fotos-menu-lateral img{
    max-width: 95%;
    margin: 1rem 0 1rem 0;
}

.contenido-menu-lateral {
  display: flex;
  flex-direction: column;

  width: min(90vw, 1100px);   /* 3/4 de pantalla o límite visual */
  margin: 0 auto;             /* centra el contenido */

  padding: clamp(1rem, 4vw, 2.5rem);
}

.divisor-menu{
  margin: 0;
  width: auto;
  border: none;
  background-color: var(--color-oscuro);
  height: clamp(15px, 2svh, 40px);
}

.background-comic-rojo{
    background-image: var(--background-comic-rojo);   
}

.background-comic-azul{
    background-image: var(--background-comic-azul);   
}

.background-comic-verde{
    background-image: var(--background-comic-verde);   
}

.background-comic-naranja{
    background-image: var(--background-comic-naranja);   
}

.background-comic-rosa{
    background-image: var(--background-comic-rosa);   
}

.background-comic-celeste{
    background-image: var(--background-comic-celeste);   
}

.background-comic-morado{
    background-image: var(--background-comic-morado);   
}

.background-comic-azul-morado{
    background-image: var(--background-comic-azul-morado);   
}

.background-comic-marino{
    background-image: var(--background-comic-marino);   
}

.background-comic-naranja2{
    background-image: var(--background-comic-naranja2);   
}

.background-comic-rojo2{
    background-image: var(--background-comic-rojo2);   
}

.price-badge {
  width: clamp(120px, 28vw, 170px);
  margin: 0 1rem 0 1rem;
  aspect-ratio: 1 / 1;
  border-radius: 50%;

  background:
    radial-gradient(circle at 30% 30%, #fff3, transparent 40%),
    repeating-radial-gradient(
      circle,
      #ffd21f 0 6px,
      #ffbf00 6px 12px
    );

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  box-shadow:
    6px 6px 0 #000,
    inset -6px -6px 0 #ffb400;

  font-family: "Anton", sans-serif;
  text-align: center;
}

/* PRECIO */
.price-badge .price {
  font-size: clamp(2rem, 6vw, 2.8rem);
  line-height: 1;
  color: #000;
  text-shadow:
    -2px -2px 0 #fff,
     2px -2px 0 #fff,
    -2px  2px 0 #fff,
     2px  2px 0 #fff;
}

/* TEXTO SECUNDARIO */
.price-badge .unit {
  margin-top: 0.25rem;
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #000;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow:
    -1.5px -1.5px 0 #fff,
     1.5px -1.5px 0 #fff,
    -1.5px  1.5px 0 #fff,
     1.5px  1.5px 0 #fff;
}


.contenido-menu-lateral h1 {
    text-align: center;
    font-family: "Anton", Arial, Helvetica, sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;

    font-size: var(--texto-subtitulos-1);
    color: #fff;

    text-shadow:
        -0.11em -0.11em 0 #000,
         0.11em -0.11em 0 #000,
        -0.11em  0.11em 0 #000,
         0.11em  0.11em 0 #000,
        -0.11em  0      0 #000,
         0.11em  0      0 #000,
         0      -0.11em 0 #000,
         0       0.11em 0 #000;
}

.contenido-menu-lateral h2 { 
    font-family: "Anton", Arial, Helvetica, sans-serif;
    text-transform: uppercase;

    font-size: var(--texto-subtitulos-2);
    margin: 0;
    text-align: left;
    color: var(--color-enfasis);
    letter-spacing: 0.25rem;

    text-shadow:
        -0.1em -0.1em 0 #000,
         0.1em -0.1em 0 #000,
        -0.1em  0.1em 0 #000,
         0.1em  0.1em 0 #000,
        -0.1em  0     0 #000,
         0.1em  0     0 #000,
         0     -0.1em 0 #000,
         0      0.1em 0 #000;
}

.contenido-menu-lateral p{
    color: #fff;
    font-size: var(--texto-tamano-normal);
}

.cards-container{
    margin-top: 3vh;

}

.menu-item-card{
    display: flex;
    flex-direction: row;
    margin: 0 0 3vh 0;
    justify-content: space-between;
}

.menu-item-info{
    max-width: 65%;
}

.menu-item-precios{
    max-width: 25%;
}


.menu-item-precios{
    font-family: "Anton", Arial, Helvetica, sans-serif;
    text-transform: uppercase;

    font-size: var(--texto-subtitulos-2);
    margin: 0;
    text-align: left;
    color: var(--color-enfasis);
    letter-spacing: 0.25rem;

    text-shadow:
        -0.1em -0.1em 0 #000,
         0.1em -0.1em 0 #000,
        -0.1em  0.1em 0 #000,
         0.1em  0.1em 0 #000,
        -0.1em  0     0 #000,
         0.1em  0     0 #000,
         0     -0.1em 0 #000,
         0      0.1em 0 #000;
}

.menu-item-precios h3{
    font-size: var(--texto-subtitulos-3);
    margin: 0.5rem 0 0 0;
    text-align: right;
}

.menu-item-precios h4{
    font-size: var(--texto-subtitulos-4);
    margin: 0.5rem 0 0 0;
    text-align: right;
}

.precios-cervezas{
  display: flex;
  flex-direction: row;
  justify-content: center;
}

/* ===============================
    QUIENES SOMOS
   =============================== */
/* ====== QUIÉNES SOMOS – ESTILO AGRESIVO ====== */

.quienes-somos {
  padding: 3.5rem 1.2rem;
  background:
    repeating-linear-gradient(
      45deg,
      #f7f7f7,
      #f7f7f7 14px,
      #efefef 14px,
      #efefef 28px
    );
  position: relative;
  overflow: hidden;
}

.quienes-somos h1 {
  font-family: 'Bangers', sans-serif;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 1.05;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-shadow: 3px 3px 0 #ffd400;
}

.quienes-somos p {
  font-size: 1rem;
  line-height: 1.6;
  color: #111;
  max-width: 520px;
  margin-bottom: 1.6rem;
}

.qs-frases {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}

.qs-frases span {
  background: #fff;
  border: 2px solid #000;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.8rem;
  text-transform: uppercase;
  box-shadow: 3px 3px 0 #000;
  pointer-events: none;
}

.qs-frases span:nth-child(1) { transform: rotate(-2deg); }
.qs-frases span:nth-child(2) { transform: rotate(2deg); }
.qs-frases span:nth-child(3) { transform: rotate(-1deg); }

.qs-img-box {
  margin-top: 2.5rem;
  background: #000;
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 10px 10px 0 #ffd400;
  max-width: 400px;

}

.qs-img-box img {
  width: 100%;
  display: block;
  border-radius: 14px;
  border: 3px solid #000;
}

/* Línea divisoria brutal */
.quienes-somos::after {
  content: "";
  display: block;
  height: 6px;
  margin-top: 3rem;
  background: repeating-linear-gradient(
    90deg,
    #000,
    #000 12px,
    transparent 12px,
    transparent 20px
  );
}

/* ====== DESKTOP ====== */
@media (min-width: 768px) {
  .quienes-somos {
    padding: 5rem 4rem;
    display: flex;
    flex-direction: row;
    align-items: center;

    height: 80Vh;
  }

  .qs-img-box {
    margin-top: 0;
  }

  .qs-wrapper{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-evenly;
    max-width: 1500px;
  }
}



/* ===============================
   CONTACTO – ESTILO CÓMIC
   =============================== */

.contacto-comic{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 1.25rem;
  background-color: #f2c94c;
  background-image: radial-gradient(
    rgba(0,0,0,0.35) 6%,
    transparent 7%
  );
  background-size: 18px 18px;
}

.contenedor-contacto{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
}

/* HEADER */
.contacto-header{
  text-align: center;
  margin-bottom: 2.5rem;
}

.contacto-header h2{
  font-family: "Bangers", cursive;
  font-size: 2.8rem;
  margin-bottom: 2rem;
  text-shadow: 6px 6px #000, 4px 4px #000;
  color: var(--comic-white);
}

.contacto-header p{
  font-weight: 600;
}

/* INFO */

.info-card{
  background: #fff;
  padding: 1.2rem;
  border: 4px solid #000;
  border-radius: 12px;
  box-shadow: 5px 5px 0 #000;
  text-align: center;
  width: 80%;
  margin-bottom: 1.5rem;
}

.info-card h2{
  font-family: "Bangers", cursive;
  font-size: 1.5rem;
  margin: 0.5rem;
}

/* REDES */
.contacto-redes{
  text-align: center;
  margin-bottom: 3rem;
}

.contacto-redes h2{
  font-family: "Bangers", cursive;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 6px 6px #000, 4px 4px #000;
  color: var(--comic-white);
}

.redes-links{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.red{
  display: block;
  width: 100%;
  max-width: 260px;
  padding: 0.9rem 1.2rem;

  font-family: "Bangers", cursive;
  font-size: 1.2rem;
  text-decoration: none;
  text-align: center;

  border: 4px solid #000;
  box-shadow: 5px 5px 0 #000;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.red:hover{
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}

.red.facebook{
  background: #1877f2;
  color: #fff;
}

.red.instagram{
  background: #e1306c;
  color: #fff;
}

.red.whatsapp{
  background: #25d366;
  color: #000;
}

/* MAPA */
.contacto-mapa h2{
  text-align: center;
  font-family: "Bangers", cursive;
  font-size: 2.8rem;
  margin-bottom: 1rem;
  text-shadow: 6px 6px #000, 4px 4px #000;
  color: var(--comic-white);
}

.mapa-box{
  border: 5px solid #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 6px 6px 0 #000;
}

.mapa-box iframe{
  width: 100%;
  height: 280px;
  border: 0;
}


/****** RESPONSIVE MOVILES ******/

@media (max-width: 399px){

.carousel-track {
    justify-content: center;
  }

  .slide {
    flex: 0 0 85%;
    transform: scale(0.9);
  }

  .slide.active {
    transform: scale(1);
  }

  .carousel-btn {
    font-size: 1.6rem;
  }

    .sub-menu{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .sub-menu-regular{
    flex-direction: column-reverse;
    }

    .sub-menu-reverse{
    flex-direction: column-reverse;
    }

 .hamburger {
    display: flex;
  }
}

/****** DESKTOP *******/

@media (min-width: 768px) {

  /* ocultar hamburguesa */
  .hamburger {
    display: none;
  }

  /* convertir el menú en barra horizontal dentro del header */
  .mobile-menu {
    position: absolute;
    top: 3%;
    right: 20px;
    transform: translateY(-50%) !important;

    display: flex;
    flex-direction: row;
    gap: 2rem;

    background: none;
    padding: 0;
    height: auto;
    width: auto;

    z-index: 400;
  }

  .mobile-menu a {
    font-family: "Anton", sans-serif;
    font-size: 1.2rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.15rem;
    text-shadow: none;
    white-space: nowrap;
  }

  /* desactivar comportamiento móvil */
  .mobile-menu.active {
    transform: translateY(-50%);
  }

  .menu-landing{
  background-color: #f7f7f7;
  background-image:
  repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.025) 0,
    rgba(0,0,0,0.025) 2px,
    transparent 2px,
    transparent 14px
  );

  display: flex;
  flex-direction:column;
  justify-content: space-evenly;
  font-size: 3rem;
  padding: 2rem 0 2rem 0;
  }

  .contacto-comic{
    padding: 6rem 8%;
    background-size: 26px 26px;
  }

  .contenedor-contacto{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 800px;
  }

  .contenedor-link-menu{
    display: flex;
    flex-direction: row;
    max-width: 1000px;
    width: 100%;
    justify-content: space-evenly;
  }

  /* HEADER */
  .contacto-header{
    max-width: 900px;
    margin: 0 auto 4rem auto;
  }

  .contacto-header h2{
    font-size: 4rem;
    text-shadow: 4px 4px 0 #000;
    color: var(--comic-white);
  }

  .contacto-header p{
    font-size: 1.15rem;
  }

  /* INFO EN 3 COLUMNAS */
  .contacto-info{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    width: 40vw;
  }

  .info-card{
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 7px 7px 0 #000;
    margin-bottom: 1rem;
  }

  .info-card h2{
    font-size: 1.8rem;
  }

  .info-card p{
    font-size: 1.05rem;
  }

  /* REDES EN FILA */
  .contacto-redes{
    margin-bottom: 2rem;
  }

  .contacto-redes h2{
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }

  .redes-links{
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }

  .red{
    max-width: 220px;
    font-size: 1.3rem;
    padding: 1rem 1.4rem;
  }

  /* MAPA PROTAGONISTA */
  .contacto-mapa{
    max-width: 1200px;
    margin: 0 auto;
  }

  .contacto-mapa h2{
    font-size: 2.8rem;
    margin-bottom: 2rem;
  }

  .mapa-box{
    box-shadow: 10px 10px 0 #000;
  }

  .mapa-box iframe{
    height: 460px;
    width: 40vw;
    max-width: 1000px;
  }

}


.landing-hero-impact{
  position: relative;
  min-height: 85svh;
  padding: 2.5rem 1.2rem;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;

  background-color: #f2c94c;
  background-image: radial-gradient(
    rgba(0,0,0,0.35) 6%,
    transparent 7%
  );
  background-size: 18px 18px;

  overflow: hidden;
}

/* Oscurece para contraste */
/* .hero-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  z-index: 1;
} */

/* Logo */
.hero-visual{
  position: relative;
  z-index: 2;
}

.hero-visual img{
  max-width: 300px;
  transform: rotate(-3deg);
}

/* Caja de contenido */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 520px;

  background: rgba(0,0,0,0.35);
  padding: 1.4rem 1.2rem;
  border-radius: 14px;

  color: #fff;
  
}

/* Tag */
.hero-tag{
  display: inline-block;
  margin-bottom: 0.9rem;
  padding: 0.35rem 0.7rem;

  background: #e10600;
  color: #fff;
  font-family: "Bangers", cursive;
  font-size: 1.25rem;

  border: 3px solid #000;
  box-shadow: 3px 3px 0 #000;
}

/* Título */
.hero-title{
  font-family: "Bangers", cursive;
  font-size: 2.6rem;
  line-height: 1.05;
  margin-bottom: 1rem;

  text-shadow:
    2px 2px 0 #000,
    4px 4px 0 #000;
}

.hero-title span{
  color: #f2c94c;
}

/* Subtítulo */
.hero-subtitle{
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 1.8rem;

  text-shadow: 1px 1px 0 #000;
}

/* Botones */
.hero-actions{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.hero-cta{
  padding: 0.9rem 1.2rem;
  max-width: 260px;
  width: 100%;

  font-family: "Bangers", cursive;
  font-size: 1.15rem;
  text-decoration: none;
  text-align: center;

  border: 3px solid #000;
  box-shadow: 5px 5px 0 #000;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta.primary{
  background: #e10600;
  color: #fff;
}

.hero-cta.secondary{
  background: #fff;
  color: #000;
}

.hero-cta:hover{
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 #000;
}


