:root {
  --red: #e31b23;
  --red-dark: #b81219;
  --red-light: #f5c6c8;
  --white: #ffffff;
  --off-white: #fdf8f6;
  --gray-50: #f9f5f3;
  --gray-100: #f0ebe8;
  --gray-200: #e0d8d4;
  --gray-400: #9e918c;
  --gray-600: #6b5e58;
  --dark: #1a0f0d;
  --dark-mid: #2d1f1b;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--dark);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 2rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
      to bottom,
      rgba(26, 15, 13, 0.52) 0%,
      rgba(26, 15, 13, 0.65) 60%,
      rgba(26, 15, 13, 0.88) 100%
    ),
    radial-gradient(
      ellipse 80% 60% at 50% 110%,
      rgba(227, 27, 35, 0.3) 0%,
      transparent 70%
    );
}

.petal {
  position: absolute;
  opacity: 0.06;
  animation: floatPetal linear infinite;
}

.petal svg {
  fill: var(--red);
}

.petal:nth-child(1) {
  top: -5%;
  left: 5%;
  width: 180px;
  animation-duration: 22s;
  animation-delay: 0s;
}
.petal:nth-child(2) {
  top: 10%;
  right: -2%;
  width: 240px;
  animation-duration: 28s;
  animation-delay: -8s;
}
.petal:nth-child(3) {
  bottom: 20%;
  left: -4%;
  width: 160px;
  animation-duration: 20s;
  animation-delay: -4s;
}
.petal:nth-child(4) {
  top: 50%;
  right: 5%;
  width: 120px;
  animation-duration: 18s;
  animation-delay: -12s;
}

@keyframes floatPetal {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
  100% {
    transform: translateY(0) rotate(360deg);
  }
}

.hero-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(227, 27, 35, 0.35);
  border: 1px solid rgba(227, 27, 35, 0.4);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.8rem;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.5);
  }
}

.hero-logo {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-title {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  color: var(--white);
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6), 0 1px 4px rgba(0, 0, 0, 0.8);
}

.hero-title em {
  font-style: italic;
  color: var(--red);
}

.hero-year {
  position: relative;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 3vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem;
}

.hero-sub {
  position: relative;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 1), 0 2px 32px rgba(0, 0, 0, 0.9);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.5rem;
  background: radial-gradient(
    ellipse 100% 120% at 50% 50%,
    rgba(0, 0, 0, 0.4) 0%,
    transparent 75%
  );
  padding: 0.5rem 1.5rem;
  border-radius: 12px;
}

.proximamente {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  padding: 1.2rem 2.5rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
}

.proximamente-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}

.proximamente-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.proximamente-sub {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.store-buttons {
  position: relative;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.4rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s ease;
  cursor: pointer;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.store-btn:hover {
  background: #222;
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

.store-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.store-btn .pre {
  font-size: 0.65rem;
  opacity: 0.7;
}
.store-btn .name {
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── HERO PHONES ── */
.hero-phones {
  position: relative;
  display: flex;
  justify-content: center;
  gap: -20px;
  margin-top: 3rem;
  width: 100%;
  max-width: 500px;
}

.phone-wrap {
  position: relative;
  width: min(180px, 48vw);
  flex-shrink: 0;
}

.phone-wrap:nth-child(1) {
  transform: rotate(-6deg) translateY(10px);
  z-index: 1;
}
.phone-wrap:nth-child(2) {
  transform: rotate(0deg);
  z-index: 3;
}
.phone-wrap:nth-child(3) {
  transform: rotate(6deg) translateY(10px);
  z-index: 1;
}

.phone-wrap img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 4px 16px rgba(0, 0, 0, 0.3);
}

/* ── SCREENSHOTS ── */
.screenshots-section {
  padding: 5rem 1.5rem;
  background: var(--gray-50);
  overflow: visible;
}

.screenshots-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.screenshots-section h2 em {
  font-style: italic;
  color: var(--red);
}

.screenshots-section .section-sub {
  text-align: center;
  color: var(--gray-600);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.screenshots-scroll {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 1rem 2rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
  display: none;
}

.screenshot-frame {
  flex-shrink: 0;
  scroll-snap-align: center;
  width: min(260px, 75vw);
}

.screenshot-frame img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.08);
  display: block;
}

.screenshot-caption {
  text-align: center;
  font-size: 0.78rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
  font-weight: 500;
}

/* ── SECTION LABEL ── */
.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  text-align: center;
  margin-bottom: 0.75rem;
}

/* ── FEATURES ── */
.features-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.features-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.features-section h2 em {
  font-style: italic;
  color: var(--red);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1060px;
  margin: 0 auto;
}

/* Si hay 7 tarjetas (nº impar), centrar la última en desktop */
.features-grid .feature-card:nth-child(7):last-child {
  grid-column: 2;
}

@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .features-grid .feature-card:nth-child(7):last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 0.75rem);
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .features-grid .feature-card:nth-child(7):last-child {
    grid-column: auto;
    max-width: none;
  }
}

