:root {
/* Otras propiedades */
  --color-primary: #2c5530;
  --color-primary-light: #3d7242;
  --color-primary-dark: #1e3b21;
  --color-primary-50: #f0f7f1;
  --color-primary-100: #dcf0de;
  --color-accent: #f4a261;
  --color-accent-hover: #e76f51;
  --color-accent-light: #fdf4ed;
  --color-white: #ffffff;
  --color-bg: #f8fafc;
  --color-bg-alt: #f1f5f9;
  --color-border: #e2e8f0;
  --color-text: #1e293b;
  --color-text-muted: #64748b;
  --color-text-light: #94a3b8;
  --color-success: #16a34a;
  --color-success-bg: #dcfce7;
  --color-error: #dc2626;
  --color-error-bg: #fee2e2;
  --color-warning: #d97706;
  --color-warning-bg: #fef3c7;
  --color-info: #0284c7;
  --color-info-bg: #e0f2fe;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 6px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-size-xs: 12px;
  --font-size-sm: 14px;
  --font-size-base: 16px;
  --font-size-lg: 18px;
  --font-size-xl: 20px;
  --font-size-2xl: 24px;
  --font-size-3xl: 30px;
  --font-size-4xl: 36px;
  --font-size-5xl: 48px;
  --container-max: 1200px;
  --header-height: 72px;}

html.dark {
/* Otras propiedades */
  --color-primary: #4ade80;
  --color-primary-light: #2c5530;
  --color-primary-dark: #86efac;
  --color-primary-50: #064e3b;
  --color-primary-100: #14532d;
  --color-white: #1e293b;
  --color-bg: #0f172a;
  --color-bg-alt: #1e293b;
  --color-border: #334155;
  --color-text: #f8fafc;
  --color-text-muted: #cbd5e1;
  --color-text-light: #94a3b8;}

.theme-toggle {
/* Relleno */
  padding: 8px;

  /* Bordes */
  border: none;
  border-radius: 50%;

  /* Fondos */
  background: none;

  /* Tipografía */
  font-size: 24px;

  /* Transiciones y animaciones */
  transition: background 0.2s;

  /* Interactividad */
  cursor: pointer;}

.theme-toggle:hover {
/* Fondos */
  background: var(--color-bg-alt);}

*, *::before, *::after {
/* Modelo de caja */
  box-sizing: border-box;

  /* Márgenes */
  margin: 0;

  /* Relleno */
  padding: 0;}

html {
/* Otras propiedades */
  scroll-behavior: smooth;}

body {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;

  /* Dimensiones */
  min-height: 100vh;

  /* Fondos */
  background-color: var(--color-white);

  /* Tipografía */
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;

  /* Colores y efectos */
  color: var(--color-text);

  /* Otras propiedades */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;}

img {
/* Modelo de caja */
  display: block;

  /* Dimensiones */
  max-width: 100%;
  height: auto;}

a {
/* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  color: inherit;}

ul, ol {
/* Otras propiedades */
  list-style: none;}

button {
/* Tipografía */
  font-family: inherit;

  /* Interactividad */
  cursor: pointer;}

h1, h2, h3, h4, h5, h6 {
/* Tipografía */
  font-weight: 700;
  line-height: 1.2;

  /* Colores y efectos */
  color: var(--color-text);}

h1 {
/* Tipografía */
  font-size: var(--font-size-5xl);}

h2 {
/* Tipografía */
  font-size: var(--font-size-4xl);}

h3 {
/* Tipografía */
  font-size: var(--font-size-2xl);}

h4 {
/* Tipografía */
  font-size: var(--font-size-xl);}

h5 {
/* Tipografía */
  font-size: var(--font-size-lg);}

h6 {
/* Tipografía */
  font-size: var(--font-size-base);}

p {
/* Márgenes */
  margin-bottom: var(--space-md);}

.container {
/* Dimensiones */
  width: 100%;
  max-width: var(--container-max);

  /* Márgenes */
  margin: 0 auto;

  /* Relleno */
  padding: 0 var(--space-lg);}

.btn {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);

  /* Relleno */
  padding: 12px 24px;

  /* Bordes */
  border: none;
  border-radius: var(--radius);

  /* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-decoration: none;

  /* Transiciones y animaciones */
  transition: all 0.2s ease;

  /* Interactividad */
  cursor: pointer;}

.btn-lg {
/* Relleno */
  padding: 16px 32px;

  /* Bordes */
  border-radius: var(--radius-lg);

  /* Tipografía */
  font-size: var(--font-size-base);}

.btn-sm {
/* Relleno */
  padding: 8px 16px;

  /* Tipografía */
  font-size: 14px;}

.btn-primary {
/* Fondos */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);

  /* Colores y efectos */
  color: var(--color-white);}

.btn-primary:hover {
/* Colores y efectos */
  box-shadow: var(--shadow-lg);

  /* Otras propiedades */
  transform: translateY(-2px);}

.btn-outline {
/* Bordes */
  border: 2px solid var(--color-primary);

  /* Fondos */
  background: transparent;

  /* Colores y efectos */
  color: var(--color-primary);}

.btn-outline:hover {
/* Fondos */
  background: var(--color-primary);

  /* Colores y efectos */
  color: var(--color-white);}

.btn-outline-light {
/* Bordes */
  border: 2px solid var(--color-white);

  /* Fondos */
  background: transparent;

  /* Colores y efectos */
  color: var(--color-white);}

.btn-outline-light:hover {
/* Fondos */
  background: var(--color-white);

  /* Colores y efectos */
  color: var(--color-primary);}

.btn-whatsapp {
/* Fondos */
  background: #25d366;

  /* Colores y efectos */
  color: var(--color-white);}

.btn-whatsapp:hover {
/* Fondos */
  background: #128c7e;

  /* Colores y efectos */
  box-shadow: var(--shadow-lg);

  /* Otras propiedades */
  transform: translateY(-2px);}

.whatsapp-icon {
/* Modelo de caja */
  display: inline-block;

  /* Dimensiones */
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;

  /* Otras propiedades */
  object-fit: contain;
  vertical-align: middle;}

.btn-sm .whatsapp-icon {
/* Dimensiones */
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;}

.btn-lg .whatsapp-icon {
/* Dimensiones */
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;}

.btn-whatsapp .whatsapp-icon, .whatsapp-btn .whatsapp-icon {
/* Flexbox y Grid */
  flex: 0 0 auto;}

.whatsapp-float {
/* Posicionamiento */
  position: fixed;
  right: calc(20px + env(safe-area-inset-right));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 99998;

  /* Modelo de caja */
  display: flex;
  overflow: hidden;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 56px;
  height: 56px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: #25d366;

  /* Colores y efectos */
  box-shadow: var(--shadow-lg);

  /* Transiciones y animaciones */
  animation: whatsappPulse 2.4s ease-in-out infinite;}

.whatsapp-float:hover {
/* Colores y efectos */
  box-shadow: var(--shadow-xl);

  /* Otras propiedades */
  transform: translateY(-2px);}

.whatsapp-float .whatsapp-icon {
/* Dimensiones */
  width: 28px;
  height: 28px;
  max-width: 28px;
  max-height: 28px;}

.sticky-cta-mobile {
/* Posicionamiento */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;

  /* Modelo de caja */
  display: none;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;
  gap: 10px;

  /* Relleno */
  padding: 14px 20px;

  /* Fondos */
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);

  /* Tipografía */
  text-decoration: none;
  font-size: var(--font-size-base);

  /* Colores y efectos */
  color: #ffffff;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);

  /* Transiciones y animaciones */
  transition: background 0.3s ease;}

.sticky-cta-mobile:hover {
/* Fondos */
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);

  /* Colores y efectos */
  color: #ffffff;}

.sticky-cta-icon {
/* Tipografía */
  font-size: 1.3em;}

.sticky-cta-text {
/* Tipografía */
  line-height: 1.3;}

.sticky-cta-text strong {
/* Modelo de caja */
  display: block;

  /* Tipografía */
  font-size: 0.9em;}

.header {
/* Posicionamiento */
  position: sticky;
  top: 0;
  z-index: 99999;

  /* Dimensiones */
  height: var(--header-height);

  /* Bordes */
  border-bottom: 1px solid var(--color-border);

  /* Fondos */
  background: var(--color-white);}

