/* ================================
   ESTILOS PARA PÁGINA DE MARCAS
================================= */

.marcas-container {
  padding: 60px 5%;
  background-color: #ffffff;
  min-height: calc(100vh - 120px);
}

.titulo-real {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.marcas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  justify-items: center;
}

.marca {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  max-width: 240px;
  width: 100%;
}

.marca:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.15);
}

.marca img {
  width: 100%;
  max-width: 160px;
  height: auto;
  object-fit: contain;
  margin-bottom: 12px;
}

.marca h3 {
  font-size: 1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.marca a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
}

.marca a:hover {
  text-decoration: underline;
  color: #c0392b;
}