/* styles.css Modern, minimal, responsive. Variables for easy theming. */
:root {
  --bg: #ffffff;
  --muted: #6b6f76;
  --accent: #0b5f4a; /* verde bosque */
  --accent-2: #0b7aa6; /* azul agua */
  --surface: #f7f8f9;
  --card-shadow: 0 6px 26px rgba(7, 10, 12, 0.06);
  --radius: 14px;
  --max-width: 1200px;
  --gap: 1.25rem;
  font-size: 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: #0b1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.45;
} /* Utility containers */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.section {
  padding: 3.5rem 0;
}
.section-title {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  margin: 0 0 0.25rem;
}
.section-sub {
  color: var(--muted);
  margin: 0 0 1.25rem;
} /* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.5rem 1rem;
  background: #000;
  color: #fff;
  z-index: 1000;
} /* Header hero */
.hero {
  background: linear-gradient(
    180deg,
    rgba(11, 95, 74, 0.06),
    rgba(11, 122, 166, 0.03)
  );
  padding: 2rem 0 4rem;
}
.hero .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1rem;
  margin-bottom: 1.25rem;
}
.logo {
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  font-size: 1.05rem;
}
.logo img {
  height: 80px;
  width: auto;
}
.nav-actions {
  display: flex;
  gap: 0.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  border: 0;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
}
.btn.ghost {
  background: transparent;
  border: 1px solid rgba(11, 95, 74, 0.12);
  color: var(--accent);
}
.btn.primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(11, 95, 74, 0.14);
}
.btn.large {
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  font-size: 1rem;
}
.btn.small {
  padding: 0.45rem 0.6rem;
  font-size: 0.9rem;
  border-radius: 8px;
} /* Hero content */
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 2rem;
  align-items: center;
}
.hero-text h1 {
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  margin: 0 0 0.5rem;
}
.lead {
  color: var(--muted);
  margin: 0 0 1rem;
}
.hero-media img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: var(--card-shadow);
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1);
}
.hero-media img:hover {
  transform: translateY(-6px);
} /* Products */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.card {
  background: linear-gradient(180deg, #fff, #fbfdff);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.card:hover {
  transform: translateY(-8px);
}
.card-media img {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
  display: block;
}
.card-body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.card-body h3 {
  margin: 0;
  font-size: 1.05rem;
}
.muted {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}
.bullets {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.bullets li {
  background: var(--surface);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.price {
  font-weight: 700;
  color: #111;
}
.actions {
  display: flex;
  gap: 0.5rem;
} /* Featured */
.card.featured {
  border: 2px solid rgba(11, 95, 74, 0.06);
} /* Compare table */
.compare-wrap {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  min-width: 600px;
}
.compare-table th,
.compare-table td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid #f1f3f5;
  text-align: left;
}
.compare-table thead th {
  background: #fbfdff;
  font-weight: 700;
}
.compare-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
} /* Testimonials */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.testi {
  background: linear-gradient(180deg, #fff, #fbfdff);
  padding: 1rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  margin: 0;
}
.testi cite {
  display: block;
  margin-top: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
} /* Sticky CTA */
.sticky-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  background: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(7, 10, 12, 0.12);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 60;
}
.cta-inner {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cta-text strong {
  display: block;
}
.cta-text span {
  color: var(--muted);
  font-size: 0.95rem;
} /* Footer */
.site-footer {
  padding: 1.25rem 0;
  border-top: 1px solid #eef2f4;
  margin-top: 2.5rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
} /* Responsive */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 320px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 720px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-media img {
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
  transition: none;
}
  .product-grid {
    grid-template-columns: 1fr;
  }
  .compare-wrap {
    flex-direction: column;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .sticky-cta {
    flex-direction: column;
    gap: .5rem;
    padding: .6rem;
    right: 0.6rem;
    left: 0.6rem;
    bottom: 0.8rem;
    justify-content: space-between;
  }
  .nav .nav-actions {
    display: none;
  }
  .footer-inner {
    flex-direction: column;
    gap: 0.6rem;
  }
}