.navbar {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: space-between;

  /* Dimensiones */
  height: var(--header-height);}

.logo {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: var(--space-sm);

  /* Tipografía */
  font-size: var(--font-size-xl);
  font-weight: 800;

  /* Colores y efectos */
  color: var(--color-primary);}

.logo-icon {
/* Tipografía */
  font-size: 28px;}

.nav-menu {
/* Posicionamiento */
  position: relative;
  z-index: 10001;

  /* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: var(--space-xl);}

.nav-menu a {
/* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 500;

  /* Colores y efectos */
  color: var(--color-text-muted);

  /* Transiciones y animaciones */
  transition: color 0.2s ease;}

.nav-menu a:hover, .nav-menu a.active {
/* Colores y efectos */
  color: var(--color-primary);}

.mobile-menu-btn {
/* Modelo de caja */
  display: none;

  /* Flexbox y Grid */
  flex-direction: column;
  gap: 5px;

  /* Relleno */
  padding: 8px;

  /* Bordes */
  border: none;

  /* Fondos */
  background: none;}

.mobile-menu-btn span {
/* Modelo de caja */
  display: block;

  /* Dimensiones */
  width: 24px;
  height: 2px;

  /* Fondos */
  background: var(--color-text);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.skip-link {
/* Posicionamiento */
  position: fixed;
  top: -100px;
  left: 50%;
  z-index: 99999;

  /* Relleno */
  padding: 12px 24px;

  /* Bordes */
  border-radius: var(--radius);

  /* Fondos */
  background: var(--color-primary);

  /* Tipografía */
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  /* Colores y efectos */
  color: var(--color-white);
  box-shadow: var(--shadow-lg);

  /* Transiciones y animaciones */
  transition: top 0.3s ease;

  /* Otras propiedades */
  transform: translateX(-50%);}

.skip-link:focus {
/* Posicionamiento */
  top: 20px;

  /* Otras propiedades */
  outline: 2px solid white;
  outline-offset: 2px;}

.logo img {
/* Dimensiones */
  height: 40px;
  width: auto;}

.logo-text {
/* Márgenes */
  margin-left: 8px;}

.header-actions {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 12px;}

.btn-donate {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 6px;

  /* Relleno */
  padding: 8px 16px;

  /* Tipografía */
  font-size: 14px;}

.cart-btn-header {
/* Posicionamiento */
  position: relative;

  /* Márgenes */
  margin: 0 8px;

  /* Tipografía */
  text-decoration: none;
  font-size: 1.2rem;}

.cart-count {
/* Posicionamiento */
  position: absolute;
  top: -8px;
  right: -8px;

  /* Modelo de caja */
  display: none;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 18px;
  height: 18px;

  /* Bordes */
  border-radius: 50%;

  /* Fondos */
  background: var(--color-accent);

  /* Tipografía */
  font-size: 11px;
  font-weight: bold;

  /* Colores y efectos */
  color: var(--color-white);}

.hero {
/* Posicionamiento */
  position: relative;
  z-index: 1;

  /* Relleno */
  padding: var(--space-3xl) 0;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-white) 100%);

  /* Otras propiedades */
  isolation: isolate;}

.hero .container {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-3xl);
  align-items: center;

  /* Otras propiedades */
  grid-template-columns: 1fr 1fr;}

.hero-badge {
/* Modelo de caja */
  display: inline-block;

  /* Márgenes */
  margin-bottom: var(--space-lg);

  /* Relleno */
  padding: 8px 16px;

  /* Bordes */
  border-radius: var(--radius-full);

  /* Fondos */
  background: var(--color-primary-100);

  /* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-primary);}

.hero-title {
/* Márgenes */
  margin-bottom: var(--space-lg);

  /* Tipografía */
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;}

.hero-subtitle {
/* Dimensiones */
  max-width: 500px;

  /* Márgenes */
  margin-bottom: var(--space-xl);

  /* Tipografía */
  font-size: var(--font-size-lg);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.hero-cta {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: var(--space-md);

  /* Márgenes */
  margin-bottom: var(--space-xl);}

.hero-trust {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  gap: var(--space-lg);}

.trust-item {
/* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.hero-image-placeholder {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 100%;

  /* Bordes */
  border-radius: var(--radius-2xl);

  /* Fondos */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);

  /* Tipografía */
  font-size: 120px;

  /* Otras propiedades */
  aspect-ratio: 1;}

.hero-image {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;}

.hero-img {
/* Posicionamiento */
  position: relative;
  z-index: 1;

  /* Dimensiones */
  width: 100%;
  max-width: 500px;
  height: auto;

  /* Bordes */
  border-radius: var(--radius-2xl);

  /* Colores y efectos */
  box-shadow: var(--shadow-xl);

  /* Transiciones y animaciones */
  animation: heroFloat 6s ease-in-out infinite;

  /* Otras propiedades */
  object-fit: cover;}

.section {
/* Posicionamiento */
  position: relative;
  z-index: 1;

  /* Relleno */
  padding: var(--space-3xl) 0;

  /* Otras propiedades */
  isolation: isolate;}

.section-header {
/* Dimensiones */
  max-width: 600px;

  /* Márgenes */
  margin: 0 auto var(--space-2xl);

  /* Tipografía */
  text-align: center;}

.section-badge {
/* Modelo de caja */
  display: inline-block;

  /* Márgenes */
  margin-bottom: var(--space-md);

  /* Relleno */
  padding: 6px 14px;

  /* Bordes */
  border-radius: var(--radius-full);

  /* Fondos */
  background: var(--color-accent-light);

  /* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-accent);}

.section-title {
/* Márgenes */
  margin-bottom: var(--space-md);}

.section-subtitle {
/* Tipografía */
  font-size: var(--font-size-lg);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.section-cta {
/* Márgenes */
  margin-top: var(--space-2xl);

  /* Tipografía */
  text-align: center;}

.services-section {
/* Fondos */
  background: var(--color-bg);}

.services-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-lg);

  /* Otras propiedades */
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));}

.service-card {
/* Modelo de caja */
  display: block;

  /* Relleno */
  padding: var(--space-xl);

  /* Bordes */
  border-radius: var(--radius-xl);

  /* Fondos */
  background: var(--color-white);

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  box-shadow: var(--shadow);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.service-card:hover {
/* Colores y efectos */
  box-shadow: var(--shadow-xl);

  /* Otras propiedades */
  transform: translateY(-8px);}

.service-card.featured {
/* Fondos */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);

  /* Colores y efectos */
  color: var(--color-white);}

.service-card.featured .service-title, .service-card.featured .service-desc {
/* Colores y efectos */
  color: var(--color-white);}

.service-icon {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  font-size: 48px;}

.service-title {
/* Márgenes */
  margin-bottom: var(--space-sm);

  /* Tipografía */
  font-size: var(--font-size-xl);}

.service-desc {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.service-link {
/* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-primary);}

.service-card.featured .service-link {
/* Colores y efectos */
  color: var(--color-accent);}

.about-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-3xl);
  align-items: center;

  /* Otras propiedades */
  grid-template-columns: 1fr 1fr;}

.about-image-placeholder {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 100%;

  /* Bordes */
  border-radius: var(--radius-2xl);

  /* Fondos */
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);

  /* Tipografía */
  font-size: 100px;

  /* Otras propiedades */
  aspect-ratio: 4/3;}

.about-content .section-badge {
/* Márgenes */
  margin-bottom: var(--space-sm);}

.about-content .section-title {
/* Márgenes */
  margin-bottom: var(--space-lg);

  /* Tipografía */
  text-align: left;}

.about-features {
/* Márgenes */
  margin: var(--space-xl) 0;}

.about-features li {
/* Relleno */
  padding: var(--space-sm) 0;

  /* Tipografía */
  font-size: var(--font-size-base);}

.blog-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-lg);

  /* Otras propiedades */
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));}

