@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&display=swap');

:root {
  --green: #006b45;
  --green-dark: #00452e;
  --green-soft: #eaf7f1;
  --blue-dark: #0e223d;
  --muted: #607184;
  --white: #ffffff;
  --red: #d71920;
  --border: rgba(0, 107, 69, 0.16);
  --shadow: 0 24px 80px rgba(0, 69, 46, 0.18);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--blue-dark);
  background: #f7fbf9;
}

a {
  color: inherit;
}

.page {
  overflow-x: hidden;
}

.hero {
  min-height: 92vh;
  padding: 30px;
  position: relative;
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.88) 42%, rgba(255,255,255,.62) 100%),
    radial-gradient(circle at 18% 22%, rgba(0,107,69,.18), transparent 30%),
    linear-gradient(135deg, #ffffff, #eaf7f1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image:
    linear-gradient(120deg, transparent 0 45%, rgba(0, 107, 69, .08) 45% 46%, transparent 46%),
    radial-gradient(circle at 85% 45%, rgba(0,107,69,.16), transparent 28%);
  pointer-events: none;
}

.topbar,
.glass-card,
.contact-panel {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto 42px;
}

.logo {
  width: min(510px, 52vw);
  height: auto;
  display: block;
}

.quick-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quick-link {
  text-decoration: none;
  display: grid;
  grid-template-columns: 42px auto;
  column-gap: 10px;
  align-items: center;
  background: rgba(255,255,255,.85);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 69, 46, .08);
}

.quick-link i {
  grid-row: span 2;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--green);
  font-size: 1.25rem;
}

.quick-link span {
  color: var(--muted);
  font-size: .8rem;
  font-weight: 700;
}

.quick-link strong {
  color: var(--blue-dark);
  font-size: .96rem;
}

.quick-link.whatsapp i {
  font-size: 1.45rem;
}

.glass-card {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  border-radius: 34px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.8);
  box-shadow: var(--shadow);
  text-align: center;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  background: var(--green-soft);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .82rem;
}

h1 {
  margin: 22px auto 18px;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.06em;
  max-width: 860px;
}

.lead {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.7;
}

.cta-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(0, 69, 46, .18);
}

.btn.primary {
  background: var(--green);
  color: white;
}

.btn.secondary {
  background: #10a35d;
  color: white;
}

.btn.outline {
  background: white;
  color: var(--green-dark);
  border-color: var(--border);
}

.btn.small {
  padding: 12px 17px;
  margin-top: 10px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.info-grid article {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(16, 35, 61, .08);
  border-radius: 22px;
  padding: 22px 16px;
}

.info-grid i {
  color: var(--green);
  font-size: 2rem;
  margin-bottom: 12px;
}

.info-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.info-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
}

.contact-panel {
  max-width: 1180px;
  margin: 34px auto 0;
  background: white;
  border-radius: 26px;
  box-shadow: 0 20px 58px rgba(0, 69, 46, .12);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.contact-panel div {
  padding: 24px 20px;
  text-align: center;
  border-right: 1px solid rgba(16, 35, 61, .08);
}

.contact-panel div:last-child {
  border-right: 0;
}

.contact-panel i {
  color: var(--green);
  font-size: 1.9rem;
  margin-bottom: 9px;
}

.contact-panel span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-bottom: 6px;
}

.contact-panel strong {
  color: var(--green-dark);
  line-height: 1.35;
}

.services {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px 30px;
  text-align: center;
}

.services h2,
.map-text h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -.04em;
}

.services p,
.map-text p {
  color: var(--muted);
  font-size: 1.05rem;
}

.service-list {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.service-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: white;
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 10px 26px rgba(0, 69, 46, .06);
}

.map-section {
  max-width: 1180px;
  margin: 0 auto 48px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.map-text {
  background: var(--green-dark);
  color: white;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-text p {
  color: rgba(255,255,255,.82);
}

.map-section iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(0, 69, 46, .14);
}

.footer {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: white;
  padding: 28px 34px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.footer img {
  width: 250px;
  background: white;
  border-radius: 14px;
  padding: 8px;
}

.footer p {
  margin: 0 0 5px;
  font-weight: 800;
}

.footer small {
  color: rgba(255,255,255,.82);
}

.social {
  display: flex;
  gap: 10px;
}

.social a,
.floating-whatsapp {
  display: grid;
  place-items: center;
  text-decoration: none;
  border-radius: 50%;
}

.social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.45);
  color: white;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
  width: 62px;
  height: 62px;
  background: #10a35d;
  color: white;
  font-size: 2rem;
  box-shadow: 0 18px 34px rgba(0, 69, 46, .28);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(16, 163, 93, .42); }
  70% { box-shadow: 0 0 0 18px rgba(16, 163, 93, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 163, 93, 0); }
}

@media (max-width: 980px) {
  .topbar {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo {
    width: min(620px, 100%);
  }

  .quick-actions {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .map-section {
    grid-template-columns: 1fr;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .hero {
    padding: 18px;
  }

  .glass-card {
    border-radius: 24px;
  }

  .quick-actions {
    width: 100%;
  }

  .quick-link {
    width: 100%;
  }

  .info-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .contact-panel div {
    border-right: 0;
    border-bottom: 1px solid rgba(16, 35, 61, .08);
  }

  .contact-panel div:last-child {
    border-bottom: 0;
  }

  .footer img {
    width: 220px;
  }
}
