/* ================================
   FOOTER IBÉRIKOS (DISEÑO NUEVO)
   ================================ */

.footer-professional {
  background-size: cover;
  color: white;
  font-family: sans-serif;
  padding: 0;
  position: relative;
}

.footer-professional p {
  color: #fff !important;
}

/* Fondo con imagen */
.footer-professional .footer-overlay {
  background-image: url("../../src/assets/imgs/foto_footer.jpg");
  background-size: cover;
  background-position: center;
  padding: 40px 20px;
}

/* Contenedor principal */
.footer-professional .footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-professional .footer-column {
  flex: 1 1 200px;
  margin: 10px;
}

.footer-professional .footer-column h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: bold;
}

.footer-professional .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-professional .footer-column ul li {
  margin-bottom: 8px;
}

.footer-professional .footer-column ul li a {
  color: white;
  text-decoration: none;
  font-size: 14px;
}

.footer-professional .footer-column ul li a:hover {
  text-decoration: underline;
}

/* Contacto + logos */
.footer-professional .contact .logo-footer {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-professional .contact .sello-footer {
  max-width: 80px;
  margin-top: 10px;
}

/* Parte inferior */
.footer-professional .footer-bottom {
  text-align: center;
  margin-top: 40px;
}

/* Métodos de pago */
.footer-professional .pagos {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.footer-professional .pagos-container {
  width: 60px;
  height: 40px;
  margin: 0 5px;
  background: #fff;
  border-radius: 5px;
  overflow: hidden; /* Para que la imagen no se salga */
}

.footer-professional .pagos-container img {
  width: 40px;
  height: 30px;
  object-fit: contain;
  margin: 5px;
}

.footer-professional .footer-bottom p {
  margin-top: 10px;
  font-size: 14px;
}

/* Botones / inputs newsletter dentro del footer nuevo */
.footer-professional .newsletter-form .newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  border-radius: 0.5rem 0 0 0.5rem;
}

.footer-professional .newsletter-form .newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.footer-professional .newsletter-form .newsletter-btn {
  background: #fff;
  border: 1px solid #fff;
  border-radius: 0 0.5rem 0.5rem 0;
  color: #000;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 1068px) {
  .footer-professional .footer-column {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;  
    text-align: center;
  }
}

@media (max-width: 576px) {
  .footer-professional .footer-container {
    flex-direction: column;
    align-items: center;
  }
}