.blog-card {
/* Modelo de caja */
  overflow: hidden;

  /* Bordes */
  border-radius: var(--radius-xl);

  /* Fondos */
  background: var(--color-white);

  /* Colores y efectos */
  box-shadow: var(--shadow);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.blog-card:hover {
/* Colores y efectos */
  box-shadow: var(--shadow-lg);

  /* Otras propiedades */
  transform: translateY(-4px);}

.blog-card-image {
/* Modelo de caja */
  display: block;

  /* Fondos */
  background: var(--color-bg);

  /* Otras propiedades */
  aspect-ratio: 16/9;}

.blog-card-image img {
/* Dimensiones */
  width: 100%;
  height: 100%;

  /* Otras propiedades */
  object-fit: cover;}

.blog-image-placeholder {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  justify-content: center;

  /* Dimensiones */
  width: 100%;
  height: 100%;

  /* Fondos */
  background: var(--color-primary-50);

  /* Tipografía */
  font-size: 48px;}

.blog-card-content {
/* Relleno */
  padding: var(--space-lg);}

.blog-date {
/* Tipografía */
  font-size: var(--font-size-xs);
  text-transform: uppercase;

  /* Colores y efectos */
  color: var(--color-text-muted);

  /* Otras propiedades */
  letter-spacing: 0.05em;}

.blog-title {
/* Márgenes */
  margin: var(--space-sm) 0;

  /* Tipografía */
  font-size: var(--font-size-lg);}

.blog-title a:hover {
/* Colores y efectos */
  color: var(--color-primary);}

.blog-excerpt {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.blog-link {
/* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-primary);}

.cta-section {
/* Fondos */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);

  /* Colores y efectos */
  color: var(--color-white);}

.cta-box {
/* Dimensiones */
  max-width: 700px;

  /* Márgenes */
  margin: 0 auto;

  /* Tipografía */
  text-align: center;}

.cta-box h2 {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Colores y efectos */
  color: var(--color-white);}

.cta-box p {
/* Márgenes */
  margin-bottom: var(--space-xl);

  /* Tipografía */
  font-size: var(--font-size-lg);

  /* Colores y efectos */
  opacity: 0.9;}

.cta-buttons {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;}

.cta-trust {
/* Márgenes */
  margin-top: var(--space-lg);

  /* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  opacity: 0.85;}

.blog-cta-section {
/* Relleno */
  padding: var(--space-2xl) 0;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-primary-50) 0%, var(--color-bg-alt) 100%);}

.blog-cta-box {
/* Dimensiones */
  max-width: 600px;

  /* Márgenes */
  margin: 0 auto;

  /* Relleno */
  padding: var(--space-2xl);

  /* Bordes */
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);

  /* Fondos */
  background: var(--color-white);

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  box-shadow: var(--shadow-lg);}

.blog-cta-icon {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  font-size: 48px;}

.blog-cta-title {
/* Márgenes */
  margin-bottom: var(--space-sm);

  /* Tipografía */
  font-size: var(--font-size-xl);
  font-weight: 700;

  /* Colores y efectos */
  color: var(--color-text);}

.blog-cta-text {
/* Márgenes */
  margin-bottom: var(--space-lg);

  /* Tipografía */
  font-size: var(--font-size-base);
  line-height: 1.6;

  /* Colores y efectos */
  color: var(--color-text-muted);}

.blog-cta-btn {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: var(--space-sm);

  /* Relleno */
  padding: 14px 28px;

  /* Tipografía */
  font-size: var(--font-size-lg);}

.blog-cta-btn img {
/* Dimensiones */
  width: 20px;
  height: 20px;}

.btn-outline-white {
/* Bordes */
  border: 2px solid rgba(255, 255, 255, 0.8);

  /* Fondos */
  background: transparent;

  /* Colores y efectos */
  color: var(--color-white);}

.btn-outline-white:hover {
/* Bordes */
  border-color: var(--color-white);

  /* Fondos */
  background: rgba(255, 255, 255, 0.1);

  /* Colores y efectos */
  color: var(--color-white);}

.faq-list {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  gap: var(--space-md);}

.faq-item {
/* Modelo de caja */
  overflow: hidden;

  /* Bordes */
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);

  /* Fondos */
  background: var(--color-white);

  /* Transiciones y animaciones */
  transition: box-shadow 0.2s ease;}

.faq-item:hover {
/* Colores y efectos */
  box-shadow: var(--shadow-md);}

.faq-item[open] {
/* Colores y efectos */
  box-shadow: var(--shadow-md);}

.faq-question {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: space-between;
  align-items: center;

  /* Relleno */
  padding: var(--space-lg);

  /* Tipografía */
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-text);

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  list-style: none;}

.faq-question::-webkit-details-marker {
/* Modelo de caja */
  display: none;}

.faq-question span:first-child {
/* Flexbox y Grid */
  flex: 1;

  /* Relleno */
  padding-right: var(--space-md);}

.faq-toggle {
/* Tipografía */
  font-size: var(--font-size-xl);
  font-weight: 700;

  /* Colores y efectos */
  color: var(--color-primary);

  /* Transiciones y animaciones */
  transition: transform 0.2s ease;}

.faq-item[open] .faq-toggle {
/* Otras propiedades */
  transform: rotate(45deg);}

.faq-answer {
/* Relleno */
  padding: 0 var(--space-lg) var(--space-lg);

  /* Tipografía */
  line-height: 1.7;

  /* Colores y efectos */
  color: var(--color-text-muted);}

.faq-answer p {
/* Márgenes */
  margin: 0;}

.local-info-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-3xl);
  align-items: start;

  /* Otras propiedades */
  grid-template-columns: 1.5fr 1fr;}

.local-info-content h2 {
/* Márgenes */
  margin-bottom: var(--space-lg);}

.local-info-content p {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  line-height: 1.8;

  /* Colores y efectos */
  color: var(--color-text-muted);}

.local-benefits {
/* Márgenes */
  margin-top: var(--space-lg);

  /* Relleno */
  padding: 0;

  /* Otras propiedades */
  list-style: none;}

.local-benefits li {
/* Relleno */
  padding: var(--space-sm) 0;

  /* Tipografía */
  font-size: var(--font-size-base);}

.local-info-map {
/* Relleno */
  padding: var(--space-xl);

  /* Bordes */
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);

  /* Fondos */
  background: var(--color-bg-alt);}

.local-info-map h3 {
/* Márgenes */
  margin-bottom: var(--space-md);}

.local-info-map ul {
/* Relleno */
  padding: 0;

  /* Otras propiedades */
  list-style: none;}

.local-info-map li {
/* Relleno */
  padding: var(--space-xs) 0;}

.categories-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-lg);

  /* Otras propiedades */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));}

.category-card {
/* Relleno */
  padding: var(--space-xl);

  /* Bordes */
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);

  /* Fondos */
  background: var(--color-white);

  /* Tipografía */
  text-align: center;

  /* Transiciones y animaciones */
  transition: transform 0.2s ease, box-shadow 0.2s ease;}

.category-card:hover {
/* Colores y efectos */
  box-shadow: var(--shadow-lg);

  /* Otras propiedades */
  transform: translateY(-4px);}

.category-icon {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  font-size: 3rem;}

.category-card h3 {
/* Márgenes */
  margin-bottom: var(--space-sm);}

.category-card p {
/* Márgenes */
  margin-bottom: var(--space-lg);

  /* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.features-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-lg);

  /* Otras propiedades */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));}

.feature-card {
/* Relleno */
  padding: var(--space-xl);

  /* Bordes */
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);

  /* Fondos */
  background: var(--color-white);

  /* Tipografía */
  text-align: center;}

.feature-icon {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  font-size: 2.5rem;}

.feature-card h3 {
/* Márgenes */
  margin-bottom: var(--space-sm);

  /* Tipografía */
  font-size: var(--font-size-lg);}

.feature-card p {
/* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.footer {
/* Márgenes */
  margin-top: auto;

  /* Relleno */
  padding: var(--space-3xl) 0 var(--space-xl);

  /* Fondos */
  background: var(--color-text);

  /* Colores y efectos */
  color: var(--color-white);}

.footer-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-2xl);

  /* Márgenes */
  margin-bottom: var(--space-2xl);

  /* Otras propiedades */
  grid-template-columns: 2fr 1fr 1fr 1fr;}

.footer-brand {
/* Dimensiones */
  max-width: 300px;}

.footer-brand .logo {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Colores y efectos */
  color: var(--color-white);}

