:root {
  --ocean-blue: #0056b3;
  --white: #ffffff;
  --text-dark: #0f2745;
  --bg-light: #f4f8ff;
  --blue-soft: #dcecff;
  --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  --font-sans: "Plus Jakarta Sans", "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-display: "Montserrat", "Plus Jakarta Sans", system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 40%, #f7fbff 100%);
}

.page-europa,
.page-guia {
  font-family: "Roboto", "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: linear-gradient(180deg, #f7fbff 0%, #edf5ff 40%, #f7fbff 100%);
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0, 86, 179, 0.15);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.global-guia-cta {
  background: linear-gradient(90deg, var(--blue-soft), #e8f2ff);
  border-bottom: 1px solid rgba(0, 86, 179, 0.12);
  padding: 0.5rem 0;
  text-align: center;
}

.global-guia-cta-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.global-guia-cta-link {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(0.88rem, 2.8vw, 0.98rem);
  color: var(--ocean-blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease, transform 0.22s var(--ease-out);
}

.global-guia-cta-link:hover,
.global-guia-cta-link:focus-visible {
  color: #004494;
  text-decoration-thickness: 2px;
  outline: none;
  transform: translateY(-1px);
}

.global-guia-cta-link:focus-visible {
  border-radius: 6px;
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.35);
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--ocean-blue);
  font-weight: 700;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ocean-blue);
  color: var(--white);
  font-size: 0.9rem;
}

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 6px 10px rgba(0, 86, 179, 0.25));
  transition: transform 0.35s ease;
}

.brand:hover .brand-logo {
  transform: rotate(-8deg) scale(1.06);
}

.brand-text {
  white-space: nowrap;
  font-size: 1.1rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

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

.nav-list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 1rem;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(0, 86, 179, 0.08);
  color: var(--ocean-blue);
  transform: translateY(-1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 230px;
  list-style: none;
  margin: 0;
  padding: 0.5rem;
  background: var(--white);
  border: 1px solid rgba(0, 86, 179, 0.15);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.2s ease;
}

.dropdown a {
  display: block;
  text-decoration: none;
  color: var(--text-dark);
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
}

.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(0, 86, 179, 0.08);
  color: var(--ocean-blue);
}

/* Hover dropdowns on desktop */
.has-dropdown:hover > .dropdown,
.has-dropdown:focus-within > .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.contact-btn {
  text-decoration: none;
  background: var(--ocean-blue);
  color: var(--white);
  padding: 0.75rem 1.1rem;
  border-radius: 10px;
  font-weight: 700;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.contact-btn:hover,
.contact-btn:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(0, 86, 179, 0.3);
  background: var(--white);
  border-radius: 10px;
  cursor: pointer;
  padding: 0.5rem;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ocean-blue);
  margin: 5px 0;
}

.hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.2) 0%, rgba(0, 86, 179, 0) 70%);
  top: -100px;
  right: -60px;
  animation: floatOrb 8s ease-in-out infinite;
}

.hero::after {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(0, 86, 179, 0.12) 0%, rgba(0, 86, 179, 0) 70%);
  bottom: -90px;
  left: -40px;
  animation: floatOrb 10s ease-in-out infinite reverse;
}

