body {
  font-family: 'Arimo', sans-serif;
  margin: 0;
  background: #fff;
  color: #333;
}

/* FIX NAVBAR */
.hero-seo-new {
  padding-top: 120px; /* 🔥 evita que tape navbar */
}

/* CONTENEDOR */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

/* HERO */
.hero-seo-new {
  background: linear-gradient(90deg, #fff 55%, #FBEDCD 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px; /* 🔥 separación real */
}

.hero-content {
  max-width: 520px;
}

.hero-content h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero-content p {
  text-align: justify;
  line-height: 1.7;
}

/* IMAGEN */
.hero-image-new {
  display: flex;
  justify-content: center;
}

.hero-image-new img {
  width: 320px;
}

/* BOTON */
.btn-cta {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(135deg, #F0BD4C, #e6a93a);
  color: white;
  border-radius: 999px;
  transition: .3s;
}

.btn-cta:hover {
  transform: scale(1.05);
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 25px;
}

/* CARD MEJORADO */
.card {
  text-decoration: none;
  color: #333;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  transition: .3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
}

.card-info {
  padding: 15px;
}

.card-info h3 {
  margin: 5px 0;
  color: #F03591;
}

.card-info p {
  font-size: 14px;
  color: #666;
}

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

/* MAPA MEJORADO */
.mapa iframe {
  width: 100%;
  height: 400px;
  border: 0;
  filter: grayscale(20%) contrast(1.1);
}

/* SEO TEXT */
.seo-text p {
  text-align: justify;
  line-height: 1.8;
}

/* BACKLINKS */
.backlinks a {
  color: #F03591;
  font-weight: 600;
  text-decoration: none;
}

.backlinks a:hover {
  text-decoration: underline;
}

/* MOBILE */
@media (max-width:768px) {

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content p {
    text-align: center;
  }

  .hero-image-new img {
    width: 220px;
  }

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

  /* 🔥 CAMBIO DE ORDEN */
  .mapa {
    order: -1;
  }

}