:root {
  --bg: #f7fbff;
  --surface: #ffffff;
  --surface-soft: #eef7fb;
  --text: #142431;
  --muted: #607280;
  --primary: #1698b8;
  --primary-dark: #0b6f88;
  --accent: #7bdcb5;
  --whatsapp: #25d366;
  --border: #dcebf2;
  --shadow: 0 18px 50px rgba(16, 51, 70, 0.12);
  --radius: 24px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 45%, #ffffff 100%);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(22, 152, 184, 0.24);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-dark);
  background: var(--surface-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 14px;
  padding: 10px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--text);
  border-radius: 999px;
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 82px 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 52px;
  align-items: center;
  min-height: 680px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h3 {
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.hero-text,
.section-heading p,
.contact-info > p,
.showcase-panel p,
.about-copy p {
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-text {
  max-width: 640px;
  margin-bottom: 30px;
  font-size: 1.22rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 16px 34px rgba(22, 152, 184, 0.28);
}

.btn-whatsapp {
  color: #063b1e;
  background: linear-gradient(135deg, #d9ffeb, var(--whatsapp));
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.22);
}

.hero-image-wrap {
  position: relative;
}

.hero-image {
  width: 100%;
  aspect-ratio: 4 / 4.5;
  object-fit: cover;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.hero-image-wrap::before {
  content: "";
  position: absolute;
  inset: -22px -16px auto auto;
  width: 58%;
  height: 38%;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(123, 220, 181, 0.34), rgba(22, 152, 184, 0.18));
  z-index: -1;
}

.hero-card {
  position: absolute;
  left: -22px;
  bottom: 30px;
  display: grid;
  gap: 2px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-card span {
  color: var(--muted);
  font-size: 0.93rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.card,
.service-card,
.showcase-panel,
.map-wrap {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 14px 38px rgba(16, 51, 70, 0.08);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: stretch;
}

.about-copy {
  padding: 34px;
  display: flex;
  align-items: center;
}

.rounded-image {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.services {
  background: radial-gradient(circle at top left, rgba(123, 220, 181, 0.22), transparent 34%), radial-gradient(circle at top right, rgba(22, 152, 184, 0.14), transparent 30%);
  border-radius: 42px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: var(--surface-soft);
  font-size: 1.35rem;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.wide-card {
  grid-column: span 3;
}

.showcase-panel {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 36px;
  align-items: center;
  padding: 30px;
  background: linear-gradient(135deg, #ffffff, #f0fbff);
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--primary-dark);
  font-weight: 900;
  border-bottom: 2px solid var(--accent);
}

.map-wrap {
  overflow: hidden;
  min-height: 420px;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.contact-list a,
.contact-list span {
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--surface);
  color: var(--muted);
}

.contact-list strong {
  color: var(--text);
}

.hours {
  padding: 24px;
}

.hours ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hours li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.hours li:last-child {
  border-bottom: 0;
}

.contact-form {
  padding: 30px;
}

.form-row {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

label {
  font-weight: 850;
}

label span {
  color: var(--muted);
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 15px;
  font: inherit;
  color: var(--text);
  background: #fbfdff;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

input:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(22, 152, 184, 0.12);
}

textarea {
  resize: vertical;
}

.form-feedback {
  min-height: 24px;
  margin: 16px 0 0;
  font-weight: 800;
}

.form-feedback.success {
  color: #08733a;
}

.form-feedback.error {
  color: #b42318;
}

.footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 22px 42px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}

.footer strong {
  color: var(--text);
}

.footer p {
  max-width: 620px;
  margin-bottom: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-end;
  font-weight: 800;
  color: var(--primary-dark);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 999px;
  color: #063b1e;
  background: var(--whatsapp);
  font-weight: 900;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.28);
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    background: var(--surface-soft);
  }

  .hero,
  .about-grid,
  .showcase-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 54px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wide-card {
    grid-column: span 2;
  }

  .footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .section-pad {
    padding: 58px 18px;
  }

  .brand span:last-child {
    max-width: 190px;
    line-height: 1.1;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .hero-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .wide-card {
    grid-column: auto;
  }

  .about-copy,
  .contact-form,
  .showcase-panel {
    padding: 22px;
  }

  .hours li {
    flex-direction: column;
    gap: 2px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
  }
}
