/* ═══════════════════════════════════════
   VARIABLES CSS
════════════════════════════════════════ */
:root {
  --red: #c8102e;
  --fuchsia: #d7004a;
  --olive: #7a8c1e;
  --lime: #8fad1c;
  --lime-dark: #6b8215;
  --dark: #1a1a1a;
  --light-bg: #f0f0ec;
  --white: #ffffff;
  --footer-bg: #5a6e10;
  --font-display: Helvetica, Arial, sans-serif;
  --font-body: Helvetica, Arial, sans-serif;

  /* Layout - Sistema de 12 columnas */
  --container-max-width: 1440px;
  --gutter: 20px;
}

/* ═══════════════════════════════════════
   RESET Y BASE
════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--dark);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

/* Contenedor principal - 10 columnas de 12 (con 1 columna a cada lado) */
.container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  /* 10/12 = 83.33% del ancho máximo, con márgenes automáticos */
}

/* ═══════════════════════════════════════
   TOP BAR / HEADER
════════════════════════════════════════ */
.topbar {
  background: var(--fuchsia);
  min-height: 72px;
  position: relative;
  z-index: 100;
  /* Decorative insect silhouettes */
  background-image:
    radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.04) 0%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='80' opacity='.15'%3E%3Cellipse cx='60' cy='40' rx='8' ry='18' fill='%23fff'/%3E%3Cellipse cx='40' cy='35' rx='20' ry='6' fill='%23fff'/%3E%3Cellipse cx='80' cy='35' rx='20' ry='6' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-position: right center;
}

.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

/* Logos */
.topbar-logo-left,
.topbar-logo-right {
  display: flex;
  align-items: center;
}

.logo-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.6);
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-circle svg {
  width: 48px;
  height: 48px;
  fill: var(--white);
  opacity: 0.9;
}

.unalm-badge {
  width: 54px;
  height: 54px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.unalm-badge svg {
  width: 36px;
  height: 36px;
  fill: white;
  opacity: 0.9;
}

/* Navegación PC */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

/* Separadores de menú principal */
.main-nav>ul>li {
  position: relative;
}

.main-nav>ul>li:not(:last-child)::after {
  content: '|';
  color: rgba(255, 255, 255, 0.5);
  position: absolute;
  right: -0.85rem;
  /* Ajuste visual a la mitad del gap (1.6rem) */
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.main-nav ul li a {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.5rem 0;
  position: relative;
}

.main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--lime);
  transition: width 0.3s ease;
}

.main-nav ul li a:hover::after {
  width: 100%;
}

/* Submenús Dropdown */
.main-nav ul li.has-submenu {
  position: relative;
}

.main-nav ul li .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border-radius: 0 0 6px 6px;
  z-index: 1000;
  gap: 0;
}

.main-nav ul li.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  top: 100%;
}

.main-nav ul li .submenu li {
  width: 100%;
}

.main-nav ul li .submenu li a {
  color: var(--dark);
  padding: 10px 18px;
  display: block;
  text-transform: none;
  font-size: 0.9rem;
  letter-spacing: normal;
}

.main-nav ul li .submenu li a:hover {
  background: var(--light-bg);
  color: var(--red);
}

.main-nav ul li .submenu li a::after {
  display: none;
}

/* Botón hamburguesa (oculto en PC) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════
   SOCIAL BAR
════════════════════════════════════════ */
.social-bar {
  background: #c2da42;
  padding: 0.7rem 0;
}

.social-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.social-icons a {
  color: var(--dark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.search-bar {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  padding: 0.3rem 0.8rem;
  gap: 0.5rem;
}

.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  width: 180px;
}

.search-bar input::placeholder {
  color: rgba(0, 0, 0, 0.5);
}

.search-bar button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark);
  font-size: 1rem;
  display: flex;
  align-items: center;
}

/* ═══════════════════════════════════════
   HERO SECTION
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 480px;
  background: #111;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0, 0, 0, 0.72) 35%, rgba(0, 0, 0, 0.1) 70%),
    url('../images/hero-insect.jpg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a0a 0%, #0d1a05 60%, #1a1a0a 100%);
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 500px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--lime);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 260px;
}

.hero-photo-credit {
  position: absolute;
  bottom: 1rem;
  right: 1.2rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════
   INTRO SECTION
════════════════════════════════════════ */
.intro-section {
  background: var(--light-bg);
  text-align: center;
  padding: 2.8rem 2rem;
}

