@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700;900&display=swap");

:root {
  --bg: #f7f3ec;
  --surface: rgba(255, 255, 255, 0.78);
  --text: #1f2520;
  --muted: #55615a;
  --line: rgba(31, 37, 32, 0.12);
  --brand: #0f766e;
  --brand-strong: #0b4f4a;
  --accent: #ff8a3d;
  --shadow: 0 18px 45px rgba(15, 22, 18, 0.12);
  --radius: 24px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Roboto", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 138, 61, 0.18), transparent 32%),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.14), transparent 28%),
    linear-gradient(180deg, #fcfaf6 0%, #f4efe4 100%);
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.site-shell { min-height: 100vh; }
.container { width: min(calc(100% - 2rem), var(--container)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(252, 250, 246, 0.88);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand img { width: 42px; height: 42px; }

.brand-copy small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
}

.site-nav {
  position: fixed;
  inset: 76px 1rem auto 1rem;
  display: none;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 250, 242, 0.98);
  box-shadow: var(--shadow);
}

.site-nav.open { display: block; }

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

.nav-link {
  display: block;
  padding: 0.85rem 0.95rem;
  border-radius: 14px;
  color: var(--muted);
  font-weight: 600;
}

.nav-link.active,
.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand-strong);
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
}

.button i,
.button-secondary i,
.nav-link i,
.metric i,
.feature-icon i,
.shop-badge i,
.contact-card i,
.footer-links i {
  margin-right: 0.45rem;
}

.button {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.button-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--line);
}

.hero { padding: 4rem 0 2.5rem; }
.hero-grid, .split-grid, .cards-grid, .metrics-grid, .logo-grid, .shop-grid, .contact-grid, .columns-2 { display: grid; gap: 1.25rem; }

.eyebrow, .tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.eyebrow { background: rgba(255, 138, 61, 0.14); color: #9a4f1c; }
.tag { background: rgba(15, 118, 110, 0.1); color: var(--brand-strong); font-size: 0.78rem; margin-bottom: 0.85rem; }

.hero-copy, .panel, .card, .contact-card, .showcase-card, .pricing-card, .page-intro, .notice {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 1.3rem;
}

.hero-copy { padding: 1.5rem; }

.hero-copy h1, .page-intro h1 {
  margin: 0.8rem 0 1rem;
  font-size: clamp(2.2rem, 6vw, 4.7rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-copy p, .page-intro p, .section-head p, .card p, .panel p, .contact-card p, .notice p {
  color: var(--muted);
  line-height: 1.65;
}

.lead-list {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.lead-item {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  min-width: 2.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 14px;
  background: rgba(255, 138, 61, 0.15);
  color: var(--brand-strong);
}

.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.35rem; }

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #12504b 0%, #1a2624 100%);
  box-shadow: var(--shadow);
}

.hero-visual img {
  position: absolute;
  inset: auto 1rem 1rem auto;
  width: min(85%, 430px);
  border-radius: 22px;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-visual::before {
  width: 180px;
  height: 180px;
  top: 2rem;
  left: -2rem;
  background: rgba(255, 138, 61, 0.34);
}

.hero-visual::after {
  width: 220px;
  height: 220px;
  right: -3rem;
  bottom: -4rem;
  background: rgba(255, 255, 255, 0.12);
}

.floating-note {
  position: absolute;
  top: 1rem;
  left: 1rem;
  max-width: 240px;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.92);
  color: var(--brand-strong);
  font-weight: 700;
}

.section, .page-shell { padding: 1rem 0 3rem; }
.section-head, .page-intro { margin-bottom: 1.4rem; }
.section-head h2 { margin: 0 0 0.7rem; font-size: clamp(1.8rem, 4vw, 2.9rem); letter-spacing: -0.03em; }

.metric {
  padding: 1.2rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--line);
}

.metric strong { display: block; font-size: 2rem; margin-bottom: 0.4rem; }
.metric i { color: var(--accent); }
.logo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.logo-card {
  display: grid;
  place-items: center;
  padding: 1.5rem;
  min-height: 120px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
}

.logo-card img { max-height: 54px; width: auto; }

.portfolio-card { overflow: hidden; padding: 0; }
.portfolio-card img { height: 220px; width: 100%; object-fit: cover; }
.portfolio-card .card-body { padding: 1.2rem; }

.shop-grid img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.showcase-card {
  display: grid;
  gap: 0.9rem;
}

.showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-strong);
}

.shop-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.1);
  color: var(--brand-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.field-group { display: grid; gap: 0.4rem; margin-bottom: 0.9rem; }

.field-group input,
.field-group textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(31, 37, 32, 0.18);
  background: rgba(255, 255, 255, 0.9);
}

.field-group textarea { min-height: 150px; resize: vertical; }

.inline-list {
  display: grid;
  gap: 0.75rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.inline-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--muted);
}

.inline-list li::before {
  content: "";
  position: absolute;
  top: 0.72rem;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--accent);
}

.site-footer { padding: 2.2rem 0 3rem; }

.footer-panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(24, 31, 27, 0.94);
  color: rgba(255, 255, 255, 0.88);
}

.footer-links { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.footer-links a { color: rgba(255, 255, 255, 0.74); }

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 25;
  padding: 1rem 1.2rem;
  border-radius: 999px;
  background: #25d366;
  color: #06381a;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.28);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    display: block;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }
  .nav-list { grid-auto-flow: column; align-items: center; }
  .hero-grid, .split-grid, .contact-grid, .columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cards-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .metrics-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .logo-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-panel { grid-template-columns: 1.5fr 1fr; align-items: end; }
}