.hero .container {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid rgba(0, 86, 179, 0.12);
  border-radius: 18px;
  padding: clamp(1.25rem, 2vw, 2rem);
  box-shadow: 0 14px 32px rgba(0, 39, 89, 0.12);
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(1.8rem, 2.3vw + 1rem, 3rem);
  color: var(--ocean-blue);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.hero p {
  margin: 0;
  max-width: 65ch;
  line-height: 1.6;
}

/* Solo páginas con un único bloque tipo "hero" necesitan altura mínima; no en Europa/guía (varias secciones) */
.hero.page-section {
  min-height: calc(100vh - 210px);
}

.site-footer {
  background: linear-gradient(135deg, #004999 0%, #0056b3 60%, #0066d4 100%);
  color: var(--white);
  padding: 2rem 0 1.25rem;
}

.home-section {
  padding: 1.5rem 0 2.25rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  margin: 0;
  color: var(--ocean-blue);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
}

.section-head p {
  margin: 0.5rem 0 0;
  color: #47617f;
}

.section-head.center {
  text-align: center;
}

.home-hero {
  min-height: min(72vh, 760px);
  padding: 6rem 0 4rem;
  display: grid;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(0, 39, 89, 0.7), rgba(0, 86, 179, 0.4)),
    url("https://images.unsplash.com/photo-1502920514313-52581002a659?auto=format&fit=crop&w=1920&q=80")
    center / cover no-repeat;
}

.home-hero-content {
  color: var(--white);
  max-width: 760px;
}

.home-hero h1 {
  margin: 0.4rem 0 0.8rem;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.15;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.home-hero p {
  margin: 0;
  font-size: clamp(1rem, 0.8vw + 0.8rem, 1.2rem);
  max-width: 60ch;
}

.eyebrow {
  display: inline-block;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.85rem;
  letter-spacing: 0.03em;
}

.primary-cta {
  margin-top: 1.3rem;
  display: inline-block;
  text-decoration: none;
  background: var(--white);
  color: var(--ocean-blue);
  padding: 0.9rem 1.35rem;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-cta:hover,
.primary-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

/* Segundo CTA en hero (misma página que la home) */
.home-hero .hero-cta-row {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.home-hero .hero-cta-row .primary-cta {
  margin-top: 0;
}

.home-hero .hero-link-secondary {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.home-hero .hero-link-secondary:hover,
.home-hero .hero-link-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.85);
  transform: translateY(-2px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 8px 20px rgba(0, 56, 116, 0.12);
  transform-origin: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 14px 30px rgba(0, 56, 116, 0.18);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card-body {
  padding: 1rem;
}

.product-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.product-card p {
  margin: 0 0 0.9rem;
  color: #496384;
}

.amazon-btn {
  display: inline-block;
  text-decoration: none;
  background: var(--ocean-blue);
  color: var(--white);
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  font-weight: 700;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.amazon-btn:hover,
.amazon-btn:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.category-tile {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
  align-items: center;
  text-decoration: none;
  background: var(--white);
  border: 1px solid rgba(0, 86, 179, 0.12);
  border-radius: 14px;
  padding: 0.75rem;
  color: inherit;
  box-shadow: 0 8px 20px rgba(0, 56, 116, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-tile:hover,
.category-tile:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 13px 24px rgba(0, 56, 116, 0.16);
}

.category-tile img {
  width: 100%;
  height: 105px;
  object-fit: cover;
  border-radius: 10px;
}

.category-tile h3 {
  margin: 0 0 0.4rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  color: var(--ocean-blue);
}

.category-tile p {
  margin: 0;
  color: #4c6888;
}

.trust-section {
  padding-bottom: 3rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.trust-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(0, 86, 179, 0.12);
  padding: 1.1rem;
  box-shadow: 0 8px 20px rgba(0, 56, 116, 0.08);
}

.trust-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  background: var(--blue-soft);
  margin-bottom: 0.55rem;
}

.trust-item h3 {
  margin: 0 0 0.35rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
}

.trust-item p {
  margin: 0;
  color: #4e6b8b;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  align-items: start;
}

.site-footer h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
}

.copyright {
  margin: 0;
  text-align: right;
}

/* Contenido siempre legible aunque falle el JS; animación opcional con .page-ready */
.page-section .container,
.site-footer .container {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .page-ready .page-section .container,
  .page-ready .site-footer .container {
    animation: pageSectionReveal 0.55s var(--ease-out) both;
  }
}

@keyframes pageSectionReveal {
  from {
    opacity: 0.92;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.07);
  }
}

@keyframes floatOrb {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* --- Guía maestra Europa (página de afiliación) --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.guide-page {
  padding-bottom: 2rem;
}

.page-guia {
  scroll-padding-top: 88px;
}

@media (prefers-reduced-motion: no-preference) {
  .page-guia {
    scroll-behavior: smooth;
  }
}

/* Hero guía maestra — misma base visual que .home-hero (foto + gradiente) */
.guia-hero {
  position: relative;
  margin-top: 0;
  overflow: hidden;
}

.guia-hero--aligned-home {
  min-height: min(72vh, 760px);
  padding: 5.5rem 0 4rem;
  display: grid;
  align-items: center;
  background:
    linear-gradient(105deg, rgba(0, 39, 89, 0.78), rgba(0, 86, 179, 0.48)),
    url("https://images.unsplash.com/photo-1502920514313-52581002a659?auto=format&fit=crop&w=1920&q=80")
    center / cover no-repeat;
}

.guia-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.guia-breadcrumb {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
}

.guia-breadcrumb a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  font-weight: 500;
}

.guia-breadcrumb a:hover,
.guia-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.guia-breadcrumb span[aria-hidden="true"] {
  margin: 0 0.35rem;
  opacity: 0.6;
}

.guia-hero-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.38rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

.guia-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.35);
}

.guia-hero-lead {
  margin: 0 0 1.35rem;
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.18rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  max-width: 58ch;
}

.guia-hero-lead strong {
  color: #fff;
}

.guia-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
}

.guia-hero .hero-cta-row .primary-cta {
  margin-top: 0;
}

.guia-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.22s ease,
    filter 0.22s ease;
}

