/* ===========================
   Navbar general
   =========================== */
.titulo-container h2 {
  color: #fff;
  margin: 0;
  font-size: clamp(1.2rem, 4vw, 2rem);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #222;
  padding: 10px 20px;
}

.logo-img {
  height: 50px;
}

/* Botón hamburguesa (oculto en escritorio) */
.hamburger {
  background: none;
  border: none;
  color: white;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

/* Lista de enlaces (escritorio) */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #ffcc00;
}

/* ===========================
   Botón fijo "Cotiza Ahora"
   =========================== */
.btn-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #e63946;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: background 0.3s;
  z-index: 1000;
}

.btn-fixed:hover {
  background-color: #d62828;
}

/* ===========================
   Títulos
   =========================== */
.titulo-container {
  background-color: #444;
  padding: 20px;
  text-align: center;
  border-radius: 8px;
}

.titulo-container h2 {
  color: #fff;
  font-size: 2rem;
  margin: 0;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background-color: #222;       /* fondo oscuro */
  color: #fff;                  /* texto blanco */
  padding: 2rem 1rem;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;              /* permite que se acomode en móviles */
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 250px;              /* mínimo 250px, se adapta */
}

.footer-section h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  border-bottom: 1px solid #444;
  padding-bottom: 0.3rem;
}

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

.footer-section ul li {
  margin: 0.3rem 0;
}

.footer-section a {
  color: #fff;
  text-decoration: none;
}

.footer-section a:hover {
  color: #e63946;               /* rojo de tu branding */
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  border-top: 1px solid #444;
  padding-top: 1rem;
}

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

.footer-column ul li {
  margin: 0.4rem 0;
}

.footer-column a {
  color: #fff;               /* texto blanco */
  text-decoration: none;     /* sin subrayado */
  display: flex;             /* alinear icono + texto */
  align-items: center;
  gap: 0.5rem;               /* espacio entre icono y texto */
  font-size: 0.95rem;
}

.footer-column a:hover {
  color: #e63946;            /* rojo de tu branding al pasar el mouse */
}

.footer-column .icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-copy {
  text-align: center;
  font-size: 0.9rem;
  color: #fff;
  margin-top: 1rem;
}
/* ===========================
   Responsive (móviles y tablets)
   =========================== */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* mostrar botón */
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: #222;
    flex-direction: column;
    width: 200px;
    padding: 20px;
    display: none; /* oculto por defecto */
  }

  .nav-links.active {
    display: flex; /* se muestra al hacer click */
  }

  .nav-links li {
    margin: 10px 0;
  }
}
.footer-column {
  flex: 1 1 200px;
}

@media (max-width: 600px) {
  .footer-column {
    text-align: center;
  }
  .footer-column a {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}