:root {
  --verde-claro: #a8d5ba;
  --verde-cura: #4daa89;
  --azul-confianca: #2d6e9f;
  --azul-profundo: #0a2e40;

  --bg: #ffffff;
  --bg-tint: #f4f8f6;
  --text: #1c2b2f;
  --text-muted: #4b5f63;
  --border: #e1ebe6;

  --font-display: "Italiana", "Georgia", serif;
  --font-body: "Montserrat", "Segoe UI", sans-serif;

  --radius: 14px;
  --shadow: 0 20px 40px -20px rgba(10, 46, 64, 0.25);
  --container-w: 1140px;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--azul-profundo);
  line-height: 1.15;
  margin: 0 0 0.5em;
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

a { color: var(--azul-confianca); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; display: block; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--azul-profundo);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
}
.skip-link:focus { left: 12px; top: 12px; border-radius: 8px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--verde-cura);
  margin-bottom: 0.6em;
}
.eyebrow--center { text-align: center; }

.section-title { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }
.section-subtitle { text-align: center; margin-top: -0.5em; margin-bottom: 2em; color: var(--verde-cura); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn--primary { background: var(--verde-cura); color: #fff; }
.btn--primary:hover { background: #3d9377; box-shadow: var(--shadow); }

.btn--ghost { background: transparent; border-color: var(--azul-profundo); color: var(--azul-profundo); }
.btn--ghost:hover { background: var(--azul-profundo); color: #fff; }

.hero .btn--ghost { border-color: #fff; color: #fff; }
.hero .btn--ghost:hover { background: #fff; color: var(--azul-profundo); }

.btn--whatsapp { background: #25D366; color: #fff; padding: 10px 22px; font-size: 0.9rem; }
.btn--whatsapp:hover { background: #1ebd5a; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  box-shadow: 0 1px 0 var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}

.brand { display: flex; align-items: center; gap: 10px; }
.brand__icon { border-radius: 8px; }
.brand__text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--azul-profundo);
  line-height: 1;
  display: flex;
  flex-direction: column;
}
.brand__text small {
  font-family: var(--font-body);
  font-size: 0.6rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 400;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav ul { list-style: none; display: flex; gap: 22px; margin: 0; padding: 0; }
.nav a { color: var(--text); font-weight: 500; font-size: 0.95rem; }
.nav a:hover { color: var(--verde-cura); text-decoration: none; }
.nav a.btn { color: #fff; }
.nav a.btn:hover { color: #fff; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--azul-profundo); border-radius: 2px; }

/* Hero */
.hero { position: relative; color: #fff; overflow: hidden; }
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(10,46,64,0.92) 0%, rgba(10,46,64,0.78) 45%, rgba(45,110,159,0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 110px 24px 90px;
  max-width: 720px;
}
.hero .eyebrow { color: var(--verde-claro); }
.hero h1 { color: #fff; }
.hero__lead { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 560px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; margin: 28px 0 20px; }

/* Sections */
.section { padding: 90px 0; }
.section--tinted { background: var(--bg-tint); }
.section--dark { background: var(--azul-profundo); color: #fff; }
.section--dark h2, .section--dark p, .section--dark address { color: #fff; }
.section--dark .eyebrow { color: var(--verde-claro); }

.section--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.section__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__media--map iframe {
  width: 100%;
  height: 340px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.values { list-style: none; padding: 0; margin: 1.5em 0 0; display: grid; gap: 12px; }
.values li { padding-left: 28px; position: relative; color: var(--text); }
.values li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--verde-cura);
}

/* Cards */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { color: var(--verde-cura); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.team-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.team-card img { aspect-ratio: 4 / 5; object-fit: cover; }
.team-card img.obj-top { object-position: top; }
.team-card__body { padding: 24px; }
.team-card__role { color: var(--verde-cura); font-weight: 600; margin-top: -0.5em; }
.team-note { text-align: center; margin-top: 40px; color: var(--text-muted); }

/* Testimonials */
.cards-grid--testimonials .testimonial {
  background: #fff;
  border-left: 4px solid var(--verde-cura);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 28px;
  margin: 0;
  box-shadow: var(--shadow);
}
.testimonial p { color: var(--text); font-style: italic; }
.testimonial cite { color: var(--azul-confianca); font-weight: 600; font-style: normal; }

/* Location */
address { font-style: normal; color: var(--text-muted); margin-bottom: 1.5em; line-height: 1.8; }
.hours { border-collapse: collapse; margin-bottom: 1.5em; width: 100%; max-width: 360px; }
.hours th, .hours td { text-align: left; padding: 8px 0; border-bottom: 1px solid var(--border); font-weight: 400; }
.hours th { color: var(--text); font-weight: 600; }

/* Contact form */
.contact-list { list-style: none; padding: 0; margin: 1.5em 0; display: grid; gap: 10px; }
.contact-list a { color: var(--verde-claro); font-weight: 600; }

.contact-form {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.field { display: grid; gap: 6px; }
.field label { font-size: 0.9rem; font-weight: 500; }
.field input, .field textarea {
  font-family: var(--font-body);
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.95);
  color: var(--text);
  font-size: 0.95rem;
  resize: vertical;
}
.field input:focus, .field textarea:focus {
  outline: 2px solid var(--verde-cura);
  outline-offset: 1px;
}
.field--honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; font-size: 0.9rem; color: var(--verde-claro); min-height: 1.2em; }

/* Footer */
.site-footer { background: #06202d; color: rgba(255,255,255,0.75); padding: 56px 0 30px; }
.site-footer__inner { display: grid; gap: 10px; }
.site-footer a { color: rgba(255,255,255,0.85); }
.brand--footer .brand__text { color: #fff; font-size: 1.2rem; }
.site-footer__copy { margin-top: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.site-footer__privacy { font-size: 0.76rem; color: rgba(255,255,255,0.4); max-width: 640px; }
.site-footer__privacy a { color: rgba(255,255,255,0.6); }

/* WhatsApp floating button */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.3);
  z-index: 200;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

/* Responsive */
@media (max-width: 880px) {
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(320px, 85vw);
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 28px 28px;
    gap: 32px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  }
  .nav.is-open { transform: translateX(0); }
  .nav ul { flex-direction: column; gap: 20px; }
  .nav-toggle { display: flex; }

  .section--split { grid-template-columns: 1fr; }
  .section__media { order: -1; }
  .section { padding: 64px 0; }
  .hero__content { padding: 90px 20px 64px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