.guia-btn--primary {
  background: linear-gradient(180deg, #ffc53d 0%, #ffb703 55%, #e6a500 100%);
  color: #0f2745;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.guia-btn--primary:hover,
.guia-btn--primary:focus-visible {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.guia-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.guia-btn--ghost:hover,
.guia-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
}

.guia-jump-wrap {
  margin: 0 0 0.5rem;
  padding: 1.15rem 1.35rem 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97) 0%, var(--blue-soft) 48%, #e0edff 100%);
  border: 1px solid rgba(0, 86, 179, 0.14);
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(0, 56, 116, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.guia-jump-label {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a6b8a;
}

.guia-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.guia-jump a {
  padding: 0.5rem 0.95rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--ocean-blue);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 86, 179, 0.2);
  border-radius: 999px;
  box-shadow: 0 2px 12px rgba(0, 56, 116, 0.07);
  transition: background 0.22s var(--ease-out), transform 0.22s var(--ease-out), box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.guia-jump a:hover,
.guia-jump a:focus-visible {
  background: var(--white);
  border-color: rgba(0, 86, 179, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 56, 116, 0.12);
}

.guia-section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2rem;
}

/* Misma jerarquía tipográfica que .section-head de la home */
.guia-section-head h2 {
  margin: 0 0 0.5rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.4rem, 1vw + 1rem, 2rem);
  font-weight: 800;
  color: var(--ocean-blue);
}

.guia-section-deck {
  margin: 0;
  color: #47617f;
  line-height: 1.55;
  font-size: 1rem;
}

.guide-products {
  padding: 1.5rem 0 2.25rem;
}

.guide-product-card[id] {
  scroll-margin-top: 88px;
}

.guide-product-card {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  margin-bottom: 2rem;
  padding: 0;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 8px 20px rgba(0, 56, 116, 0.12);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.guide-product-card:hover {
  transform: scale(1.02);
  box-shadow: 0 14px 30px rgba(0, 56, 116, 0.18);
}

.guide-product-card--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
}

.guide-product-card--reverse .guide-product-media {
  order: 2;
}

.guide-product-card--reverse .guide-product-body {
  order: 1;
}

.guide-product-media {
  position: relative;
  min-height: 280px;
  background: linear-gradient(155deg, #dcecff 0%, #e8f2ff 45%, #f0f6ff 100%);
}

.guide-product-media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

.guide-product-card:hover .guide-product-media img {
  transform: scale(1.04);
}

.guide-product-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
  background: var(--ocean-blue);
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.guide-product-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.3rem 0.65rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ocean-blue);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 8px;
  z-index: 2;
}

.guide-product-brand {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b8299;
}

.guide-product-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 1.75rem 1.85rem 1.65rem;
}

.guide-product-body > p:not(.guide-price) {
  max-width: 52ch;
}

.guide-product-actions {
  margin-top: 0.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(0, 86, 179, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.guide-product-actions .guide-price {
  margin: 0;
}

@media (max-width: 640px) {
  .guide-product-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .guide-product-actions .guide-cta {
    width: 100%;
    justify-content: center;
  }
}

.guide-product-body h3 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--ocean-blue);
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.guide-product-body p {
  margin: 0 0 0.75rem;
  color: #3a4f63;
}

.guide-bullets {
  margin: 0 0 1.15rem;
  padding-left: 0;
  list-style: none;
  color: #3a4f63;
  line-height: 1.55;
}

.guide-bullets li {
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.6rem;
}

.guide-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean-blue), #3d9cff);
  box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.12);
}

.guide-price {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: #1a2f45;
}

.guide-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  background: var(--ocean-blue);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.78rem 1.35rem;
  border-radius: 12px;
  transition: filter 0.22s ease, transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}

.guide-cta:hover,
.guide-cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

