:root {
  --color-earth: #1e3d0f;
  --color-pasture: #3d6b1a;
  --color-gold: #c9a227;
  --color-cream: #f8f6f0;
  --color-bark: #0f1f08;
  --color-sky: #e2f0eb;
  --color-mint: #b8d4a8;
  --shadow-soft: 0 4px 24px rgba(30, 61, 15, 0.1);
  --shadow-lift: 0 16px 48px rgba(30, 61, 15, 0.15);
  --radius: 20px;
  --radius-lg: 28px;
  --transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.34, 1.56, 0.64, 1);
  --spacing-section: 6rem;
  --spacing-container: 2rem;
  --spacing-image: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--color-cream);
  color: var(--color-bark);
  line-height: 1.65;
  overflow-x: hidden;
}
.solution-card { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; height: auto; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 var(--spacing-container); }

/* ----- Animaciones globales ----- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-soft {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.02); }
}
@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes dot-pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ----- Header ----- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(248, 246, 240, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 61, 15, 0.06);
  transition: var(--transition);
}
header.scrolled { padding: 0.6rem 0; box-shadow: var(--shadow-soft); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--color-bark);
  font-weight: 700;
  font-size: 1.4rem;
  transition: var(--transition);
}
.logo-link:hover { color: var(--color-pasture); }
.logo-link img {
  height: 42px;
  width: auto;
  display: block;
}
nav ul { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.btn-text-mobile { display: none; }
nav a {
  text-decoration: none;
  color: var(--color-bark);
  font-weight: 500;
  transition: var(--transition);
}
nav a:hover { color: var(--color-pasture); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.95rem;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-earth) 0%, var(--color-pasture) 100%);
  background-size: 200% 200%;
  color: white;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lift);
  animation: gradient-shift 3s ease infinite;
}
.btn-outline {
  background: transparent;
  color: var(--color-earth);
  border: 2px solid var(--color-pasture);
}
.btn-outline:hover {
  background: var(--color-pasture);
  color: white;
}

/* ----- Hero ----- */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 4vw, 4rem);
  padding: 6rem var(--spacing-container) 5rem;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(61, 107, 26, 0.06) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: var(--color-bark);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-out) forwards;
}
.hero-content .tagline {
  font-size: 1.2rem;
  color: var(--color-pasture);
  font-weight: 600;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.12s var(--ease-out) forwards;
}
.hero-content p {
  margin-bottom: 2rem;
  color: #3d4a35;
  opacity: 0;
  animation: fadeUp 0.9s 0.24s var(--ease-out) forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.4s var(--ease-out) forwards;
}
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lift);
  padding: 0;
  background: transparent;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s var(--ease-out) forwards;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-image-wrap img {
  width: 100%;
  height: auto;
  max-height: 420px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: var(--radius-lg);
}
.gif-zone {
  width: 100%;
  height: 100%;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #d8e8d0;
  position: relative;
}
.gif-zone img {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.img-placeholder {
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-pasture);
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px dashed rgba(61, 107, 26, 0.3);
}

/* ----- Badge dinámico ----- */
.badge-dynamic {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(61, 107, 26, 0.1);
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--color-pasture);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.05s var(--ease-out) forwards;
}
.badge-dynamic .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  animation: dot-pulse 1.5s ease-in-out infinite;
}

/* ----- Features ----- */
.features {
  padding: var(--spacing-section) 0;
  background: white;
  position: relative;
}
.features .container { padding-left: var(--spacing-container); padding-right: var(--spacing-container); }
.section-title {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}
.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-bark);
  margin-bottom: 0.75rem;
}
.section-title p { color: #5a6b52; max-width: 560px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.75rem;
  margin: 0 auto;
  max-width: 1100px;
}
.feature-card {
  background: var(--color-cream);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-pasture), var(--color-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(61, 107, 26, 0.15);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-pasture), var(--color-earth));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card .icon-wrap svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.feature-card:hover .icon-wrap { animation: pulse-soft 1.5s ease infinite; }
.feature-card h3 { margin-bottom: 0.5rem; color: var(--color-bark); font-size: 1.15rem; }
.feature-card p { color: #5a6b52; font-size: 0.95rem; }

/* ----- Módulos del sistema ----- */
.modules-section {
  padding: var(--spacing-section) 0;
  background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-sky) 100%);
}
.modules-section .container { padding-left: var(--spacing-container); padding-right: var(--spacing-container); }
.modules-intro {
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.modules-intro p { color: #5a6b52; margin-top: 0.75rem; }
.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.module-card {
  background: white;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(61, 107, 26, 0.08);
}
.module-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(61, 107, 26, 0.15);
}
.module-card h4 {
  font-size: 1.1rem;
  color: var(--color-bark);
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.module-card p {
  font-size: 0.9rem;
  color: #5a6b52;
  line-height: 1.6;
  margin: 0;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.solution-card {
  display: block;
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border: 1px solid rgba(61, 107, 26, 0.08);
  text-decoration: none;
  color: inherit;
}
.solution-card:hover {
  box-shadow: var(--shadow-lift);
  border-color: var(--color-pasture);
  transform: translateY(-4px);
}
.solution-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-pasture);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.solution-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--color-bark);
  margin: 0.5rem 0 0.75rem;
}
.solution-card p {
  font-size: 0.95rem;
  color: #5a6b52;
  line-height: 1.6;
  margin: 0 0 1rem;
}
.solution-cta {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-pasture);
}
.solution-card:hover .solution-cta { text-decoration: underline; }

