@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

:root {
  --green-700: #0e7c47;
  --green-500: #14a44d;
  --blue-700: #0b4f8a;
  --blue-500: #1e78c7;
  --teal-500: #10b3a4;
  --yellow-500: #f4c34f;
  --gray-900: #0f172a;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-200: #e2e8f0;
  --white: #ffffff;
  --bg: #f3f7fb;
  --glass: rgba(255, 255, 255, 0.8);
  --shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 55%, #e8f0fb 100%);
  color: var(--gray-900);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
}

main {
  width: 100%;
}

html {
  scroll-behavior: smooth;
}

a {
  color: inherit;
  text-decoration: none;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  width: 100%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  color: var(--blue-700);
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  color: var(--white);
  font-size: 1.15rem;
}

.brand-text {
  display: grid;
  font-size: 1rem;
}

.brand-text small {
  font-weight: 500;
  color: var(--gray-500);
  font-size: 0.8rem;
}

.nav-links {
  display: flex;
  gap: 1.2rem;
  list-style: none;
  font-weight: 500;
  color: var(--gray-700);
}

.nav-links a {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  transition: 0.2s ease;
}

.nav-links a:hover {
  background: rgba(30, 120, 199, 0.12);
  color: var(--blue-700);
}

.nav-links a:focus-visible,
.btn:focus-visible,
.contact-form input:focus-visible,
.contact-form textarea:focus-visible {
  outline: 3px solid rgba(30, 120, 199, 0.35);
  outline-offset: 2px;
}

.nav-toggle {
  display: none;
  border: none;
  background: none;
  font-size: 1.4rem;
  color: var(--blue-700);
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  align-items: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 164, 77, 0.08), rgba(30, 120, 199, 0.12));
  border-radius: 36px;
  z-index: -1;
}

.city-badges {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
}

.city-badge {
  background: var(--white);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  display: grid;
  gap: 0.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.city-badge strong {
  font-size: 0.95rem;
  color: var(--gray-900);
}

.city-badge span {
  font-size: 0.85rem;
  color: var(--gray-500);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(16, 179, 164, 0.12);
  color: var(--teal-500);
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.pill.light {
  background: rgba(30, 120, 199, 0.12);
  color: var(--blue-700);
}

.hero-text h1 {
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-text p {
  color: var(--gray-700);
  margin-bottom: 1.6rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--green-500), var(--blue-500));
  color: var(--white);
  box-shadow: var(--shadow);
}

.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(15, 23, 42, 0.18);
}

.btn.outline {
  border-color: var(--blue-500);
  color: var(--blue-700);
  background: transparent;
}

.btn.outline:hover {
  background: rgba(30, 120, 199, 0.12);
}

.btn.accent {
  background: var(--yellow-500);
  color: var(--gray-900);
}

.hero-stats {
  display: grid;
  gap: 1rem;
}

.stat {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  padding: 0.9rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: 0.25s ease;
}

.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.stat i {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(14, 124, 71, 0.12);
  color: var(--green-700);
}

.stat span {
  color: var(--gray-500);
  font-size: 0.9rem;
}

.hero-card {
  background: var(--white);
  border-radius: 26px;
  padding: 2.2rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(148, 163, 184, 0.2);
  display: grid;
  gap: 1.4rem;
  position: relative;
  overflow: hidden;
}

.hero-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
}

.hero-card p {
  color: var(--gray-700);
  margin-bottom: 1.6rem;
}

.hero-image {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.hero-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.6rem;
}


.mini-card {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  background: rgba(20, 164, 77, 0.08);
  color: var(--green-700);
  font-weight: 500;
  border: 1px solid rgba(20, 164, 77, 0.2);
}

.hero-contact {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: center;
  background: rgba(30, 120, 199, 0.1);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  color: var(--blue-700);
  border: 1px solid rgba(30, 120, 199, 0.2);
}

.hero-contact span {
  display: block;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.city-list {
  list-style: none;
  display: grid;
  gap: 0.6rem;
  color: var(--gray-700);
}

.city-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.city-list i {
  color: var(--green-500);
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}

.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.6rem;
  letter-spacing: -0.5px;
}

.section-head p {
  color: var(--gray-500);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}

.city-links {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
}

