/* =========================
   VARIABLES
   ========================= */
:root {
  --text-main: #141414;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --bg-soft: #f9fafb;
  --accent: #141414;

  --radius: 8px;
  --max-width: 720px;
  --padding: 1.25rem;
}

/* =========================
   RESET
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================
   LAYOUT
   ========================= */
.contact {
  height: max-content;
  display: flex;
  width: max-content;
  justify-self: center;
  justify-content: center;
  align-self: center;
}

.contact__container{
  padding: 0;
  margin: 0;
}
/* =========================
   HEADER
   ========================= */
.contact__header{
  background: none;
}
.contact__header h1 {
  font-size: clamp(2rem, 5vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact__header p {
  color: var(--text-muted);
  max-width: 60ch;
}

/* =========================
   CTA PRINCIPAL
   ========================= */
.contact__primary {
  text-align: left;
  display: flex;
  gap: 2rem;
  padding-bottom: 0;
}


.contact__whatsapp {
  display: flex;
  padding: 1rem 1rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: max-content;
  gap: 10px;
  justify-content: center;
  align-content: center;
  align-items: center;
  align-self: center;
  justify-self: center;
}

.contact__whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 5px 5px 2px rgba(0, 0, 0, 0.15);
}

.contact__note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================
   GUÍA
   ========================= */
.contact__guide {
  margin-top: 4rem;
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-soft);
}

.contact__guide h2 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.contact__guide p {
  color: var(--text-muted);
}

.contact__guide ul {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.contact__guide li {
  margin-bottom: 0.5rem;
}

.contact__guide-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* =========================
   CONTACTO SECUNDARIO
   ========================= */
.contact__secondary {
  padding: 0;
  text-align: center;
  margin: 0;
  margin-bottom: 10rem;
}

.contact__mail {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.contacto-img{
    filter:invert();
    width: 32px;
}
/* =========================
   FOOTER
   ========================= */
.contact__footer {
  margin-top: 4rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 800px) {
  .contact__primary {
  text-align: left;
  display: flex;
  flex-direction: column;
  width: 80vw;
  gap: 2rem;
  padding-bottom: 0;
}
  .info{
    width: 80vw;
  }


}