.intro-section p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 0.97rem;
  line-height: 1.75;
  color: #444;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   CARDS GRID
════════════════════════════════════════ */
.cards-section {
  background: var(--light-bg);
  padding: 0 0 3rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 6px;
}

.card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img {
  transform: scale(1.05);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}

/* Card 1 – Sala Exhibición */
.card-1 {
  background: var(--lime);
}

.card-1 .card-overlay {
  justify-content: flex-start;
}

.card-1 .card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  text-align: center;
  padding: 1rem 0.5rem 0;
}

.card-1 .card-img-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 55%;
  overflow: hidden;
}

.card-1 .card-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card-1:hover .card-img-wrapper img {
  transform: scale(1.05);
}

/* Card 2 – Arte y Naturaleza */
.card-2 {
  background: #2a2a1a;
  position: relative;
}

.card-2 .card-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
  transition: transform 0.5s, opacity 0.5s;
}

.card-2:hover .card-bg-img {
  transform: scale(1.05);
  opacity: 0.65;
}

.card-2 .card-overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 60%);
}

.card-2 .card-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1.2;
}

/* Card 3 – Investigar */
.card-3 {
  background: var(--lime);
  display: flex;
  flex-direction: column;
}

.card-3 .card-top {
  padding: 1.2rem 1rem 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.card-3 .card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.card-3 .card-subtitle {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.5;
}

.card-3 .card-photo {
  flex: 1;
  overflow: hidden;
}

.card-3 .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card-3:hover .card-photo img {
  transform: scale(1.05);
}

/* Card 4 – Maestría */
.card-4 {
  background: #1a1a0d;
  display: flex;
  flex-direction: column;
}

.card-4 .card-photo {
  flex: 1;
  overflow: hidden;
}

.card-4 .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.card-4:hover .card-photo img {
  transform: scale(1.05);
}

.card-4 .card-bottom {
  background: var(--lime);
  padding: 1rem 1.2rem;
}

.card-4 .card-tagline {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.85);
}

.card-4 .card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* ═══════════════════════════════════════
   INSECT STRIP
════════════════════════════════════════ */
.insect-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 200px;
  overflow: hidden;
}

.insect-strip-item {
  overflow: hidden;
  background: #f5f0e8;
  position: relative;
}

.insect-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.insect-strip-item:hover img {
  transform: scale(1.08);
}