.footer-brand p {
/* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-light);}

.footer-visits {
/* Márgenes */
  margin-top: var(--space-md);

  /* Relleno */
  padding: var(--space-md);

  /* Bordes */
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;

  /* Fondos */
  background: rgba(255, 255, 255, 0.05);}

.footer-visits__title {
/* Márgenes */
  margin-bottom: var(--space-sm);

  /* Tipografía */
  font-size: var(--font-size-xs);
  text-transform: uppercase;

  /* Colores y efectos */
  color: var(--color-text-light);

  /* Otras propiedades */
  letter-spacing: 0.08em;}

.footer-visits__grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: var(--space-sm);

  /* Otras propiedades */
  grid-template-columns: repeat(3, minmax(0, 1fr));}

.footer-visits__item {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  gap: 4px;}

.footer-visits__label {
/* Tipografía */
  font-size: var(--font-size-xs);

  /* Colores y efectos */
  color: var(--color-text-light);}

.footer-visits__value {
/* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-white);

  /* Otras propiedades */
  word-break: break-word;}

.footer-links h3 {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-white);}

.footer-links ul {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  gap: var(--space-sm);}

.footer-links a {
/* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-light);

  /* Transiciones y animaciones */
  transition: color 0.2s ease;}

.footer-links a:hover {
/* Colores y efectos */
  color: var(--color-white);}

.footer-bottom {
/* Relleno */
  padding-top: var(--space-xl);

  /* Bordes */
  border-top: 1px solid rgba(255, 255, 255, 0.1);

  /* Tipografía */
  text-align: center;
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text-light);}

.footer-bottom p {
/* Márgenes */
  margin-bottom: var(--space-xs);}

.footer-trust-badges {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);

  /* Márgenes */
  margin-bottom: var(--space-lg);}

.trust-badge {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 6px;

  /* Relleno */
  padding: 8px 14px;

  /* Bordes */
  border-radius: var(--radius-full);

  /* Fondos */
  background: rgba(255, 255, 255, 0.1);

  /* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 500;

  /* Colores y efectos */
  color: var(--color-white);

  /* Otras propiedades */
  white-space: nowrap;}

.form-group {
/* Márgenes */
  margin-bottom: var(--space-lg);}

.form-label {
/* Modelo de caja */
  display: block;

  /* Márgenes */
  margin-bottom: var(--space-sm);

  /* Tipografía */
  font-size: var(--font-size-sm);
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-text);}

.form-input, .form-textarea {
/* Dimensiones */
  width: 100%;

  /* Relleno */
  padding: 14px 18px;

  /* Bordes */
  border: 2px solid var(--color-border);
  border-radius: var(--radius);

  /* Fondos */
  background: var(--color-white);

  /* Tipografía */
  font-size: var(--font-size-base);
  font-family: inherit;

  /* Colores y efectos */
  color: var(--color-text);

  /* Transiciones y animaciones */
  transition: all 0.2s ease;}

.form-input:focus, .form-textarea:focus {
/* Bordes */
  border-color: var(--color-primary);

  /* Colores y efectos */
  box-shadow: 0 0 0 3px rgba(44, 85, 48, 0.15);

  /* Otras propiedades */
  outline: none;}

.form-input::placeholder, .form-textarea::placeholder {
/* Colores y efectos */
  color: var(--color-text-light);}

.form-textarea {
/* Dimensiones */
  min-height: 120px;

  /* Otras propiedades */
  resize: vertical;}

.form-hint {
/* Márgenes */
  margin-top: var(--space-xs);

  /* Tipografía */
  font-size: var(--font-size-xs);

  /* Colores y efectos */
  color: var(--color-text-muted);}

.form-error {
/* Márgenes */
  margin-top: var(--space-xs);

  /* Tipografía */
  font-size: var(--font-size-xs);

  /* Colores y efectos */
  color: var(--color-error);}

.alert {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: var(--space-md);

  /* Márgenes */
  margin-bottom: var(--space-lg);

  /* Relleno */
  padding: var(--space-md) var(--space-lg);

  /* Bordes */
  border-radius: var(--radius);}

.alert-success {
/* Bordes */
  border: 1px solid rgba(22, 163, 74, 0.2);

  /* Fondos */
  background: var(--color-success-bg);

  /* Colores y efectos */
  color: var(--color-success);}

.alert-error {
/* Bordes */
  border: 1px solid rgba(220, 38, 38, 0.2);

  /* Fondos */
  background: var(--color-error-bg);

  /* Colores y efectos */
  color: var(--color-error);}

.alert-info {
/* Bordes */
  border: 1px solid rgba(2, 132, 199, 0.2);

  /* Fondos */
  background: var(--color-info-bg);

  /* Colores y efectos */
  color: var(--color-info);}

.page-hero {
/* Relleno */
  padding: var(--space-3xl) 0;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  color: var(--color-white);}

.page-hero h1 {
/* Márgenes */
  margin-bottom: var(--space-md);

  /* Colores y efectos */
  color: var(--color-white);}

.page-hero p {
/* Dimensiones */
  max-width: 600px;

  /* Márgenes */
  margin: 0 auto;

  /* Tipografía */
  font-size: var(--font-size-lg);

  /* Colores y efectos */
  opacity: 0.9;}

.breadcrumbs {
/* Márgenes */
  margin-bottom: var(--space-lg);

  /* Tipografía */
  font-size: var(--font-size-sm);}

.breadcrumbs a {
/* Colores y efectos */
  opacity: 0.8;}

.breadcrumbs a:hover {
/* Tipografía */
  text-decoration: underline;

  /* Colores y efectos */
  opacity: 1;}

.breadcrumbs span {
/* Márgenes */
  margin: 0 8px;

  /* Colores y efectos */
  opacity: 0.6;}

.has-dropdown {
/* Posicionamiento */
  position: relative;
  z-index: 10002;

  /* Interactividad */
  cursor: pointer;}

.dropdown-menu {
/* Posicionamiento */
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10000;

  /* Modelo de caja */
  display: none;

  /* Dimensiones */
  width: 220px;

  /* Relleno */
  padding: var(--space-xs) 0;

  /* Bordes */
  border-radius: var(--radius);
  border: 1px solid var(--color-border);

  /* Fondos */
  background: var(--color-white);

  /* Colores y efectos */
  box-shadow: var(--shadow-xl);

  /* Transiciones y animaciones */
  animation: fadeIn 0.2s ease;}

.has-dropdown:hover .dropdown-menu, .has-dropdown:focus-within .dropdown-menu, .has-dropdown.active .dropdown-menu {
/* Modelo de caja */
  display: block;}

.dropdown-menu li {
/* Modelo de caja */
  display: block;}

.dropdown-menu a {
/* Modelo de caja */
  display: block;

  /* Relleno */
  padding: 10px 16px;

  /* Tipografía */
  font-size: var(--font-size-sm);

  /* Colores y efectos */
  color: var(--color-text);

  /* Transiciones y animaciones */
  transition: background 0.1s ease;}

.dropdown-menu a:hover {
/* Fondos */
  background: var(--color-bg-alt);

  /* Colores y efectos */
  color: var(--color-primary);}