/* ----- Pasarela logos clientes ----- */
.logos-section {
  padding: var(--spacing-section) 0;
  background: white;
}
.logos-section .container { padding-left: var(--spacing-container); padding-right: var(--spacing-container); }
.logos-section .section-title { margin-bottom: 2rem; }
.logos-pasarela {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(2rem, 4vw, 3.5rem);
  margin-top: 1rem;
}
.logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  flex-shrink: 0;
}
.logos-pasarela .logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logos-pasarela .logo-item img {
  display: block;
  height: auto;
  max-height: min(260px, 72vw);
  max-width: min(100%, 92vw);
  width: auto;
  object-fit: contain;
}
.logo-detail {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: #6b7a5c;
  text-align: center;
  max-width: 200px;
}

/* ----- Bloque destacado con imagen / GIF ----- */
.highlight-block {
  padding: var(--spacing-section) 0;
  background: white;
}
.highlight-block .container { padding-left: var(--spacing-container); padding-right: var(--spacing-container); }
.highlight-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
  margin-bottom: 4.5rem;
}
.highlight-split:last-child { margin-bottom: 0; }
.highlight-split.reverse { direction: rtl; }
.highlight-split.reverse > * { direction: ltr; }
.highlight-media {
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-lift);
  padding: var(--spacing-image);
  background: linear-gradient(145deg, #e8f4e8, #c9e0c9);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.highlight-media img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: calc(var(--radius) - 4px);
}
.highlight-media .gif-zone { min-height: 260px; }
.highlight-media .gif-zone img { object-fit: contain; max-height: 300px; }
.highlight-content { padding: 0 1.5rem 0 0; }
.highlight-split.reverse .highlight-content { padding: 0 0 0 1.5rem; }
.highlight-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.85rem;
  margin-bottom: 1.25rem;
  color: var(--color-bark);
}
.highlight-content ul { list-style: none; }
.highlight-content li {
  padding: 0.65rem 0;
  padding-left: 1.75rem;
  position: relative;
  color: #4a5d3d;
}
.highlight-content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-gold);
}

/* ----- CTA + Contacto ----- */
.cta {
  padding: var(--spacing-section) 0;
  background: linear-gradient(135deg, var(--color-bark) 0%, var(--color-earth) 50%, var(--color-pasture) 100%);
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  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.05'%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");
}
.cta .container { position: relative; z-index: 1; }
.cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.cta p { margin-bottom: 1.5rem; opacity: 0.95; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2rem; }
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
}
.contact-info a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.contact-info a:hover { text-decoration: underline; }
.contact-info .hours { font-size: 0.95rem; opacity: 0.9; }
.cta .btn-primary {
  background: white;
  color: var(--color-earth);
}
.cta .btn-primary:hover { background: var(--color-cream); color: var(--color-bark); }

/* ----- Footer ----- */
footer {
  padding: 2.5rem var(--spacing-container);
  background: var(--color-bark);
  color: var(--color-cream);
  text-align: center;
  font-size: 0.9rem;
}
footer a { color: var(--color-gold); text-decoration: none; }
footer .logo-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}
footer .logo-footer img { height: 32px; width: auto; }

/* ----- Reveal al scroll ----- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----- Responsive: tablet ----- */
@media (max-width: 900px) {
  .header-inner { flex-wrap: wrap; }
  nav ul { gap: 1rem; flex-wrap: wrap; }
  .hero { grid-template-columns: 1fr; padding-top: 5rem; text-align: center; padding-left: var(--spacing-container); padding-right: var(--spacing-container); }
  .hero-actions { justify-content: center; }
  .hero-image-wrap { max-width: 540px; margin: 0 auto; }
  .hero-image-wrap img { max-height: 320px; }
  .features-grid { grid-template-columns: 1fr; }
  .modules-grid { grid-template-columns: 1fr; }
  .highlight-split, .highlight-split.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }
  .highlight-content { padding: 0 !important; }
  .highlight-media { padding: 1.25rem; }
  .highlight-media img { max-height: 280px; }
}