.guide-cta--amazon {
  background: linear-gradient(180deg, #ffb84d 0%, #ff9900 40%, #e47911 100%);
  color: #1a1408;
  box-shadow: 0 8px 22px rgba(228, 121, 17, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.guide-cta--amazon::after {
  content: "↗";
  font-size: 0.9em;
  opacity: 0.85;
  line-height: 1;
}

.guide-cta--amazon:hover,
.guide-cta--amazon:focus-visible {
  filter: brightness(1.05);
  box-shadow: 0 12px 28px rgba(228, 121, 17, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.guide-price-note {
  font-weight: 400;
  font-size: 0.88em;
  color: #6b8299;
}

.guide-compare {
  padding: 0.5rem 0 2.5rem;
}

.guia-compare-card {
  background: var(--white);
  padding: 2rem clamp(1.1rem, 3vw, 2.25rem);
  border-radius: 16px;
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 8px 20px rgba(0, 56, 116, 0.12);
}

.guide-compare h2,
.guia-compare-card h2 {
  margin: 0 0 0.65rem;
  font-family: var(--font-display);
  color: var(--ocean-blue);
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  letter-spacing: -0.02em;
}

.guia-compare-card h2 {
  text-align: center;
}

.guide-compare-intro {
  margin: 0 auto 1.35rem;
  max-width: 58ch;
  color: #4a6078;
  line-height: 1.55;
  text-align: center;
}

.guia-compare-foot {
  margin: 1.35rem 0 0;
  text-align: center;
  font-size: 0.92rem;
  color: #5a7390;
}

.guia-compare-foot a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 0.2rem;
  padding: 0.45rem 0.95rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--ocean-blue);
  text-decoration: none;
  background: rgba(0, 86, 179, 0.08);
  border: 1px solid rgba(0, 86, 179, 0.15);
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s var(--ease-out), box-shadow 0.2s ease;
}

.guia-compare-foot a:hover,
.guia-compare-foot a:focus-visible {
  background: rgba(0, 86, 179, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 56, 116, 0.12);
}

.guia-trust {
  padding: 0 0 2.75rem;
}

.guia-trust-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.guia-trust-item {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 86, 179, 0.12);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 56, 116, 0.07);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.guia-trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0, 56, 116, 0.1);
}

.guia-trust-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--ocean-blue);
  margin-bottom: 0.3rem;
}

.guia-trust-item span {
  font-size: 0.86rem;
  color: #5a7390;
  line-height: 1.4;
}

.affiliate-disclaimer--prominent {
  text-align: center;
}

.affiliate-disclaimer--prominent p {
  max-width: 52rem;
  margin-inline: auto;
  font-size: 0.85rem;
  padding: 0.75rem 1.25rem;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 12px;
}

.guide-table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid rgba(0, 86, 179, 0.15);
  box-shadow: 0 8px 22px rgba(0, 56, 116, 0.08);
}

.guide-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: var(--white);
}

.guide-table th,
.guide-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.guide-table th {
  background: rgba(0, 86, 179, 0.08);
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-weight: 700;
  color: var(--text-dark);
}

.guide-table tbody tr:last-child td {
  border-bottom: none;
}

.guide-table tbody tr:hover td {
  background: rgba(0, 86, 179, 0.04);
}

.affiliate-disclaimer {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.affiliate-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5;
  opacity: 0.92;
  max-width: 72ch;
}

.featured-guide-wrap {
  padding: 0 0 2.5rem;
}

.featured-guide-card {
  background: var(--white);
  border: 1px solid rgba(0, 86, 179, 0.14);
  border-radius: 16px;
  padding: 1.5rem clamp(1rem, 3vw, 1.75rem);
  box-shadow: 0 10px 28px rgba(0, 56, 116, 0.1);
}

.featured-guide-card h2 {
  margin: 0 0 0.65rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  color: var(--ocean-blue);
}

.featured-guide-card p {
  margin: 0 0 1.1rem;
  color: #3a4f63;
  line-height: 1.55;
  max-width: 62ch;
}

.featured-guide-cta {
  display: inline-block;
  text-decoration: none;
  background: var(--ocean-blue);
  color: var(--white);
  font-weight: 700;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  transition: filter 0.2s ease, transform 0.2s ease;
}

