/* ══════════════════════════════
   VARIABLES — Arandu Iberá
   Tokens, reset, tipografía, footer y wsp_btn
   Linkear PRIMERO en todos los HTML
══════════════════════════════ */

:root {
  --background:           #f6f1e7;
  --foreground:           #3a3a2f;
  --card:                 #ffffff;
  --card-foreground:      #3a3a2f;
  --primary:              #6b7b5e;
  --primary-foreground:   #ffffff;
  --secondary:            #d4a574;
  --secondary-foreground: #3a3a2f;
  --muted:                #e8dcc4;
  --muted-foreground:     #6b7b5e;
  --accent:               #d4a574;
  --accent-foreground:    #ffffff;
  --destructive:          #c44e3c;
  --border:               rgba(107, 123, 94, 0.15);
  --ring:                 #6b7b5e;
  --radius:               16px;
}

* {
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Josefin Sans", "Poppins", sans-serif;
}

p {
  font-size: 15px;
  line-height: 1.75;
}

/* ── FOOTER (compartido en todas las páginas) ── */
.footer {
  width: 100%;
  background-color: var(--primary);
  padding: 60px 32px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer_main {
  display: flex;
  justify-content: space-around;
  gap: 40px;
  flex-wrap: wrap;
}

.footer_brand h3 {
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 12px;
}

.footer_brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 20px;
}

.footer_socials {
  display: flex;
  gap: 12px;
}

.footer_socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}

.footer_socials a:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.footer_col h4 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 16px;
}

.footer_col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer_col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

.footer_col ul li ion-icon {
  font-size: 16px;
  min-width: 16px;
  margin-top: 2px;
  color: var(--secondary);
}

.footer_col ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer_col ul li a:hover {
  color: #ffffff;
}

.footer_bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer_bottom a {
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.footer_bottom a:hover {
  color: #ffffff;
}

.footer_map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 16px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_map ion-icon {
  color: var(--secondary);
  font-size: 16px;
}

.footer_map a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.footer_map a:hover {
  color: #ffffff;
}

/* Footer mínimo (actividades) */
.footer_min {
  width: 100%;
  padding: 20px 32px;
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer_min p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer_min a {
  color: var(--secondary);
  font-weight: 500;
  transition: color 0.2s;
}

.footer_min a:hover {
  color: #ffffff;
}

/* ── BOTÓN FLOTANTE WHATSAPP (compartido) ── */
.wsp_btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}

.wsp_btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

/* ── RESPONSIVE COMPARTIDO ── */
@media (max-width: 768px) {
  .footer_main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer_bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .wsp_btn {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    font-size: 22px;
  }
}