.feature-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 20px;
  padding: 2rem 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(227, 27, 35, 0.08);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ── FIESTAS ── */
.fiestas-section {
  padding: 5rem 1.5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.fiestas-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 70% 50% at 50% 100%,
    rgba(227, 27, 35, 0.2) 0%,
    transparent 70%
  );
}

.fiestas-section .section-label {
  color: var(--red-light);
}

.fiestas-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: var(--white);
  margin-bottom: 3rem;
  position: relative;
}

.fiestas-section h2 em {
  font-style: italic;
  color: var(--red);
}

.fiestas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.fiesta-card {
  border-radius: 20px;
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.fiesta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-size: 60%;
  background-repeat: no-repeat;
  background-position: right 1rem bottom 1rem;
  transition: opacity 0.3s ease;
}

.fiesta-card:hover::after {
  opacity: 0.15;
}

.fiesta-card.cruces {
  background: #c0151d;
}
.fiesta-card.patios {
  background: #1a6b2e;
}
.fiesta-card.rejas {
  background: #1d6b6b;
}
.fiesta-card.feria {
  background: #8b7a1a;
}

.fiesta-date {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 2.5rem;
}

.fiesta-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  position: relative;
}

/* ── LANGS ── */
.langs-section {
  padding: 4rem 1.5rem;
  background: var(--off-white);
  text-align: center;
}

.langs-section .section-label {
  margin-bottom: 1rem;
}

.langs-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.langs-section p {
  color: var(--gray-600);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.lang-flags {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lang-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

.lang-flag .flag {
  font-size: 2.5rem;
}

.lang-flag .lang-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* ── FAQ ── */
.faq-section {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.faq-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 3rem);
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 3rem;
}

.faq-section h2 em {
  font-style: italic;
  color: var(--red);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark);
  list-style: none;
  gap: 1rem;
}

.faq-q::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  transition: transform 0.2s ease;
}

details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ── CTA ── */
.cta-section {
  padding: 5rem 1.5rem;
  background: var(--red);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 80% at 50% 50%,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 70%
  );
}

.cta-section h2 {
  position: relative;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.cta-section p {
  position: relative;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

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

.cta-store-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.6rem;
  border-radius: 14px;
  text-decoration: none;
  background: #fff;
  border: 1.5px solid #fff;
  color: var(--red);
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
}

.cta-store-btn:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-store-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  flex-shrink: 0;
}
.cta-store-btn span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}
.cta-store-btn .pre {
  font-size: 0.65rem;
  opacity: 0.7;
}
.cta-store-btn .name {
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-soon {
  position: relative;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
  padding: 2.5rem 1.5rem;
  text-align: center;
}

.footer-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  opacity: 0.8;
}
.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-colabora {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.footer-ayto-logo {
  display: block;
  margin: 0 auto;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  width: 110px;
}

footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.8;
}
footer a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
footer a:hover {
  color: var(--red);
}

/* ── HISTORIA ── */
.historia-section {
  padding: 5rem 1.5rem;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.historia-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 50% at 50% 0%,
    rgba(227, 27, 35, 0.12) 0%,
    transparent 70%
  );
}

.historia-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.historia-section .section-label {
  color: var(--red-light);
}

.historia-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.historia-section h2 em {
  font-style: italic;
  color: var(--red);
}

.historia-section p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.historia-section p:last-child {
  margin-bottom: 0;
}