.featured-guide-cta:hover,
.featured-guide-cta:focus-visible {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* --- Página Europa (landing de intención) --- */
.page-europa main {
  overflow-x: hidden;
}

.page-europa {
  scroll-padding-top: 88px;
}

/* Misma rejilla 3 columnas que “Selección del mes” en la home */
ul.europa-intent-three.product-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

a.europa-more-card.product-card {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0;
}

a.europa-more-card.product-card:hover {
  transform: scale(1.03);
}

a.europa-more-card .amazon-btn.europa-more-cta-span {
  pointer-events: none;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.europa-topbar {
  background: linear-gradient(90deg, #042c4e 0%, #0a3d6e 100%);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  padding: 0.45rem 0;
}

.europa-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.europa-topbar-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.europa-topbar-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.europa-topbar-nav a:hover,
.europa-topbar-nav a:focus-visible {
  text-decoration: underline;
}

.europa-topbar-link {
  color: #ffb703;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.europa-topbar-link:hover,
.europa-topbar-link:focus-visible {
  text-decoration: underline;
}

.europa-trust-bar {
  padding: 0;
  margin-top: -2rem;
  position: relative;
  z-index: 3;
}

.europa-trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.europa-trust-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1rem;
  text-align: center;
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 12px 32px rgba(0, 56, 116, 0.12);
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s ease;
}

.europa-trust-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 38px rgba(0, 56, 116, 0.14);
}

.europa-trust-pill::before {
  font-size: 1.4rem;
  line-height: 1;
  filter: grayscale(0.15);
}

.europa-trust-pill:nth-child(1)::before {
  content: "📏";
}

.europa-trust-pill:nth-child(2)::before {
  content: "🧳";
}

.europa-trust-pill:nth-child(3)::before {
  content: "✨";
}

.europa-trust-pill strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--ocean-blue);
  margin-bottom: 0;
}

.europa-trust-pill span {
  font-size: 0.82rem;
  color: #5a7390;
}

.europa-more {
  padding: 2.5rem 0 1rem;
}

.europa-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.europa-more-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 12px 32px rgba(0, 56, 116, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.europa-more-card:hover,
.europa-more-card:focus-visible {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(0, 56, 116, 0.16);
}

.europa-more-card--accent {
  border-color: rgba(255, 183, 3, 0.45);
  box-shadow: 0 12px 32px rgba(255, 183, 3, 0.12);
}

.europa-more-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.europa-more-card-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.europa-more-card-body h3 {
  margin: 0 0 0.4rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: 1.15rem;
  color: var(--ocean-blue);
}

.europa-more-card-body p {
  margin: 0 0 0.65rem;
  font-size: 0.95rem;
  color: #4a6078;
  line-height: 1.45;
}

.europa-more-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 0.35rem;
  padding: 0.45rem 0.9rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ocean-blue);
  background: rgba(0, 86, 179, 0.08);
  border-radius: 10px;
  transition: background 0.22s ease, color 0.22s ease;
}

.europa-more-card:hover .europa-more-cta {
  background: rgba(0, 86, 179, 0.14);
}

.europa-more-card--accent .europa-more-cta {
  color: #9a3412;
  background: rgba(255, 183, 3, 0.2);
}

.europa-more-card--accent:hover .europa-more-cta {
  background: rgba(255, 183, 3, 0.32);
}

.europa-hero {
  position: relative;
  min-height: min(78vh, 720px);
  display: flex;
  align-items: flex-end;
  padding: 0 0 3.5rem;
  margin-top: 0;
  overflow: hidden;
}

.europa-hero-bg {
  position: absolute;
  inset: 0;
  background:
    url("https://images.unsplash.com/photo-1467269204594-9661b134dd2b?auto=format&fit=crop&w=1920&q=80")
    center / cover no-repeat;
  z-index: 0;
  transform-origin: center center;
}

@media (prefers-reduced-motion: no-preference) {
  .europa-hero-bg {
    animation: heroKenBurns 28s ease-in-out infinite alternate;
  }
}

.europa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(5, 28, 55, 0.45) 0%,
    rgba(0, 40, 85, 0.75) 55%,
    rgba(0, 54, 110, 0.88) 100%
  );
  z-index: 1;
}

.europa-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding-bottom: 0.5rem;
}

.europa-hero-badge {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.europa-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 2.8vw + 1rem, 3rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.europa-hero-lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1rem, 0.5vw + 0.95rem, 1.2rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.94);
  max-width: 52ch;
}

.europa-hero-lead strong {
  color: #fff;
  font-weight: 700;
}

.europa-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.europa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s var(--ease-out), background 0.22s ease,
    color 0.22s ease, border-color 0.22s ease;
}

.europa-btn--primary {
  background: linear-gradient(180deg, #ffffff 0%, #f0f6ff 100%);
  color: var(--ocean-blue);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.28), inset 0 1px 0 #fff;
}

.europa-btn--primary:hover,
.europa-btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.32), inset 0 1px 0 #fff;
}

