body.contact-page {
  background: #f7faf7;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: #fff;
  color: #021506;
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 999;
}
.skip-link:focus {
  left: 12px;
}
.header-cta {
  padding: 12px 20px;
  min-width: auto;
}
.contact-hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 78px 0;
  background:
    radial-gradient(
      circle at 82% 22%,
      rgba(82, 193, 64, 0.24),
      transparent 30%
    ),
    linear-gradient(115deg, #041404 0%, #0a2408 48%, #12330d 100%);
  overflow: hidden;
}
.contact-hero:before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -160px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(82, 193, 64, 0.12);
  filter: blur(4px);
}
.contact-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 44px;
  align-items: center;
}
.contact-copy h1 {
  margin: 20px 0 18px;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}
.contact-copy .lead {
  max-width: 680px;
  font-size: 20px;
  line-height: 1.65;
  color: #efffed;
  font-weight: 500;
}
.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.quick-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 32px;
  padding: 34px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}
.quick-card h2 {
  font-size: 30px;
  margin-bottom: 22px;
  color: #021506;
}
.channel-list {
  display: grid;
  gap: 14px;
}
.channel-list a {
  display: block;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  transition: 0.25s ease;
}
.channel-list a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(16, 39, 13, 0.08);
  border-color: rgba(82, 193, 64, 0.38);
}
.channel-list strong {
  display: block;
  color: #021506;
  font-size: 17px;
  margin-bottom: 2px;
}
.channel-list span {
  display: block;
  color: #52605a;
  font-weight: 600;
}
.contact-content {
  padding: 78px 0;
  background: #fff;
}
.contact-layout {
  display: grid;
  gap: 28px;
  align-items: center;
  justify-content: space-around;
}
.form-panel,
.info-panel article {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(16, 39, 13, 0.07);
}
.form-panel {
  padding: 38px;
  max-width: 830px;
}
.form-panel h2 {
  font-size: clamp(30px, 3.2vw, 44px);
  margin: 16px 0 12px;
}
.form-panel p {
  color: #34423b;
  font-weight: 500;
}
.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.field-group {
  display: grid;
  gap: 7px;
}
.field-group label {
  color: #021506;
  font-weight: 800;
}
.field-group input,
.field-group textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #dfe8dc;
  border-radius: 14px;
  background: #fff;
  font: inherit;
  color: #10270d;
  transition: 0.2s ease;
}
.field-group textarea {
  min-height: 132px;
  resize: vertical;
}
.field-group input:focus,
.field-group textarea:focus {
  border-color: #52c140;
  box-shadow: 0 0 0 4px rgba(82, 193, 64, 0.12);
  outline: 0;
}
.btn-form-whatsapp {
  width: 100%;
  border: 0;
  cursor: pointer;
}
.info-panel {
  display: grid;
  gap: 18px;
}
.info-panel article {
  padding: 28px;
}
.info-panel span {
  display: inline-flex;
  color: #52c140;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.info-panel h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.info-panel p {
  color: #34423b;
  font-weight: 500;
}
.inline-link {
  display: inline-flex;
  margin-top: 14px;
  color: #52c140;
  font-weight: 900;
}
.footer-logo {
  width: 170px;
  margin-bottom: 18px;
}
.float-wa {
  font-size: 0;
}
.float-wa:before {
  content: "WA";
  font-size: 14px;
  font-weight: 900;
}
@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .quick-card {
    max-width: 620px;
  }
  .contact-hero {
    min-height: auto;
  }
}
@media (max-width: 760px) {
  header nav {
    display: none;
  }
  .header-cta {
    display: none;
  }
  .contact-hero {
    padding: 58px 0;
  }
  .contact-copy .lead {
    font-size: 17px;
  }
  .contact-actions {
    flex-direction: column;
  }
  .quick-card,
  .form-panel,
  .info-panel article {
    border-radius: 24px;
  }
  .quick-card,
  .form-panel {
    padding: 26px;
  }
  .contact-content {
    padding: 56px 0;
  }
}