/* ----- Responsive: móvil ----- */
@media (max-width: 600px) {
  :root { --spacing-container: 1rem; --spacing-section: 3.5rem; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  header .container { padding-left: 1rem; padding-right: 1rem; }
  .header-inner { flex-wrap: wrap; gap: 0.75rem; }
  .logo-link { font-size: 1.2rem; }
  .logo-link img { height: 36px; }
  nav.nav-desktop { display: none; }
  .btn { padding: 0.75rem 1.25rem; font-size: 0.9rem; min-height: 44px; -webkit-tap-highlight-color: transparent; }
  header .btn-contact { padding: 0.7rem 1.25rem; }
  .btn-text-desktop { display: none; }
  .btn-text-mobile { display: inline; }
  .hero {
    min-height: auto;
    padding: 5rem 1rem 3rem;
    gap: 2rem;
  }
  .hero-content h1 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 0.75rem; }
  .hero-content .tagline { font-size: 1rem; margin-bottom: 1rem; }
  .hero-content p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-image-wrap { min-height: 240px; }
  .hero-image-wrap img { max-height: 260px; }
  .features { padding: 3.5rem 0; }
  .features .container { padding-left: 1rem; padding-right: 1rem; }
  .section-title { margin-bottom: 2rem; padding: 0; }
  .section-title h2 { font-size: 1.6rem; }
  .section-title p { font-size: 0.9rem; }
  .feature-card { padding: 1.5rem; }
  .feature-card .icon-wrap { width: 48px; height: 48px; }
  .feature-card .icon-wrap svg { width: 24px; height: 24px; }
  .feature-card h3 { font-size: 1.05rem; }
  .feature-card p { font-size: 0.9rem; }
  .modules-section { padding: 3.5rem 0; }
  .modules-section .container { padding-left: 1rem; padding-right: 1rem; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-card { padding: 1.5rem; }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 1.5rem; }
  .logos-section { padding: 3.5rem 0; }
  .logos-pasarela { gap: 1.5rem; }
  .highlight-block { padding: 3.5rem 0; }
  .highlight-block .container { padding-left: 1rem; padding-right: 1rem; }
  .highlight-split, .highlight-split.reverse { margin-bottom: 3rem; gap: 1.5rem; }
  .highlight-media { padding: 1rem; min-height: 220px; }
  .highlight-media img { max-height: 220px; }
  .highlight-content h3 { font-size: 1.4rem; }
  .highlight-content li { font-size: 0.9rem; padding: 0.5rem 0 0.5rem 1.5rem; }
  .cta { padding: 3.5rem 1rem; }
  .cta h2 { font-size: 1.5rem; margin-bottom: 0.75rem; }
  .cta p { font-size: 0.95rem; margin-bottom: 1.5rem; }
  .cta-actions { flex-direction: column; margin-bottom: 1.5rem; }
  .cta-actions .btn { width: 100%; max-width: 280px; min-height: 48px; }
  .contact-info { font-size: 1rem; }
  .contact-info a { font-size: 1.1rem; }
  footer { padding: 2rem 1rem; font-size: 0.85rem; }
  footer .logo-footer { font-size: 1.1rem; }
  footer .logo-footer img { height: 28px; }
}

/* ----- WhatsApp flotante ----- */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-tap-highlight-color: transparent;
  text-decoration: none;
  animation: wa-float 2.5s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
@keyframes wa-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ----- Responsive: móvil muy pequeño ----- */
@media (max-width: 380px) {
  .hero-content h1 { font-size: 1.5rem; }
  .logo-link span { font-size: 1.1rem; }
  .section-title h2 { font-size: 1.45rem; }
  .cta h2 { font-size: 1.35rem; }
  .solution-card h3 { font-size: 1.35rem; }
}
@media (max-width: 600px) {
  .wa-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .wa-float svg { width: 28px; height: 28px; }
}

/* ----- Página de contacto ----- */
body.page-contact {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body.page-contact header {
  position: relative;
  padding: 1rem 0;
  background: rgba(248, 246, 240, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(30, 61, 15, 0.06);
}
body.page-contact main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 0 4rem;
}
.contact-page {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-page h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--color-bark);
  margin-bottom: 0.75rem;
}
.contact-page > p {
  color: #5a6b52;
  margin-bottom: 2.5rem;
}
.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
.contact-buttons .btn {
  min-width: 260px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.contact-buttons .btn-email {
  background: linear-gradient(135deg, var(--color-earth), var(--color-pasture));
  color: white;
}
.contact-buttons .btn-email:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.contact-buttons .btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
}
.contact-buttons .btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.contact-hours {
  margin-top: 2.5rem;
  font-size: 0.95rem;
  color: #5a6b52;
}
body.page-contact footer {
  padding: 2rem var(--spacing-container);
}
body.page-contact footer .logo-footer {
  margin-bottom: 0.75rem;
}
@media (max-width: 600px) {
  body.page-contact main { padding: 4rem 0 3rem; }
  body.page-contact .contact-page h1 { font-size: 1.75rem; }
  body.page-contact .contact-page > p { font-size: 0.9rem; margin-bottom: 2rem; }
  body.page-contact .contact-buttons { width: 100%; }
  body.page-contact .contact-buttons .btn {
    min-width: 100%;
    width: 100%;
    padding: 1rem 1.25rem;
  }
  body.page-contact .contact-hours { margin-top: 2rem; font-size: 0.9rem; }
  body.page-contact footer { padding: 1.5rem 1rem; font-size: 0.85rem; }
}
@media (max-width: 380px) {
  body.page-contact .contact-page h1 { font-size: 1.5rem; }
}