/* =========================================================
   NEOTROPIC — CONTACT
   Basado en home.css, pero reducido y específico
   ========================================================= */

/* ---------- Variables y base ---------- */
:root {
  --text: #16324a;
  --muted: #44627c;
  --link: #0b63c9;
  --border: #dbe8f3;
  --bg-card: #ffffff;
  --shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  --radius: 14px;

  --home-blue-bg: #d9ecfb;
  --home-blue-soft: #eef6fd;
  --home-blue-strong: #16324a;
  --home-blue-accent: #2d6f9f;

  --container: 1280px;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}
  
/* =========================================================
   HERO
   ========================================================= */

.home-header {
  background: #b6def6;
  width: 100%;
  padding: 28px 0 44px;
}

.home-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 28px;
  align-items: center;
}

.home-header-content {
  max-width: 700px;
}

.home-header-title-bottom {
  margin: 0 0 10px;
  font-size: 40px;
  line-height: 1.18;
  color: var(--home-blue-strong);
  letter-spacing: -0.02em;
}

.home-header-explanation {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  text-align: left;
  color: var(--muted);
  max-width: 560px;
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.home-header-graphic {
  max-width: 500px;
  justify-self: end;
}

.home-header-graphic img {
  width: 100%;
  height: auto;
  display: block;
}
/* =========================================================
   GENERIC SECTION CONTAINER
   ========================================================= */

.section-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================================================
   HOW WE CAN HELP
   ========================================================= */

.why-neotropic {
  padding: 52px 0 68px;
}

.why-title {
  text-align: center;
  font-size: 30px;
  color: var(--text);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.why-sub {
  text-align: center;
  color: var(--muted);
  margin: 0 auto 22px;
  max-width: 820px;
  font-size: 16px;
  line-height: 1.6;
}

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

.why-card {
  background: #f8fbfe;
  border: 1px solid #e3edf5;
  border-radius: 12px;
  box-shadow: none;
  padding: 20px 18px;
  text-align: center;
}

.why-card h3 {
  margin: 6px 0 8px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.35;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* =========================================================
   CONTACT BLOCK
   ========================================================= */

.contact-cta {
  padding: 24px 0 56px;
}

.contact-cta .section-container {
  max-width: 900px;
  text-align: center;
  background: #f8fbfe;
  border: 1px solid #e3edf5;
  border-radius: 16px;
  padding: 36px 24px;
}

.contact-cta h2 {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
  color: var(--text);
}

.contact-cta p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 16px;
}

.contact-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.contact-direct {
  margin-top: 18px !important;
  font-size: 15px;
}

.contact-direct a {
  color: var(--link);
  text-decoration: none;
}

.contact-direct a:hover {
  text-decoration: underline;
}

/* =========================================================
   WHAT HAPPENS NEXT
   ========================================================= */

.services {
  padding: 28px 0 44px;
}

.services h2 {
  text-align: center;
  margin: 0 0 16px;
  font-size: 28px;
  color: var(--text);
}

.service-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: var(--container);
  margin: 0 auto;
}

.service-item {
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
}

.service-item h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.35;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {
  .home-header {
    padding: 28px 0 40px;
  }
  @media (max-width: 900px) {
  .home-header {
    padding: 28px 0 40px;
  }

  .home-header-graphic {
    order: 2;
    justify-self: center;
    max-width: 460px;
  }

  .home-header-title-bottom {
    font-size: 34px;
  }

  .home-header-explanation {
    font-size: 16px;
  }
}

@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  .why-title,
  .contact-cta h2,
  .services h2 {
    font-size: 28px;
  }
}

@media (max-width: 520px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .home-header-title-bottom {
    font-size: 28px;
  }

  .home-header-explanation {
    font-size: 15px;
  }


  .text-link {
    font-size: 14px;
  }

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

  .contact-cta .section-container {
    padding: 28px 18px;
  }
}