
/* =============================
   Estilos para Footer Moderno
   masperformance.com.ar
============================= */

.footer-wrapper {
  background-color: #fdfdfd;
  padding: 40px 20px 0;
  border-top: 1px solid #eee;
  font-size: 15px;
}

.footer-widgets .container {
  max-width: 1300px;
  margin: 0 auto;
  box-sizing: border-box;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
  padding: 20px 0;
}

.footer-widget {
  flex: 1;
  padding: 0px;
  box-sizing: border-box;
}

.footer-widget h3,
.footer-widget h4 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.footer-logo {
  display: block;
  margin-bottom: 1.8rem; /* Espacio entre logo y formulario */
  max-width: 100%;
  height: auto;
}

.footer-widget form {
  margin-top: 20px !important;
}


.footer-social-icons {
  display: flex;
  gap: 40px;
  justify-content: flex-start; 
  align-items: center;
  padding-top: 10px;
  list-style: none;
}

.footer-social-icons li a i {
  font-size: 40px;
  #color: #148cff;
  color: #1567d1;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icons li a i:hover {
  color: #000;
  transform: scale(1.2);
}

.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-social li {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

.footer-social li i {
  margin-right: 8px;
  font-size: 18px;
  color: #1567d1;
  transition: color 0.3s ease;
}

.footer-social li:hover i {
  color: #1f81ff;
}

.footer-contact li {
  margin-bottom: 6px;
  font-size: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact i {
  margin-right: 10px;
  color: #1567d1;
  font-size: 17px;
  line-height: 1.4;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #1567d1;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.footer-widget #map {
  width: 100%;
  height: 150px;
  border-radius: 6px;
  background-color: #eee;
  box-sizing: border-box;
}



.carrito-flotante-widget {
  position: fixed;
  bottom: 90px; /* espacio para que no tape la flecha */
  right: 20px;
  z-index: 9999;
}

.carrito-flotante-widget .btn {
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: bold;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.carrito-flotante-widget .btn:hover {
  transform: translateY(-2px);
}

/* Responsive mobile */
@media (max-width: 768px) {
  .footer-row {
    flex-direction: column;
    align-items: center;
  }

  .footer-widget {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  body {
    overflow-x: hidden;
  }

  .footer-widgets .container,
  .footer-row {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .footer-widget iframe,
  .footer-widget #map {
    max-width: 100%;
    box-sizing: border-box;
  }



}


/* INPUT del newsletter más grande y estilo focus permanente */
.footer-widget input[type="email"] {
  width: 80%;
  height: 35px;
  font-size: 14px;
  padding: 10px 14px;
  border: 1px solid #1f81ff;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(31, 129, 255, 0.5);
  outline: none;
  transition: all 0.3s ease;
}
//* === FOOTER: REPRESENTACIÓN DE MARCAS (COMPLETO) === */
/* Pegar al final de footer.css */

/* Bloque general */
.footer-brands{
  background:#fff;
  padding:18px 0 14px;
  border-top:0 !important; /* sin líneas */
}
.footer-brands__title{
  font-size:13px;
  text-transform:uppercase;
  font-weight:700;
  letter-spacing:.02em;
  margin-bottom:10px;
  color:#111;
}

/* Lista/carrusel */
.footer-brands__logos{
  list-style:none;
  margin:0;
  padding:0;
  display:block; /* Owl toma control */
}

/* Item: caja uniforme para todos los logos */
.footer-brands__item{
  width:150px;
  height:68px;              /* alto uniforme */
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.95;
  transition:opacity .15s ease, transform .15s ease;
}
.footer-brands__item:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* Imagen: misma “caja”, sin deformar */
.footer-brands__item img{
  width:140px;              /* base */
  height:42px;              /* base */
  object-fit:contain;       /* mantiene proporción */
  display:block;
  image-rendering:-webkit-optimize-contrast;
}

/* Dots centrados abajo */
.footer-brands .owl-controls{ margin-top:8px; }
.footer-brands .owl-pagination{ text-align:center; }
.footer-brands .owl-page span{
  width:8px; height:8px; border-radius:50%; opacity:.5;
}
.footer-brands .owl-page.active span{ opacity:1; }

/* Quitar líneas grises del footer */
#footer,
#footer .footer-widgets,
#footer .footer-row,
#footer .container{
  border-top:0 !important;
  border-bottom:0 !important;
}
#footer hr,
#footer .hr,
#footer .divider,
#footer .line,
.footer-brands:before,
.footer-brands:after{
  display:none !important;
  content:none !important;
}

/* Responsive */
@media (max-width:768px){
  .footer-brands__item{ width:120px; height:58px; }
  .footer-brands__item img{ width:120px; height:36px; }
}

/* === FOOTER: REPRESENTACIÓN DE MARCAS (Ticker infinito) === */

/* Bloque general */
.footer-brands{
  background:#fff;
  padding:18px 0 14px;
  border-top:0 !important; /* sin líneas */
}
.footer-brands__logos{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
}

/* Ticker infinito (sin JS) */
.brands-ticker{ overflow:hidden; position:relative; }
.brands-track{
  display:flex;
  gap:24px;                 /* espacio entre logos */
  width:max-content;        /* ancho según contenido */
  animation:brands-scroll 28s linear infinite; /* velocidad aquí */
  will-change:transform;
}
@keyframes brands-scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); } /* recorre 1 set; como duplicamos, no hay salto */
}

/* Caja uniforme por logo */
.footer-brands__item{
  width:150px;
  height:68px;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:.95;
  transition:opacity .15s ease, transform .15s ease;
}
.footer-brands__item:hover{
  opacity:1;
  transform:translateY(-2px);
}

/* Imagen dentro: sin deformar */
.footer-brands__item img{
  width:100%;
  height:52px;
  object-fit:contain;
  display:block;
  image-rendering:-webkit-optimize-contrast;
}

/* Quitar líneas grises del footer (por si vienen de estilos viejos) */
#footer,
#footer .footer-widgets,
#footer .footer-row,
#footer .container{
  border-top:0 !important;
  border-bottom:0 !important;
}
#footer hr,
#footer .hr,
#footer .divider,
#footer .line,
.footer-brands:before,
.footer-brands:after{
  display:none !important;
  content:none !important;
}

/* Responsive */
@media (max-width:768px){
  .brands-track{ gap:18px; }
  .footer-brands__item{ width:120px; height:58px; }
  .footer-brands__item img{ width:120px; height:36px; }
}