.city-links a {
  background: var(--white);
  border-radius: 12px;
  padding: 0.7rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--blue-700);
  font-weight: 600;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: var(--shadow);
  transition: 0.2s ease;
}

.city-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.gallery {
  background: rgba(30, 120, 199, 0.08);
  border-radius: 32px;
  width: calc(100% - 3rem);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  border: 1px solid rgba(148, 163, 184, 0.18);
  transition: 0.25s ease;
}

.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.gallery-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.gallery-card figcaption {
  padding: 1rem 1.2rem 1.3rem;
  color: var(--gray-700);
  font-weight: 500;
}

.card {
  background: var(--white);
  padding: 1.8rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(148, 163, 184, 0.2);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
}

.card i {
  font-size: 2rem;
  color: var(--green-500);
  margin-bottom: 1rem;
}

.card p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.region {
  background: linear-gradient(120deg, rgba(20, 164, 77, 0.08), rgba(30, 120, 199, 0.12));
  border-radius: 32px;
  margin: 0 auto;
  width: calc(100% - 3rem);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.region-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.region-card i {
  font-size: 1.8rem;
  color: var(--teal-500);
  margin-bottom: 1rem;
}

.region-card ul {
  list-style: none;
  display: grid;
  gap: 0.5rem;
  color: var(--gray-700);
  margin-top: 1rem;
}

.contact {
  background: var(--white);
  border-radius: 32px;
  margin: 0 auto 4rem;
  box-shadow: var(--shadow-soft);
  width: calc(100% - 3rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: start;
}

.contact-form {
  display: grid;
  gap: 1rem;
  background: #f8fafc;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.contact-form h3 {
  font-size: 1.2rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 500;
  color: var(--gray-700);
}

.contact-form input,
.contact-form textarea {
  border: 1px solid rgba(148, 163, 184, 0.55);
  border-radius: 12px;
  padding: 0.7rem 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--gray-900);
  transition: 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(30, 120, 199, 0.3);
  border-color: var(--blue-500);
  box-shadow: 0 0 0 4px rgba(20, 164, 77, 0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(100, 116, 139, 0.7);
}

.contact-form .btn {
  width: 100%;
}

.form-note {
  color: var(--gray-500);
  font-size: 0.85rem;
  text-align: center;
}

.contact-info {
  display: grid;
  gap: 1rem;
}

.info-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.2rem;
  border-radius: 16px;
  background: rgba(14, 124, 71, 0.08);
  color: var(--green-700);
  border: 1px solid rgba(14, 124, 71, 0.2);
}

.info-card span {
  display: block;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.info-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
  border-radius: 18px;
  background: rgba(30, 120, 199, 0.12);
  color: var(--blue-700);
  border: 1px solid rgba(30, 120, 199, 0.25);
}

.info-highlight span {
  display: block;
  color: var(--gray-500);
  font-size: 0.9rem;
}

.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: 2rem 1.5rem;
  width: 100%;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.footer-icons {
  display: flex;
  gap: 0.8rem;
  font-size: 1.2rem;
  color: var(--yellow-500);
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  z-index: 20;
  border: 1px solid rgba(148, 163, 184, 0.25);
  transition: 0.2s ease;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.2);
}

@media (max-width: 700px) {
  .whatsapp-float {
    right: 14px;
    bottom: 18px;
    width: 52px;
    height: 52px;
  }

  .whatsapp-float img {
    width: 30px;
    height: 30px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero-card {
    max-width: 640px;
    margin: 0 auto;
  }

  .section,
  .hero,
  .nav,
  .footer-content {
    width: 100%;
  }
}

@media (max-width: 900px) {
  .brand-text small {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 1.5rem;
    background: var(--white);
    flex-direction: column;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .cards {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-text,
  .hero-card {
    text-align: left;
  }
}

@media (max-width: 700px) {
  .hero {
    padding-top: 3rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .nav {
    padding: 0.8rem 1rem;
  }

  .section {
    padding: 3rem 1rem;
  }

  .region,
  .contact,
  .gallery {
    margin: 0 auto 3rem;
    width: calc(100% - 2rem);
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 0.6rem;
  }

  .brand-icon {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .hero-card {
    padding: 1.6rem;
  }

  .contact-form {
    padding: 1.4rem;
  }
}
