/* GOOGLE FONTS ---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans&family=Poppins:wght@400;600;700&display=swap');

/* ROOT VARIABLES -------------------------------------------------- */
:root {
  --primary: #7AC7A9;
  --primary-light: #4BAF8E;
  --primary-dark: #5DAF94;
  --secondary: #F6EAC2;
  --background: #FFF9F0;
  --text-dark: #37474F;
  --accent: #D4A373;
  --white: #ffffff;

  --adopt-bg: #e8f3e5;
  --volunteer-bg: #f8f8f8;
  --stories-bg: #f7f3c8;
  --story-card-bg: #fff7db;

  --radius-section: 12px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 24px rgba(122,199,169,0.25);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow: hidden;
}

/* FOOTER GENERAL -------------------------------------------------- */

.site-footer {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
  color: var(--white);
  padding: 60px 40px 30px 0px;
  margin-top: 10px;
  font-family: 'Poppins', sans-serif;
}

/* FOOTER CONTENT FLEX -------------------------------------------- */
.footer-content {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center;
  gap: 60px;
}


.footer-column {
  flex: 1 1 250px; 
  text-align: center;
  font-size: 1.1rem;
}

/* title */
.footer-title {
  font-size: 1.9rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  padding-left: 10px;
}

/* text */
.footer-description {
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 15px;
}

.footer-stats-mini {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* link */

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--white);
  opacity: 0.9;
  font-size: 1.05 rem;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 4px;
  color: var(--secondary);
}

/*contacto */

.footer-contact li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.footer-contact a {
  text-decoration: none;
  color: var(--white);
  opacity: 0.9;
}

.footer-contact a:hover {
  color: var(--secondary);
  opacity: 1;
}

/* FOOTER BOTTOM --------------------------------------------------- */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 20px;
  margin-top: 20px;
  text-align: center;
  font-size: 1rem;
}

.footer-legal a {
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
}

.footer-legal a:hover {
  color: var(--secondary);
}

.separator {
  margin: 0 6px;
  opacity: 0.7;
}

/* RESPONSIVE ------------------------------------------------------ */
/*Planeta*/
@media (max-width: 768px) {
  footer {
    padding: 18px;
    font-size: 0.9em;
  }
  
  .footer-content {
    gap: 25px;
  }
}

/*moviles*/
@media (max-width: 480px) {
  footer {
    padding: 15px;
    font-size: 0.85em;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