.help-card.yes {
/* Fondos */
  background: #dcfce7;

  /* Colores y efectos */
  color: #14532d;}

.help-card.yes h3, .help-card.yes ul li {
/* Colores y efectos */
  color: #14532d;}

.help-card.no {
/* Fondos */
  background: #fee2e2;

  /* Colores y efectos */
  color: #7f1d1d;}

.help-card.no h3, .help-card.no ul li, .help-card.no p {
/* Colores y efectos */
  color: #7f1d1d;}

.help-card.no a {
/* Tipografía */
  text-decoration: underline;

  /* Colores y efectos */
  color: #991b1b;}

.dark .help-card.yes {
/* Fondos */
  background: #064e3b;

  /* Colores y efectos */
  color: #ecfdf5;}

.dark .help-card.yes h3, .dark .help-card.yes ul li {
/* Colores y efectos */
  color: #ecfdf5;}

.dark .help-card.no {
/* Fondos */
  background: #7f1d1d;

  /* Colores y efectos */
  color: #fef2f2;}

.dark .help-card.no h3, .dark .help-card.no ul li, .dark .help-card.no p {
/* Colores y efectos */
  color: #fef2f2;}

.dark .help-card.no a {
/* Colores y efectos */
  color: #fca5a5;}

a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
/* Bordes */
  border-radius: 4px;

  /* Otras propiedades */
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;}

.btn:focus-visible {
/* Colores y efectos */
  box-shadow: 0 0 0 4px rgba(var(--color-primary-rgb, 34, 197, 94), 0.2);

  /* Otras propiedades */
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;}

.main-nav a:focus-visible {
/* Bordes */
  border-radius: var(--radius);

  /* Fondos */
  background: var(--color-primary-50);

  /* Otras propiedades */
  outline: 2px solid var(--color-primary);
  outline-offset: 4px;}

.cart-btn-header:focus-visible, .theme-toggle:focus-visible, .btn-donate:focus-visible {
/* Otras propiedades */
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;}

.form-input:focus-visible, .form-textarea:focus-visible, .form-select:focus-visible {
/* Bordes */
  border-color: var(--color-primary);

  /* Colores y efectos */
  box-shadow: 0 0 0 3px var(--color-primary-50);

  /* Otras propiedades */
  outline: none;}

.blog-card:focus-within, .service-card:focus-within {
/* Otras propiedades */
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;}

:focus:not(:focus-visible) {
/* Otras propiedades */
  outline: none;}

.skip-link {
/* Posicionamiento */
  position: fixed;
  top: -100px;
  left: 50%;
  z-index: 99999;

  /* Relleno */
  padding: 12px 24px;

  /* Bordes */
  border-radius: var(--radius);

  /* Fondos */
  background: var(--color-primary);

  /* Tipografía */
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;

  /* Colores y efectos */
  color: white;
  box-shadow: var(--shadow-lg);

  /* Transiciones y animaciones */
  transition: top 0.3s ease;

  /* Otras propiedades */
  transform: translateX(-50%);}

.skip-link:focus, .skip-link:focus-visible {
/* Posicionamiento */
  top: 10px;

  /* Otras propiedades */
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;}

.mobile-menu-btn:focus-visible {
/* Otras propiedades */
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;}

.reaction-btn:focus-visible {
/* Otras propiedades */
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;}

.share-btn:focus-visible {
/* Otras propiedades */
  outline: 2px solid currentColor;
  outline-offset: 2px;}

.breadcrumbs {
/* Márgenes */
  margin-bottom: var(--space-3);}

.breadcrumbs ol {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  align-items: center;
  gap: 0;

  /* Márgenes */
  margin: 0;

  /* Relleno */
  padding: 0;

  /* Tipografía */
  font-size: 0.9rem;

  /* Otras propiedades */
  list-style: none;}

.breadcrumbs li {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;}

.breadcrumbs a {
/* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  color: var(--color-primary);

  /* Transiciones y animaciones */
  transition: color 0.2s;}

.breadcrumbs a:hover {
/* Tipografía */
  text-decoration: underline;

  /* Colores y efectos */
  color: var(--color-primary-dark);}

.breadcrumbs span[aria-current="page"] {
/* Tipografía */
  font-weight: 500;

  /* Colores y efectos */
  color: var(--color-text-muted);}

.breadcrumb-separator {
/* Márgenes */
  margin: 0 8px;

  /* Colores y efectos */
  color: var(--color-text-light);}

html.dark .breadcrumbs a {
/* Colores y efectos */
  color: var(--color-primary-dark);}

html.dark .breadcrumbs span[aria-current="page"] {
/* Colores y efectos */
  color: var(--color-text-muted);}

.skeleton {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;

  /* Bordes */
  border-radius: var(--radius);

  /* Fondos */
  background-color: #e2e8f0;}

.skeleton::after {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 0;

  /* Modelo de caja */
  display: block;

  /* Dimensiones */
  width: 100%;
  height: 100%;

  /* Fondos */
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);

  /* Transiciones y animaciones */
  animation: shimmer 1.5s infinite;

  /* Otras propiedades */
  content: '';
  transform: translateX(-100%);}

.skeleton-text {
/* Dimensiones */
  height: 1em;
  width: 100%;

  /* Márgenes */
  margin-bottom: 0.5em;

  /* Bordes */
  border-radius: 4px;}

.skeleton-text.title {
/* Dimensiones */
  height: 1.5em;
  width: 70%;}

.skeleton-rect {
/* Dimensiones */
  width: 100%;
  height: 100%;}

.img-loading {
/* Colores y efectos */
  opacity: 0;

  /* Transiciones y animaciones */
  transition: opacity 0.5s ease;}

.img-loaded {
/* Colores y efectos */
  opacity: 1;}

html.dark .skeleton {
/* Fondos */
  background-color: #334155;}

html.dark .skeleton::after {
/* Fondos */
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);}

.header .container {
/* Modelo de caja */
  overflow: visible !important;

  /* Dimensiones */
  max-width: 100%;}

.header, .navbar {
/* Posicionamiento */
  z-index: 9999;}

.dropdown-menu {
/* Posicionamiento */
  z-index: 10000;}

.mobile-menu-btn.active span:nth-child(1) {
/* Otras propiedades */
  transform: rotate(45deg) translate(5px, 5px);}

.mobile-menu-btn.active span:nth-child(2) {
/* Colores y efectos */
  opacity: 0;}

.mobile-menu-btn.active span:nth-child(3) {
/* Otras propiedades */
  transform: rotate(-45deg) translate(7px, -6px);}

#paw-trail-canvas {
/* Posicionamiento */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;

  /* Dimensiones */
  width: 100%;
  height: 100%;

  /* Colores y efectos */
  opacity: 0.8;

  /* Interactividad */
  pointer-events: none;}

.hero-landing {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  display: flex;
  overflow: hidden;

  /* Flexbox y Grid */
  align-items: center;

  /* Dimensiones */
  min-height: 70vh;

  /* Relleno */
  padding: 2rem 0 4rem;

  /* Fondos */
  background: linear-gradient(160deg, #0d3320 0%, #1a5c3a 40%, #2c7a50 100%);}

.hero-landing::before {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  /* Fondos */
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

  /* Interactividad */
  pointer-events: none;

  /* Otras propiedades */
  content: '';}

.hero-landing .hero-content {
/* Posicionamiento */
  position: relative;
  z-index: 2;

  /* Colores y efectos */
  color: #fff;}

.hero-landing .hero-badge {
/* Relleno */
  padding: 10px 20px;

  /* Bordes */
  border: 1px solid rgba(255, 255, 255, 0.2);

  /* Fondos */
  background: rgba(255, 255, 255, 0.15);

  /* Tipografía */
  font-size: 0.9rem;
  font-weight: 600;

  /* Colores y efectos */
  color: #fff;

  /* Transiciones y animaciones */
  animation: fadeInDown 0.6s ease-out;

  /* Otras propiedades */
  backdrop-filter: blur(10px);
  letter-spacing: 0.5px;}

.hero-landing .hero-title {
/* Márgenes */
  margin-bottom: 1.25rem;

  /* Tipografía */
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;

  /* Colores y efectos */
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);

  /* Transiciones y animaciones */
  animation: fadeInUp 0.6s ease-out 0.1s both;}

.hero-landing .hero-subtitle {
/* Dimensiones */
  max-width: 520px;

  /* Márgenes */
  margin-bottom: 2rem;

  /* Tipografía */
  font-size: 1.15rem;
  line-height: 1.7;

  /* Colores y efectos */
  color: rgba(255, 255, 255, 0.9);

  /* Transiciones y animaciones */
  animation: fadeInUp 0.6s ease-out 0.2s both;}

.hero-landing .hero-cta {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-wrap: wrap;
  gap: 1rem;

  /* Transiciones y animaciones */
  animation: fadeInUp 0.6s ease-out 0.3s both;}

.hero-landing .hero-cta .btn {
/* Modelo de caja */
  display: inline-flex;

  /* Flexbox y Grid */
  align-items: center;
  gap: 0.5rem;

  /* Relleno */
  padding: 1rem 1.75rem;

  /* Bordes */
  border-radius: 12px;

  /* Tipografía */
  font-size: 1rem;
  font-weight: 600;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.hero-landing .btn-primary {
/* Bordes */
  border: none;

  /* Fondos */
  background: #fff;

  /* Colores y efectos */
  color: #1a5c3a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);}

.hero-landing .btn-primary:hover {
/* Fondos */
  background: #f0f0f0;

  /* Colores y efectos */
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);

  /* Otras propiedades */
  transform: translateY(-2px);}

.hero-landing .btn-whatsapp {
/* Bordes */
  border: none;

  /* Fondos */
  background: #25D366;

  /* Colores y efectos */
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);}

.hero-landing .btn-whatsapp:hover {
/* Fondos */
  background: #20bd5a;

  /* Colores y efectos */
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);

  /* Otras propiedades */
  transform: translateY(-2px);}

.hero-landing .hero-image {
/* Posicionamiento */
  position: relative;
  z-index: 2;

  /* Transiciones y animaciones */
  animation: fadeInRight 0.8s ease-out 0.4s both;}

.hero-landing .hero-img {
/* Bordes */
  border-radius: 20px;

  /* Colores y efectos */
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);

  /* Transiciones y animaciones */
  animation: heroFloat 6s ease-in-out infinite;}

.features-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: 1.5rem;

  /* Otras propiedades */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));}

.feature-card {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;

  /* Relleno */
  padding: 2rem;

  /* Bordes */
  border-radius: 16px;
  border: 1px solid var(--color-border);

  /* Fondos */
  background: var(--color-white);

  /* Tipografía */
  text-align: center;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.feature-card::before {
/* Posicionamiento */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  /* Dimensiones */
  height: 4px;

  /* Fondos */
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent));

  /* Transiciones y animaciones */
  transition: transform 0.3s ease;

  /* Otras propiedades */
  content: '';
  transform: scaleX(0);}

.feature-card:hover {
/* Colores y efectos */
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

  /* Otras propiedades */
  transform: translateY(-5px);}

.feature-card:hover::before {
/* Otras propiedades */
  transform: scaleX(1);}

.feature-icon {
/* Modelo de caja */
  display: block;

  /* Márgenes */
  margin-bottom: 1rem;

  /* Tipografía */
  font-size: 3rem;}

.feature-card h3 {
/* Márgenes */
  margin-bottom: 0.75rem;

  /* Tipografía */
  font-size: 1.2rem;
  font-weight: 700;

  /* Colores y efectos */
  color: var(--color-text);}

.feature-card p {
/* Márgenes */
  margin: 0;

  /* Tipografía */
  font-size: 0.95rem;
  line-height: 1.6;

  /* Colores y efectos */
  color: var(--color-text-muted);}

.categories-grid {
/* Modelo de caja */
  display: grid;

  /* Flexbox y Grid */
  gap: 1.25rem;

  /* Otras propiedades */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));}

.category-card {
/* Relleno */
  padding: 1.75rem;

  /* Bordes */
  border-radius: 16px;
  border: 1px solid var(--color-border);

  /* Fondos */
  background: var(--color-white);

  /* Tipografía */
  text-align: center;

  /* Transiciones y animaciones */
  transition: all 0.3s ease;

  /* Interactividad */
  cursor: pointer;}

.category-card:hover {
/* Bordes */
  border-color: var(--color-primary);

  /* Colores y efectos */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);

  /* Otras propiedades */
  transform: translateY(-4px);}

.category-icon {
/* Márgenes */
  margin-bottom: 1rem;

  /* Tipografía */
  font-size: 2.5rem;}

.category-card h3 {
/* Márgenes */
  margin-bottom: 0.5rem;

  /* Tipografía */
  font-size: 1.1rem;
  font-weight: 700;

  /* Colores y efectos */
  color: var(--color-text);}

.category-card p {
/* Márgenes */
  margin-bottom: 1rem;

  /* Tipografía */
  font-size: 0.9rem;
  line-height: 1.5;

  /* Colores y efectos */
  color: var(--color-text-muted);}

.category-card .btn {
/* Relleno */
  padding: 0.5rem 1rem;

  /* Tipografía */
  font-size: 0.85rem;}

.faq-list {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  flex-direction: column;
  gap: 0.75rem;}

.faq-item {
/* Modelo de caja */
  overflow: hidden;

  /* Bordes */
  border-radius: 12px;
  border: 1px solid var(--color-border);

  /* Fondos */
  background: var(--color-white);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.faq-item[open] {
/* Bordes */
  border-color: var(--color-primary);

  /* Colores y efectos */
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);}

.faq-question {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: space-between;
  align-items: center;

  /* Relleno */
  padding: 1.25rem 1.5rem;

  /* Tipografía */
  font-weight: 600;

  /* Colores y efectos */
  color: var(--color-text);

  /* Transiciones y animaciones */
  transition: background 0.2s;

  /* Interactividad */
  cursor: pointer;

  /* Otras propiedades */
  list-style: none;}

.faq-question::-webkit-details-marker {
/* Modelo de caja */
  display: none;}

.faq-question:hover {
/* Fondos */
  background: var(--color-bg-alt);}

.faq-toggle {
/* Tipografía */
  font-size: 1.5rem;
  font-weight: 300;

  /* Colores y efectos */
  color: var(--color-primary);

  /* Transiciones y animaciones */
  transition: transform 0.3s ease;}

.faq-item[open] .faq-toggle {
/* Otras propiedades */
  transform: rotate(45deg);}

.faq-answer {
/* Relleno */
  padding: 0 1.5rem 1.5rem;

  /* Tipografía */
  line-height: 1.7;

  /* Colores y efectos */
  color: var(--color-text-muted);}

.faq-answer p {
/* Márgenes */
  margin: 0;}

.cta-section {
/* Posicionamiento */
  position: relative;

  /* Modelo de caja */
  overflow: hidden;

  /* Relleno */
  padding: 4rem 0;

  /* Fondos */
  background: linear-gradient(135deg, var(--color-primary) 0%, #1e4d2b 100%);}

.cta-section::before {
/* Posicionamiento */
  position: absolute;
  top: -50%;
  right: -20%;

  /* Dimensiones */
  width: 60%;
  height: 200%;

  /* Fondos */
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);

  /* Interactividad */
  pointer-events: none;

  /* Otras propiedades */
  content: '';}

.cta-box {
/* Posicionamiento */
  position: relative;
  z-index: 2;

  /* Tipografía */
  text-align: center;

  /* Colores y efectos */
  color: #fff;}

.cta-box h2 {
/* Márgenes */
  margin-bottom: 1rem;

  /* Tipografía */
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;

  /* Colores y efectos */
  color: #fff;}

.cta-box p {
/* Dimensiones */
  max-width: 500px;

  /* Márgenes */
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;

  /* Tipografía */
  font-size: 1.15rem;

  /* Colores y efectos */
  opacity: 0.9;}

.cta-buttons {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;}

.cta-box .btn-whatsapp {
/* Relleno */
  padding: 1rem 2rem;

  /* Bordes */
  border-radius: 12px;
  border: none;

  /* Fondos */
  background: #25D366;

  /* Tipografía */
  font-size: 1.1rem;
  font-weight: 600;

  /* Colores y efectos */
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);

  /* Transiciones y animaciones */
  transition: all 0.3s ease;}

.cta-box .btn-whatsapp:hover {
/* Fondos */
  background: #20bd5a;

  /* Colores y efectos */
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);

  /* Otras propiedades */
  transform: translateY(-3px);}

.cta-trust {
/* Márgenes */
  margin-top: 1.5rem;

  /* Tipografía */
  font-size: 0.95rem;

  /* Colores y efectos */
  opacity: 0.85;}

.breadcrumbs {
/* Modelo de caja */
  display: flex;

  /* Flexbox y Grid */
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;

  /* Relleno */
  padding: 1rem 0;

  /* Tipografía */
  font-size: 0.9rem;}

.breadcrumbs a {
/* Tipografía */
  text-decoration: none;

  /* Colores y efectos */
  color: var(--color-text-muted);

  /* Transiciones y animaciones */
  transition: color 0.2s;}

.breadcrumbs a:hover {
/* Colores y efectos */
  color: var(--color-primary);}

.breadcrumbs span {
/* Colores y efectos */
  color: var(--color-text-muted);}

.breadcrumbs .separator {
/* Márgenes */
  margin: 0 0.25rem;

  /* Colores y efectos */
  color: var(--color-border);}

.bg-alt {
/* Fondos */
  background: var(--color-bg-alt);}

.section-title {
/* Márgenes */
  margin-bottom: 0.75rem;

  /* Tipografía */
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;

  /* Colores y efectos */
  color: var(--color-text);}

.section-title.text-center {
/* Tipografía */
  text-align: center;}

html.dark .hero-landing {
/* Fondos */
  background: linear-gradient(160deg, #0a1f15 0%, #0d3320 40%, #1a5c3a 100%);}

html.dark .feature-card, html.dark .category-card, html.dark .faq-item {
/* Bordes */
  border-color: var(--color-border);

  /* Fondos */
  background: var(--color-bg-alt);}

html.dark .feature-card:hover, html.dark .category-card:hover {
/* Bordes */
  border-color: var(--color-primary);}

html.dark .faq-question:hover {
/* Fondos */
  background: rgba(255, 255, 255, 0.05);}

html.dark .cta-section {
/* Fondos */
  background: linear-gradient(135deg, #0d3320 0%, #071a10 100%);}

:root {
/* Otras propiedades */
  --container-padding: clamp(1rem, 4vw, 3rem);
  --section-padding: clamp(2rem, 6vw, 5rem);
  --grid-gap: clamp(1rem, 3vw, 2rem);
  --font-scale: 1;}

html.dark .nav-menu {
/* Fondos */
  background: var(--color-bg);}
/* ============================================
   RESPONSIVE - SISTEMA COMPLETO MULTI-DISPOSITIVO
   ============================================ */

/* 8K / PANTALLAS GIGANTES (7680px+) */
@media (min-width: 7680px) {
  html { font-size: 40px; }
  .container { max-width: 5000px; padding: 0 120px; }
  .hero h1, .hero-title { font-size: 120px; }
}

/* 6K DISPLAYS (5120px - 7679px) */
@media (min-width: 5120px) and (max-width: 7679px) {
  html { font-size: 32px; }
  .container { max-width: 4000px; }
}

/* 4K / 5K DISPLAYS (3840px - 5119px) */
@media (min-width: 3840px) and (max-width: 5119px) {
  html { font-size: 24px; }
  .container { max-width: 3200px; }
  .products-grid, .blog-grid { grid-template-columns: repeat(5, 1fr); }
}

/* 2K / QHD (2560px - 3839px) */
@media (min-width: 2560px) and (max-width: 3839px) {
  html { font-size: 18px; }
  .container { max-width: 2000px; }
  .products-grid, .blog-grid { grid-template-columns: repeat(4, 1fr); }
}

/* FULL HD+ (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
  .container { max-width: 1600px; }
  .products-grid, .blog-grid { grid-template-columns: repeat(4, 1fr); }
}

/* TABLETS GRANDES (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
  :root { --header-height: 68px; }
  .container { max-width: 960px; padding: 0 20px; }
  .nav-link { font-size: 0.9rem; padding: 0.5rem 0.75rem; }
  .hero h1, .hero-title { font-size: 2.5rem; }
  .products-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* TABLETS iPAD Pro (912px - 1023px) */
@media (min-width: 912px) and (max-width: 1023px) {
  :root { --header-height: 64px; }
  .nav-link { font-size: 0.875rem; }
  .hero h1, .hero-title { font-size: 2.25rem; }
  .products-grid, .blog-grid { grid-template-columns: repeat(3, 1fr); }
}

/* TABLETS iPAD Air (820px - 911px) */
@media (min-width: 820px) and (max-width: 911px) {
  :root { --header-height: 60px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 2rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link { font-size: 1.1rem; padding: 1rem; width: 100%; border-bottom: 1px solid var(--color-border); }
  .hero h1, .hero-title { font-size: 2rem; }
  .products-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* TABLETS iPAD (768px - 819px) */
@media (min-width: 768px) and (max-width: 819px) {
  :root { --header-height: 60px; }
  .container { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 1.5rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero { padding: 3rem 0; min-height: auto; }
  .hero h1, .hero-title { font-size: 1.875rem; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; }
  .products-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* TABLETS PEQUEÑAS (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
  :root { --header-height: 56px; }
  .container { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 1.5rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero h1, .hero-title { font-size: 1.75rem; }
  .products-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
  .product-card img, .blog-card img { height: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* MÓVILES GRANDES (540px - 599px) */
@media (min-width: 540px) and (max-width: 599px) {
  :root { --header-height: 56px; }
  .container { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 1rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero h1, .hero-title { font-size: 1.625rem; }
  .products-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* MÓVILES MEDIANOS (480px - 539px) */
@media (min-width: 480px) and (max-width: 539px) {
  :root { --header-height: 56px; }
  .container { padding: 0 12px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 1rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero h1, .hero-title { font-size: 1.5rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-card img { height: 130px; }
}

/* MÓVILES iPhone Pro Max (428px - 479px) */
@media (min-width: 428px) and (max-width: 479px) {
  :root { --header-height: 56px; }
  .container { padding: 0 16px; }
  .header { padding: 0 12px; }
  .logo img { height: 36px; }
  .nav-toggle { display: flex; width: 44px; height: 44px; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 1rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link { font-size: 1rem; padding: 1rem; border-bottom: 1px solid var(--color-border); }
  .hero { padding: 2rem 0 3rem; min-height: auto; }
  .hero h1, .hero-title { font-size: 1.5rem; line-height: 1.25; }
  .hero-buttons { flex-direction: column; gap: 0.75rem; }
  .hero-buttons .btn { width: 100%; padding: 0.875rem 1.5rem; }
  .section { padding: 2.5rem 0; }
  .section-title { font-size: 1.375rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .blog-grid { grid-template-columns: 1fr; }
  .product-card img { height: 140px; }
  .product-card-body { padding: 0.75rem; }
  .product-card-title { font-size: 0.875rem; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* MÓVILES iPhone XR/11 (414px - 427px) */
@media (min-width: 414px) and (max-width: 427px) {
  :root { --header-height: 56px; }
  .container { padding: 0 16px; }
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 1rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero h1, .hero-title { font-size: 1.375rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.625rem; }
  .product-card img { height: 130px; }
}

/* MÓVILES Galaxy/Pixel (390px - 413px) */
@media (min-width: 390px) and (max-width: 413px) {
  :root { --header-height: 54px; }
  html { font-size: 15px; }
  .container { padding: 0 14px; }
  .header { padding: 0 10px; }
  .logo img { height: 34px; }
  .nav-toggle { display: flex; width: 42px; height: 42px; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 1rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero { padding: 1.5rem 0 2.5rem; }
  .hero h1, .hero-title { font-size: 1.375rem; }
  .hero-buttons .btn { padding: 0.75rem 1.25rem; font-size: 0.9375rem; }
  .section { padding: 2rem 0; }
  .section-title { font-size: 1.25rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .product-card img { height: 120px; }
  .product-card-body { padding: 0.625rem; }
  .product-card-title { font-size: 0.8125rem; }
}

/* MÓVILES iPhone SE/6/7/8 (375px - 389px) */
@media (min-width: 375px) and (max-width: 389px) {
  :root { --header-height: 52px; }
  html { font-size: 15px; }
  .container { padding: 0 12px; }
  .header { padding: 0 8px; }
  .logo img { height: 32px; }
  .nav-toggle { display: flex; width: 40px; height: 40px; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 0.875rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero { padding: 1.25rem 0 2rem; }
  .hero h1, .hero-title { font-size: 1.25rem; }
  .hero-buttons { flex-direction: column; gap: 0.625rem; }
  .hero-buttons .btn { width: 100%; padding: 0.75rem 1rem; font-size: 0.875rem; }
  .section { padding: 1.75rem 0; }
  .section-title { font-size: 1.125rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .product-card { border-radius: 8px; }
  .product-card img { height: 110px; }
  .product-card-body { padding: 0.5rem; }
  .product-card-title { font-size: 0.75rem; }
  .blog-card img { height: 150px; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 0.875rem; }
  .footer { padding: 1.5rem 0 1rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* MÓVILES Android Moderno (360px - 374px) */
@media (min-width: 360px) and (max-width: 374px) {
  :root { --header-height: 52px; }
  html { font-size: 14px; }
  .container { padding: 0 10px; }
  .header { padding: 0 8px; }
  .logo img { height: 30px; }
  .nav-toggle { display: flex; width: 38px; height: 38px; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 0.75rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link { font-size: 0.9375rem; padding: 0.875rem; }
  .hero { padding: 1rem 0 1.75rem; }
  .hero h1, .hero-title { font-size: 1.1875rem; }
  .hero-buttons .btn { padding: 0.625rem 1rem; font-size: 0.8125rem; }
  .section { padding: 1.5rem 0; }
  .section-title { font-size: 1.0625rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.375rem; }
  .product-card img { height: 100px; }
  .product-card-body { padding: 0.5rem; }
  .product-card-title { font-size: 0.6875rem; }
  .btn { padding: 0.625rem 1rem; font-size: 0.8125rem; }
}

/* MÓVILES Legacy/Compactos (320px - 359px) */
@media (min-width: 320px) and (max-width: 359px) {
  :root { --header-height: 48px; }
  html { font-size: 13px; }
  .container { padding: 0 8px; }
  .header { padding: 0 6px; }
  .logo img { height: 28px; }
  .nav-toggle { display: flex; width: 36px; height: 36px; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 0.625rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link { font-size: 0.875rem; padding: 0.75rem; }
  .hero { padding: 1rem 0 1.5rem; }
  .hero h1, .hero-title { font-size: 1.125rem; }
  .hero-buttons { flex-direction: column; gap: 0.5rem; }
  .hero-buttons .btn { width: 100%; padding: 0.625rem 0.875rem; font-size: 0.75rem; }
  .section { padding: 1.25rem 0; }
  .section-title { font-size: 1rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 0.375rem; }
  .product-card { border-radius: 6px; }
  .product-card img { height: 85px; }
  .product-card-body { padding: 0.375rem; }
  .product-card-title { font-size: 0.625rem; }
  .blog-card img { height: 120px; }
  .feature-card { padding: 0.75rem; }
  .btn { padding: 0.5rem 0.875rem; font-size: 0.75rem; border-radius: 6px; }
  .footer { padding: 1.25rem 0 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* MÓVILES Android Compacto (280px - 319px) */
@media (min-width: 280px) and (max-width: 319px) {
  :root { --header-height: 46px; }
  html { font-size: 12px; }
  .container { padding: 0 6px; }
  .header { padding: 0 4px; }
  .logo img { height: 24px; }
  .nav-toggle { display: flex; width: 32px; height: 32px; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 0.5rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .nav-link { font-size: 0.8125rem; padding: 0.625rem; }
  .hero { padding: 0.75rem 0 1.25rem; }
  .hero h1, .hero-title { font-size: 1rem; }
  .hero-buttons .btn { padding: 0.5rem 0.75rem; font-size: 0.6875rem; }
  .section { padding: 1rem 0; }
  .section-title { font-size: 0.9375rem; }
  .products-grid { grid-template-columns: 1fr 1fr; gap: 0.25rem; }
  .product-card { border-radius: 4px; }
  .product-card img { height: 70px; }
  .product-card-body { padding: 0.25rem; }
  .product-card-title { font-size: 0.5625rem; }
  .btn { padding: 0.375rem 0.625rem; font-size: 0.6875rem; }
}

/* MÓVILES EXTRA PEQUEÑOS (max 279px) */
@media (max-width: 279px) {
  :root { --header-height: 44px; }
  html { font-size: 11px; }
  .container { padding: 0 4px; }
  .header { padding: 0 2px; }
  .logo img { height: 20px; }
  .nav-toggle { display: flex; width: 28px; height: 28px; }
  .nav-menu {
    position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0;
    flex-direction: column; background: var(--color-white); padding: 0.25rem;
    transform: translateX(-100%); transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.active { transform: translateX(0); }
  .hero h1, .hero-title { font-size: 0.875rem; }
  .section-title { font-size: 0.8125rem; }
  .products-grid { grid-template-columns: 1fr; gap: 0.25rem; }
  .product-card img { height: 100px; }
  .btn { padding: 0.25rem 0.5rem; font-size: 0.625rem; }
}

/* LANDSCAPE MÓVILES */
@media (max-width: 896px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 1rem 0 1.5rem; }
  .hero h1, .hero-title { font-size: 1.25rem; }
  .hero-buttons { flex-direction: row; gap: 0.75rem; }
  .hero-buttons .btn { width: auto; }
  .section { padding: 1.5rem 0; }
  .nav-menu { max-height: 80vh; overflow-y: auto; }
}

@media (max-width: 667px) and (orientation: landscape) {
  .hero { padding: 0.75rem 0 1rem; }
  .hero h1, .hero-title { font-size: 1.125rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .product-card img { height: 80px; }
}

/* ALTA DENSIDAD (RETINA) */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img, .product-card img, .blog-card img { image-rendering: -webkit-optimize-contrast; }
}

/* MODO OSCURO RESPONSIVE */
@media (max-width: 820px) {
  html.dark .nav-menu { background: var(--color-bg); border-left: 1px solid var(--color-border); }
  html.dark .nav-link { border-color: var(--color-border); }
}

/* ACCESIBILIDAD */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important; animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important; scroll-behavior: auto !important;
  }
}

@media (prefers-contrast: high) {
  :root { --color-text: #000000; --color-bg: #ffffff; --color-border: #000000; }
  .btn { border: 2px solid currentColor; }
  .product-card, .blog-card, .feature-card { border: 2px solid var(--color-border); }
}

/* PRINT */
@media print {
  * { background: transparent !important; color: #000 !important; box-shadow: none !important; }
  header, .nav-toggle, .nav-menu, footer, .cookies-banner, .btn { display: none !important; }
  body { font-size: 12pt; line-height: 1.5; }
  .container { max-width: 100%; padding: 0; }
}

/* ============================================
   HAMBURGUESA MÓVIL - POSICIÓN DERECHA Y NO TRANSPARENTE
   ============================================ */

/* Botón hamburguesa siempre visible en móvil, a la derecha */
@media (max-width: 1023px) {
  .navbar {
    position: relative;
  }
  
  .mobile-menu-btn {
    display: flex !important;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10002;
    background: var(--color-white);
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .mobile-menu-btn span {
    background: var(--color-text);
  }
  
  /* Menú móvil NO transparente */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    background: var(--color-white) !important;
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 10001;
    overflow-y: auto;
    opacity: 1 !important;
    backdrop-filter: none !important;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-menu li {
    width: 100%;
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-menu a {
    display: block;
    padding: 1rem;
    font-size: 1rem;
    color: var(--color-text);
  }
  
  /* Ocultar header-actions en móvil para más espacio */
  .header-actions {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
  }
  
  /* Modo oscuro - menú no transparente */
  html.dark .nav-menu {
    background: var(--color-bg) !important;
  }
  
  html.dark .mobile-menu-btn {
    background: var(--color-bg-alt);
  }
  
  html.dark .mobile-menu-btn span {
    background: var(--color-text);
  }
  
  html.dark .nav-menu li {
    border-color: var(--color-border);
  }
}

/* Tablets pequeñas */
@media (max-width: 767px) {
  .header-actions {
    right: 55px;
  }
  
  .header-actions .desktop-only-text,
  .header-actions .btn-donate span:last-child {
    display: none;
  }
  
  .mobile-menu-btn {
    padding: 8px;
  }
  
  .mobile-menu-btn span {
    width: 22px;
  }
}

/* Móviles */
@media (max-width: 480px) {
  .header-actions {
    right: 50px;
    gap: 0.5rem;
  }
  
  .mobile-menu-btn {
    padding: 6px;
  }
  
  .mobile-menu-btn span {
    width: 20px;
    height: 2px;
  }
  
  .nav-menu {
    padding: 1rem;
  }
  
  .nav-menu a {
    padding: 0.875rem;
    font-size: 0.9375rem;
  }
}

/* Móviles pequeños */
@media (max-width: 360px) {
  .header-actions {
    right: 45px;
    gap: 0.25rem;
  }
  
  .mobile-menu-btn {
    padding: 5px;
  }
  
  .mobile-menu-btn span {
    width: 18px;
  }
  
  .nav-menu a {
    padding: 0.75rem;
    font-size: 0.875rem;
  }
}

/* Animación hamburguesa -> X */
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
