/* Importación de tipografías */
@import url('https://fonts.googleapis.com/css2?family=B612+Mono:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');


.footer {
  background-color: #f6f6f8;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
  padding: 60px 30px 30px;
}

/* --- CONTENEDOR PRINCIPAL --- */
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
img.logo-foot {
    width: 35vh;
}

/* --- LOGO --- */
.footer-left {
  flex: 1;
  min-width: 200px;
}

.footer-left h2 {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0;
}

.footer-left h2 span {
  font-weight: 400;
}

.footer-left p {
  font-size: 0.85rem;
  color: #555;
  letter-spacing: 3px;
  margin-top: 3px;
}

/* --- DERECHA (menú + newsletter) --- */
.footer-right {
  flex: 2;
  text-align: left;
  min-width: 300px;
}

/* --- MENÚ --- */


.footer-nav li a {
text-decoration: none;
    color: #3C3C43;
    background-color: #E5E5EA;
    padding: 12px 18px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s ease;
    font-family: monospace;
    font-weight: 300;
    font-size: 14px;
        border-radius: 10px;
}

.footer-nav li a:hover {
  background-color: #ccc;
}

/* --- NEWSLETTER --- */
.footer-newsletter {
  text-align: left;
  margin-top: 25px;
}

.footer-newsletter h3 {
    font-size: 36px;
    color: #3C3C43;
    margin-bottom: 12px;
    font-family: inter;
    font-weight: 300;
}


.footer-newsletter input[type="email"] {
  background-color: #e6e6e8;
  border: none;
  padding: 10px 14px;
  font-size: 0.9rem;
  width: 260px;
  outline: none;
  font-family: 'Inter';
  border-radius: 10px;
}

.footer-newsletter button {
  background-color: #e6e6e8;
  border-radius:10px;
  padding: 10px 16px;
font-family: monospace;
    font-weight: 300;
    font-size: 14px;
    color: #3C3C43;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 0px;
}

.footer-newsletter button:hover {
  background-color: #999;
}

/* --- REDES --- */
.footer-bottom {
  text-align: left;
  padding-top: 20px;
}

.footer-bottom a {
    text-decoration: none;
    color: #8E8E93;
    margin: 0 12px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    font-family: inter;
}

.footer-bottom a:hover {
  color: #111;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-right {
    text-align: center;
  }

  .footer-newsletter {
    text-align: center;
  }

}




nav.footer-nav {
    padding-bottom: 70px;
}
.footer-newsletter {
    padding-bottom: 70px;
}


/* PC */
@media (max-width: 5000px) {
.footer-nav ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.footer-newsletter form {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
}


/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
.footer-nav ul {
  list-style: none;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
}
li {
    margin-top: 35px;
}
}

/* Telefonos (768px - 1024px) */
@media (max-width: 767px) {
.footer-nav ul {
    list-style: none;
    display: flex;
}
li {
    margin-top: 35px;
}
.footer-newsletter form {
    display: contents;
    align-items: center;
    gap: 5px;
}
.footer-newsletter input[type="email"] {
    margin-bottom: 20px;
}
.footer-nav li a {
    text-decoration: none;
    color: #3C3C43;
    background-color: #E5E5EA;
    padding: 11px 10px;
    letter-spacing: 0.5px;
    transition: background-color 0.3s 
ease;
    font-family: monospace;
    font-weight: 300;
    font-size: 12px;
    border-radius: 10px;
}
.footer {
    padding: 60px 20px 30px;
}
nav.footer-nav {
    padding-bottom: 25px;
}
.footer-newsletter {
    padding-bottom: 30px;
}
.footer-bottom {
  text-align: center;
  padding-top: 20px;
}
img.logo-foot {
    width: 80%;
}
}