.strip-1 {
  background: linear-gradient(135deg, #8b6914, #c9a227);
}

.strip-2 {
  background: linear-gradient(135deg, #2d5a1b, #4a8c2a);
}

.strip-3 {
  background: linear-gradient(135deg, #1a1a0a, #3a3a1a);
}

.strip-4 {
  background: linear-gradient(135deg, #1b4d1b, #2d7a2d);
}

/* ═══════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: #c2da42;
  color: var(--dark);
  padding: 2.5rem 0 1.5rem;
  background-image: url('../assets/images/MERKB_FOOTER.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* El diseño de hojas del fondo le da un aspecto natural y premium */
}



.footer-top {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: var(--dark);
  font-size: 1.1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1.5fr repeat(4, 1fr);
  gap: 2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 1.8rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-logo-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.footer-logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-logo-circle svg {
  width: 36px;
  height: 36px;
  fill: white;
  opacity: 0.85;
}

.footer-brand h3 {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.6rem;
}

.footer-brand p,
.footer-brand address {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}

.footer-brand a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 0.4rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}


.footer-col ul li a {
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.78);
}


.footer-col ul li a:hover {
  color: var(--dark);
  font-weight: 600;
}

.footer-col ul li a.strong {
  font-weight: 700;
  color: var(--dark);
}

.footer-bottom {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.6);
}

/* ═══════════════════════════════════════
   RESPONSIVE - TABLET (max-width: 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .insect-strip {
    grid-template-columns: repeat(2, 1fr);
    height: 300px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE - MÓVIL (max-width: 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Header responsive */
  .topbar .container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0.8rem var(--gutter);
  }

  /* Logos centrados en móvil con 10px de espacio */
  .topbar-logo-left,
  .topbar-logo-right {
    order: 0;
  }

  .topbar-logo-left {
    margin-right: 10px;
  }

  .topbar-logo-right {
    margin-left: 10px;
  }

  /* Botón hamburguesa visible */
  .nav-toggle {
    display: flex;
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
  }

  /* Navegación oculta por defecto en móvil */
  .main-nav {
    order: 4;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .main-nav.active {
    max-height: 300px;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding-top: 1rem;
  }

  .main-nav ul li {
    width: 100%;
    text-align: center;
  }

  .main-nav ul li a {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  /* Ocultar el separador | en móvil */
  .main-nav>ul>li::after {
    display: none;
  }

  /* Submenús en Móvil */
  .main-nav ul li .submenu {
    position: static;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    min-width: 100%;
    background: transparent;
    padding: 0 0 0 1.5rem;
    display: none;
    /* Oculto por defecto en móvil, habría que añadir un toggle JS o mostrarlo fijo */
  }

  /* Para demostración rápida, los mostramos fijos pero con estilo más leve */
  .main-nav ul li.has-submenu:hover .submenu,
  .main-nav ul li .submenu {
    display: flex;
  }

  .main-nav ul li .submenu li a {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: none;
    padding: 0.5rem 0;
    font-size: 0.85rem;
  }

  .main-nav ul li .submenu li a:hover {
    background: transparent;
    color: var(--white);
  }

  /* Social bar responsive */
  .social-bar .container {
    flex-direction: column;
    padding: 0.8rem var(--gutter);
  }

  .search-bar input {
    width: 100%;
  }

  /* Cards a una columna */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* Insect strip a 2 columnas */
  .insect-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer a una columna */
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

/* ═══════════════════════════════════════
   RESPONSIVE - MÓVIL PEQUEÑO (max-width: 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .logo-circle {
    width: 56px;
    height: 56px;
  }

  .logo-circle svg {
    width: 36px;
    height: 36px;
  }

  .unalm-badge {
    width: 44px;
    height: 44px;
  }

  .unalm-badge svg {
    width: 28px;
    height: 28px;
  }

  .insect-strip {
    grid-template-columns: 1fr;
    height: auto;
  }

  .insect-strip-item {
    height: 200px;
  }
}

/* aqui el css para la agenda */

.agenda-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.agenda-card {
  display: flex;
  background: var(--light-bg);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  height: 180px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.agenda-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.agenda-content {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.agenda-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--fuchsia);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.agenda-summary {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: auto;
  /* Empuja la fecha hasta el fondo */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.agenda-date {
  font-size: 0.85rem;
  font-weight: 600;
  color: #777;
  margin-top: 1rem;
}

.agenda-image-wrapper {
  width: 140px;
  flex-shrink: 0;
}

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

/* Responsividad */
@media (max-width: 1024px) {
  .agenda-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .agenda-grid {
    grid-template-columns: 1fr;
  }

  .agenda-card {
    height: auto;
    min-height: 160px;
  }

  .agenda-image-wrapper {
    width: 120px;
  }
}

/* aqui el estilo de las secciones informativas*/

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.info-card {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  height: 580px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}



.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.info-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.info-card:hover .info-img {
  transform: scale(1.08);
}

.info-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 0;
  text-align: center;
}



.info-card-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}


.info-btn-container {
  text-align: right;
}

.info-btn {
  display: inline-block;
  background: #d7004a;
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 0;
  text-decoration: none;
  font-weight: bold;
  font-family: Helvetica, Arial, sans-serif;
  font-size: 0.95rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.info-btn:hover {
  background: #a01f40;
  transform: translateX(5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  opacity: 1;
}



@media (max-width: 1024px) {
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .info-card {
    height: 480px;
  }
}

@media (max-width: 600px) {
  .more-info-section .container {
    padding: 0;
  }

  .info-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-card {
    height: 550px;
  }
}



/* ═══════════════════════════════════════
   INSECT FOOTER (PRE-FOOTER)
   Imagen a ancho completo
   ════════════════════════════════════════ */
.insect-footer {
  width: 100%;
  overflow: hidden;
  background: var(--white);
  line-height: 0;
  /* Remueve espacio inferior de la imagen */
}

.insect-footer-img {
  width: 100%;
}

.insect-footer-img img {
  width: 100%;
  height: auto;
  display: block;
}