/* ============================
   Footer Styles - Según Figma
   ============================ */

.footer {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Footer principal - Color Celeste #3F649C */
.footer-main {
  background-color: #3F649C;
  padding: 50px 0 40px;
}

/* Logo */
.footer-logo {
  display: inline-block;
}

.footer-logo img {
  max-width: 160px;
  height: auto;
}

.footer-logo .logo-text {
  font-size: 48px;
  font-weight: 800;
  color: white;
  letter-spacing: 2px;
}

/* Títulos de sección */
.footer-title {
  color: white;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
}

/* Links */
.footer-links-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
  color: white;
}

/* Newsletter - Input con borde y flecha */
.newsletter-input-group {
  display: flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid #DDDDE0;
  border-radius: 4px;
  overflow: hidden;
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: white;
  font-size: 14px;
  outline: none;
}

.newsletter-input-group input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.newsletter-input-group button {
  background: transparent;
  border: none;
  padding: 12px 16px;
  color: white;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.newsletter-input-group button:hover {
  opacity: 0.7;
}

.newsletter-input-group button svg {
  display: block;
}

/* Redes sociales */
.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  color: white;
  transition: opacity 0.3s ease;
}

.social-links a:hover {
  opacity: 0.7;
}

.social-links a svg {
  width: 24px;
  height: 24px;
}

/* Contacto */
.contact-section {
  margin-bottom: 0;
}

.contact-label {
  display: block;
  color: white;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 4px;
  transition: opacity 0.3s ease;
}

.contact-item:hover {
  opacity: 0.8;
  color: white;
}

.contact-item svg {
  flex-shrink: 0;
}

/* Footer bottom - Línea de copyright */
.footer-bottom {
  background-color: #3F649C;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px 0;
}

.footer-bottom,
.footer-bottom a {
  color: white;
  font-size: 14px;
}

.footer-bottom a {
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
  opacity: 0.8;
  color: white;
}

/* WhatsApp flotante */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
  .footer-links-columns {
    grid-template-columns: 1fr;
  }

  .footer-title {
    margin-top: 24px;
  }

  .footer-logo {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .footer-main {
    padding: 40px 0 30px;
  }

  .footer-title {
    font-size: 18px;
  }

  .footer-bottom {
    text-align: center;
  }

  .footer-bottom .d-flex {
    flex-direction: column;
    gap: 8px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}