:root {
  --green-dark: #02250b;
  --green-main: #16863a;
  --green-light: #2ea55a;
  --accent: #ffffff;
  --text-main: #111111;
  --text-muted: #555555;
  --bg-alt: #f5f7f4;
  --border-soft: #e0e5dd;
  --shadow-soft: 0 8px 20px rgba(0,0,0,0.08);
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition-fast: 0.18s ease-out;
  --max-width: 1100px;
}

/* Fuente global Montserrat */
body, button, input, a, p, h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif !important;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #fff;
  color: var(--text-main);
}

/* Layout base */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

/* NAVBAR */
.top-nav {
  background-color: var(--green-main);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: var(--shadow-soft);
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  margin-left: 22px;
}
.nav-links a:hover {
  text-decoration: underline;
  color: var(--green-light);
}

/* LINKS */
a {
  color: var(--green-main);
  font-weight: 600;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Correos segun sección */
.site-header .small-note a,
.site-footer .footer-small a {
  color: #ffffff;
}
#contacto a {
  color: var(--green-main);
}

/* HERO */
.site-header {
  background-color: var(--green-dark);
  color: #ffffff;
  padding: 24px 0 48px;
}
.hero-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.hero-banner {
  width: 100%;
  max-height: 320px;
  border-radius: 16px;
  object-fit: cover;
}

/* Botones */
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px; /* ← reducción */
  border-radius: 50px;
  border: 2px solid var(--green-main);
  font-weight: 700;
  font-size: .85rem; /* ← más pequeño */
  cursor: pointer;
  transition: var(--transition-fast);
}
.btn.primary {
  background-color: #fff;
  color: var(--green-main);
}
.btn.secondary {
  background-color: var(--green-main);
  color: #fff;
}

.btn:hover {
  filter: brightness(1.08);
}

.full-width {
  width: 100%;
}

/* Secciones */
.section {
  padding: 56px 0;
}
.section-alt {
  background-color: var(--bg-alt);
}
.section h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

/* small-note legible */
.section .small-note {
  color: var(--text-muted);
}

/* Grid texto + imagen */
.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* ← ahora balanceado */
  align-items: center;
  gap: 32px;
}

/* Imagen aguacate */
.img-card img {
  width: 100%;
  max-width: 360px; /* ← reducción grande */
  margin: 0 auto;
  display: block;
}

/* Tarjetas */
.img-card, .include-item, .step, .price-card {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}

/* Pasos */
.step-number {
  background-color: var(--green-main);
  color: #fff;
  width: 30px; height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 12px;
}

/* Precio */
.price {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background-color: #020f06;
  color: #fff;
  text-align: center;
  padding: 22px 0 30px;
}
.footer-small {
  font-size: .8rem;
}

/* Responsive */
@media(max-width: 768px) {
  .section-grid {
    grid-template-columns: 1fr;
  }
  .img-card img {
    max-width: 260px;
  }
}
/* Botones compactos centrados en desktop */
.hero-ctas .btn,
.price-card .btn {
  width: auto;
  min-width: 220px;
  align-self: center;
}

/* En móvil sí queremos full width */
@media (max-width: 768px) {
  .hero-ctas .btn,
  .price-card .btn {
    width: 100%;
  }
}