.historia-section strong {
  color: var(--white);
}

/* ── LANG SWITCHER ── */
.lang-switcher {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1000;
  display: flex;
  gap: 0.25rem;
  background: rgba(26, 15, 13, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.lang-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.05em;
}

.lang-btn:hover {
  color: #fff;
}
.lang-btn.active {
  background: var(--red);
  color: #fff;
}

/* ── RESPONSIVE ── */
@media (max-width: 480px) {
  .hero-phones {
    max-width: 240px;
  }
}

@media (max-width: 600px) {
  .fiestas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ── SR ONLY (accesible / SEO) ── */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── SEO CONTENT (bloques largos de texto informativo) ── */
.seo-content {
  background: var(--off-white);
  padding: 5rem 1.5rem;
}

.seo-content-inner {
  max-width: 780px;
  margin: 0 auto;
  color: var(--dark-mid);
}

.seo-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--dark);
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.seo-content h2:first-child {
  margin-top: 0;
}

.seo-content h2 em {
  font-style: italic;
  color: var(--red);
}

.seo-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.seo-content p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: 1.1rem;
}

.seo-content p strong {
  color: var(--dark);
  font-weight: 600;
}

.seo-content ul {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
}

.seo-content ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
}

.seo-content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-size: 0.85rem;
}

.seo-content ol {
  list-style: none;
  counter-reset: seo-counter;
  margin: 0 0 1.75rem 0;
  padding: 0;
}

.seo-content ol li {
  counter-increment: seo-counter;
  position: relative;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
  margin-bottom: 0.4rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gray-600);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 10px;
}

.seo-content ol li::before {
  content: counter(seo-counter);
  position: absolute;
  left: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red);
  background: rgba(227, 27, 35, 0.08);
  border-radius: 50%;
}

.seo-content ol li:nth-child(1)::before {
  color: #fff;
  background: var(--red);
}

.seo-content ol li:nth-child(2)::before,
.seo-content ol li:nth-child(3)::before {
  color: #fff;
  background: var(--dark-mid);
}

.seo-content ol li strong {
  color: var(--dark);
  font-weight: 600;
}

.seo-content a {
  color: var(--red);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.2s;
}

.seo-content a:hover {
  color: var(--red-dark);
}

.seo-content .seo-intro {
  font-size: 1.15rem;
  color: var(--dark-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}

.seo-content .seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

@media (max-width: 520px) {
  .seo-content .seo-grid {
    grid-template-columns: 1fr;
  }
}

.seo-content .seo-grid-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 1.25rem;
}

.seo-content .seo-grid-item strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.seo-content .seo-grid-item span {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── BREADCRUMBS ── */
.breadcrumbs {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.6);
  padding: 1rem 1.5rem;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.breadcrumbs-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: var(--red);
}

.breadcrumbs .sep {
  margin: 0 0.4rem;
  color: rgba(255, 255, 255, 0.3);
}

.breadcrumbs .current {
  color: var(--white);
  font-weight: 500;
}

/* ── INTERNAL LINKS BLOCK (entre subpáginas) ── */
.related-section {
  background: var(--gray-50);
  padding: 4rem 1.5rem;
  text-align: center;
}

.related-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}

.related-grid {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

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

.related-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.5rem 1.25rem;
  text-decoration: none;
  color: var(--dark);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-align: left;
}

.related-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--red-light);
}

.related-card .related-kicker {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.related-card .related-title {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.35rem;
}

.related-card .related-desc {
  display: block;
  font-size: 0.85rem;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ── INFO HERO (para subpáginas) ── */
.info-hero {
  position: relative;
  background: var(--dark);
  color: var(--white);
  padding: 6rem 1.5rem 4rem;
  text-align: center;
  overflow: hidden;
}

.info-hero-inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.info-hero .info-kicker {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  background: rgba(227, 27, 35, 0.12);
  border: 1px solid rgba(227, 27, 35, 0.35);
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}

.info-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.info-hero h1 em {
  font-style: italic;
  color: var(--red);
}

.info-hero .info-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 2rem;
}

.info-hero .info-cta {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.info-hero .info-cta .store-btn {
  background: var(--white);
  color: var(--dark);
}
