
  /* =========================
  under-nav_art
========================= */

.under-nav {
  background-image: url("../web-assets/web_backgrounds/contacto.webp");

}


.header-main {
 
  background-image: url("../web-assets/web_backgrounds/nav-bar_element_art.webp");
  
}

/* =========================
   CONTACT INFO
========================= */
.contact-info {
  background: #fff;
  padding: 10px 15px 80px;
  text-align: center;
}

.contact-info .inner {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.7;
  color: #000;
}

.contact-info .intro {
  margin-bottom: 25px;
}

.contact-info h2 {
  font-size: 22px;
  margin: 40px 0 20px;
  font-weight: bold;
}

.contact-info h3 {
  font-size: 20px;
  margin: 45px 0 20px;
  font-weight: bold;
}

.contact-info p {
  margin-bottom: 18px;
}

.contact-info strong {
  font-weight: bold;
}

/* ≤760px */
@media (max-width: 760px) {
  .contact-info {
    padding: 50px 15px 60px;
  }

  .contact-info .inner {
    font-size: 14px;
  }
}


/* =========================
   CONTACT ELEMENT
========================= */

.contact-cta {
  margin-top: 10px;
  display: block;
  text-align: center;
}

.contact-trigger {
  padding: 12px 28px;
  font-size: 13px;
  letter-spacing: 1px;
  background: var(--green);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease; box-shadow: 0.2s ease;
}

.contact-trigger:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

/* Overlay */
.contact-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 5000;
}

.contact-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Modal */
.contact-modal {
  background: var(--yellow);
  width: 90%;
  max-width: 520px;
  padding: 35px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.contact-overlay.active .contact-modal {
  transform: translateY(0);
}

.contact-modal h2 {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 20px;
}

/* Form */
.contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 13px;
  margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
  margin-top: 6px;
  padding: 8px;
  font-family: inherit;
  font-size: 13px;
  border: 1px solid #000;
}

.contact-form textarea {
  min-height: 90px;
  resize: vertical;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.contact-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}

/* Actions */
.contact-actions {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 20px;
}

.contact-actions .cancel {
  background: transparent;
  border: none;
  font-size: 12px;
  cursor: pointer;
  opacity: 0.6;
}

.contact-actions .submit {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  font-size: 13px;
  cursor: pointer;
}

/* =========================
   CONTACT FORM – MOBILE SAFETY FIX
========================= */

.contact-modal {
  box-sizing: border-box;
  max-width: 100%;
}

.contact-form,
.contact-form * {
  box-sizing: border-box;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  max-width: 100%;
}

/* Stack fields on mobile */
@media (max-width: 600px) {
  .contact-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================
   CONTACT FORM – DESKTOP COMPACT (FORCED)
========================= */
@media (min-width: 1000px) {

  .contact-overlay .contact-modal {
    padding: 22px;
  }

  .contact-overlay .contact-form label {
    margin-bottom: 10px;
  }

  .contact-overlay .contact-form textarea {
    min-height: 70px;
  }
}


/* * =========================
   DM ME INSTA
========================= */ 



.contact-instagram img {
  width: 22px;          /* same as header */
  height: auto;
  filter: inherit;     /* inherits color */
}

.social-icon img {
  width: 22px;              /* same as header */
  filter: var(--icon-filter);
  transition: transform .2s ease, box-shadow .2s ease;
}

.social-icon:hover img {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

.contact-actions-inline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 15px;
}
/* =========================
   CONTACT FORM – DESKTOP HEIGHT FIX (FINAL)
========================= */
@media (min-width: 1000px) {

  /* Reduce overall modal bulk */
  .contact-overlay .contact-modal {
    max-width: 480px;
    padding: 18px 22px;
  }

  /* Tighten vertical spacing */
  .contact-overlay .contact-form label {
    margin-bottom: 8px;
    font-size: 12px;
  }

  /* This is the BIG one: textarea height */
  .contact-overlay .contact-form textarea {
    min-height: 55px;
    max-height: 70px;
  }

  /* Buttons spacing */
  .contact-overlay .contact-actions {
    margin-top: 12px;
  }
}
/* =========================
   CONTACT CHECKBOX – SINGLE LINE, TIGHT
========================= */

.contact-form .contact-checkbox {
  display: inline-flex;          /* stays on one line */
  flex-direction: row;           /* text → checkbox */
  align-items: center;
  gap: 6px;                      /* small space only */
  white-space: nowrap;           /* NEVER wrap */
  font-size: 12px;
}

.contact-form .contact-checkbox input[type="checkbox"] {
  margin: 0;
}

.contacto-img {
   width: 75%;
  max-width: 560px;
  height: auto;
  display: block;
  margin: 50px auto;
 box-shadow: -12px 6px 26px -5px rgba(0,0,0,0.62);
-webkit-box-shadow: -12px 6px 26px -5px rgba(0,0,0,0.62);
-moz-box-shadow: -12px 6px 26px -5px rgba(0,0,0,0.62);
 border-radius: 6px;
}
