/*
 * footer.css stylesheet file.
 * Archivo de hoja de estilos footer.css.
 */



/* Footer area styling / Estilo del área de pie de página */
.footer {
  background-color: #030712;
  color: var(--text-primary);
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-dark);
}


/* Footer area styling / Estilo del área de pie de página */
.footer__logo-img {
  height: 40px;
  width: auto;
}

/* Footer area styling / Estilo del área de pie de página */
.footer__brand-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: white;
}


/* Footer area styling / Estilo del área de pie de página */
.footer__desc {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 320px;
}


/* Footer area styling / Estilo del área de pie de página */
.footer__input {
  flex: 1;
  min-width: 0; 
  background: #111827;
  border: 1px solid #374151;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  outline: none;
}

/* Footer area styling / Estilo del área de pie de página */
.footer__input::placeholder {
  color: #6b7280;
}

/* Footer area styling / Estilo del área de pie de página */
.footer__input:focus {
  border-color: var(--color-green);
}


/* Button styling including spacing and hover states / Estilo de botones incluyendo espaciado y estados hover */
.footer__btn {
  background: var(--color-green);
  color: black;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: var(--fs-sm);
  white-space: nowrap;
  transition: background var(--transition);
}

/* Button styling including spacing and hover states / Estilo de botones incluyendo espaciado y estados hover */
.footer__btn:hover {
  background: var(--color-green-dark);
}


/* Footer area styling / Estilo del área de pie de página */
.footer__title {
  color: white;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}


/* Footer area styling / Estilo del área de pie de página */
.footer__link,
.footer__contact li {
  color: var(--text-muted);
  font-size: var(--fs-sm);
  transition: color var(--transition);
}

/* Footer area styling / Estilo del área de pie de página */
.footer__link:hover {
  color: var(--color-green);
}

/* Footer area styling / Estilo del área de pie de página */
.footer__contact i {
  color: var(--color-green);
  margin-right: 0.5rem;
}


/* Footer area styling / Estilo del área de pie de página */
.footer__socials-label {
  font-size: var(--fs-xs);
  color: #6b7280;
  margin-bottom: 0.75rem;
}

/* Footer area styling / Estilo del área de pie de página */
.footer__social-icon {
  width: 36px;
  height: 36px;
  background: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--text-muted);
  transition: all var(--transition);
}

/* Footer area styling / Estilo del área de pie de página */
.footer__social-icon:hover {
  background: var(--color-green);
  color: black;
  transform: translateY(-2px);
}


/* Footer area styling / Estilo del área de pie de página */
.footer__bottom {
  border-top: 1px solid #1f2937;
  padding-top: 1.5rem;
  gap: 1rem; 
}

/* Footer area styling / Estilo del área de pie de página */
.footer__copy,
.footer__legal-link {
  font-size: var(--fs-xs);
  color: #6b7280;
  margin-bottom: 0; 
}

/* Footer area styling / Estilo del área de pie de página */
.footer__legal-link:hover {