.europa-btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
}

.europa-btn--ghost:hover,
.europa-btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  border-color: #fff;
}

.europa-intent {
  padding: 3.5rem 0 1rem;
}

.europa-section-title {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 800;
  color: var(--ocean-blue);
  text-align: center;
  letter-spacing: -0.02em;
}

.europa-section-sub {
  margin: 0 auto 2rem;
  max-width: 56ch;
  text-align: center;
  color: #4a6078;
  line-height: 1.55;
  font-size: 1.05rem;
}

.europa-intent-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.europa-intent-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 12px 32px rgba(0, 56, 116, 0.1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.europa-intent-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(0, 56, 116, 0.15);
}

.europa-intent-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out);
}

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

.europa-intent-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.europa-intent-card-body h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.europa-intent-card-body p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: #4a6078;
  line-height: 1.5;
}

.europa-intent-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.15rem;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--white);
  text-decoration: none;
  background: linear-gradient(135deg, var(--ocean-blue) 0%, #003d82 100%);
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 86, 179, 0.38);
  transition: transform 0.22s var(--ease-out), box-shadow 0.22s ease, filter 0.22s ease;
}

.europa-intent-cta:hover,
.europa-intent-cta:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 86, 179, 0.45);
  filter: brightness(1.06);
}

.europa-guide-spotlight-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 0;
  align-items: stretch;
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 86, 179, 0.12);
  box-shadow: 0 8px 20px rgba(0, 56, 116, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.europa-guide-spotlight-inner:hover {
  transform: scale(1.01);
  box-shadow: 0 14px 30px rgba(0, 56, 116, 0.16);
}

.europa-guide-spotlight-media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.europa-guide-spotlight-content {
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.europa-guide-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ocean-blue);
}

.europa-guide-spotlight-content h2 {
  margin: 0 0 0.75rem;
  font-family: "Montserrat", "Segoe UI", Arial, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  color: var(--ocean-blue);
  line-height: 1.2;
}

.europa-guide-spotlight-content > p {
  margin: 0 0 1rem;
  color: #496384;
  line-height: 1.6;
}

.europa-guide-spotlight-list {
  margin: 0 0 1.25rem;
  padding-left: 1.2rem;
  color: #3a4f63;
  line-height: 1.55;
}

.europa-guide-spotlight-list li {
  margin-bottom: 0.35rem;
}

.europa-quick {
  padding: 0 0 3rem;
}

.europa-quick-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.europa-quick-link {
  padding: 0.65rem 1.1rem;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(0, 86, 179, 0.14);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ocean-blue);
  transition: background 0.22s ease, transform 0.22s var(--ease-out), box-shadow 0.22s ease;
}

.europa-quick-link:hover,
.europa-quick-link:focus-visible {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 56, 116, 0.1);
}

@media (max-width: 960px) {
  .europa-trust-bar-inner {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

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

  ul.europa-intent-three.product-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-inline: auto;
  }

  .europa-guide-spotlight-inner {
    grid-template-columns: 1fr;
  }

  .europa-guide-spotlight-media img {
    min-height: 220px;
    max-height: 280px;
  }

  .home-hero {
    min-height: 62vh;
    padding: 4.5rem 0 3rem;
  }

  .guia-hero--aligned-home {
    min-height: 62vh;
    padding: 4.25rem 0 3rem;
  }

  .guia-trust-inner,
  .guia-trust-section .trust-grid {
    grid-template-columns: 1fr;
  }

  .guide-product-card,
  .guide-product-card--reverse {
    grid-template-columns: 1fr;
  }

  .guide-product-card--reverse .guide-product-media {
    order: 0;
  }

  .guide-product-card--reverse .guide-product-body {
    order: 0;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 86, 179, 0.2);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.5rem 4%;
  }

  .main-nav.is-open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-link {
    width: 100%;
  }

  .dropdown {
    position: static;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0.6rem 0.8rem;
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .contact-btn {
    margin: 0.5rem 0 0.75rem;
    text-align: center;
  }

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

  .copyright {
    text-align: left;
  }

  .home-hero {
    min-height: 62vh;
    padding: 5rem 0 2.6rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

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

  .category-tile img {
    height: 150px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .europa-hero-bg {
    animation: none;
  }

  .europa-intent-card:hover img,
  .guide-product-card:hover .guide-product-media img {
    transform: none;
  }

  .page-ready .page-section .container,
  .page-ready .site-footer .container {
    animation: none;
  }
}
