/* ====== ESTILOS PIE DE PÁGINA ====== */
.pie_pagina {
    background-color: #f8f8f8;
    color: #333;
    
 
}

.contenedor_pie {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 30px;
    max-width: 1200px;
    margin: auto;
}
.texto_pie_pagina{

    font-weight: bold;

}
.logo_empresa img {
    width: 150px;
}

.columna_pie h3 {
    color: #000;
    font-size: 16px;
    margin-bottom: 10px;
}

.columna_pie ul {
    list-style: none;
    padding: 0;
}

.columna_pie ul li {
    margin: 6px 0;
}

.columna_pie ul li a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.columna_pie ul li a:hover {
    color: #ff0000;
}

.pie_inferior {
    background-color: #eaeaea;
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

.metodos_pago {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
}

.metodos_pago img {
    height: 30px;
    transition: transform 0.3s ease;
}

.metodos_pago img:hover {
    transform: scale(1.1);
}

.redes_sociales {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

.redes_sociales a img {
    width: 25px;
    transition: transform 0.3s ease;
}

.redes_sociales a img:hover {
    transform: scale(1.1);
}
.pie_pagina {
  background: #2c3e50; /* rojo tubo */
  color: #fff;
  padding: 50px 30px 0;

}

.contenedor_pie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: auto;
  padding-bottom: 40px;
}

.columna_pie h3 {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.columna_pie ul {
  list-style: none;
  padding: 0;
}
.columna_pie ul li {
  margin-bottom: 12px;
  font-size: 14px;
}
.columna_pie ul li a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.columna_pie ul li a:hover {
  opacity: 0.7;
}

.contacto i {
  margin-right: 8px;
  color: #ffeaea;
}

.suscripcion input,
.suscripcion select {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: none;
  border-radius: 6px;
  font-size: 14px;
}
.suscripcion button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #fff;
  color: #c91c1c;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.suscripcion button:hover {
  background: #e4e4e4;
}
.terminos {
  font-size: 12px;
  margin-bottom: 10px;
}

/* Pie inferior */
.pie_inferior {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 20px 0;
  margin-top: 20px;
  background: #2c3e50;
}

.inferior_contenido {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: auto;
  padding: 0 20px;
}

.redes_sociales span,
.metodos_pago span {
  font-weight: bold;
  margin-right: 10px;
}

.redes_sociales a {
  display: inline-block;
  margin: 0 5px;
  background: #fff;
  color: #c91c1c;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
}
.redes_sociales a:hover {
  background: #222;
  color: #fff;
}

.metodos_pago img {
  height: 28px;
  margin: 0 6px;
  filter: brightness(0) invert(1);
}

.tienda_segura img {
  height: 35px;
}

.copy {
  text-align: center;
  margin-top: 15px;
  font-size: 13px;
}
/* ====== MÓVIL ====== */
@media (max-width: 600px) {
    .contenedor_pie {
        text-align: center;
    }

    .logo_empresa {
        text-align: center;
    }
}
