



/* ======================= */

/* FOOTER */

/* ======================= */



.whatsapp-float {

  position: fixed;

  bottom: 20px;

  right: 20px;

  z-index: 2000;

}



.whatsapp-btn {

  background-color: #25d366;

  color: white;

  font-size: 28px;

  width: 60px;

  height: 60px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  box-shadow: 0 4px 8px rgba(0,0,0,0.3);

  transition: transform 0.3s;

}



.whatsapp-btn:hover {

  transform: scale(1.1);

}



.whatsapp-options {

  display: flex;

  flex-direction: column;

  position: absolute;

  bottom: 70px;

  right: 0;

  opacity: 0;

  visibility: hidden;

  transition: all 0.3s ease-in-out;

}



.whatsapp-options a {

  background: white;

  color: #333;

  text-decoration: none;

  padding: 10px 14px;

  border-radius: 8px;

  margin-bottom: 10px;

  font-size: 14px;

  display: flex;

  align-items: center;

  gap: 6px;

  box-shadow: 0 3px 6px rgba(0,0,0,0.2);

  transition: background 0.2s;

}



.whatsapp-options a:hover {

  background: #f5f5f5;

}



#whatsapp-toggle {

  display: none;

}



#whatsapp-toggle:checked ~ .whatsapp-options {

  opacity: 1;

  visibility: visible;

  transform: translateY(0);

}



.honda-footer {

  background-color: #4a4a4a;

  color: #fff;

  font-family: 'Poppins', sans-serif;

  font-size: 14px;

}



.footer-columns {

  display: flex;

  flex-wrap: wrap;

  justify-content: space-between;

}



.footer-column {

  flex: 1 1 200px;

  margin-bottom: 20px;

}



.footer-column h5 {

  font-weight: 600;

  margin-bottom: 10px;

}



.footer-column a {

  color: #fff;

  text-decoration: none;

  display: block;

  margin-bottom: 5px;

  transition: color 0.2s;

}



.footer-column a:hover {

  color: var(--honda-red, #c00);

}



.footer-column ul {

  padding-left: 0;

  list-style: none;

}



.footer-column ul li {

  margin-bottom: 8px;

}



.footer-bottom {

  background-color: rgba(0,0,0,0.1);

  font-size: 12px;

  text-align: center;

  padding: 10px 0;

}



/* ======================= */

/* CATÁLOGO */

/* ======================= */

.products-card {

  background: #fff;

  border-radius: 10px;

  transition: all 0.3s ease;

  border: 1px solid #eee;

}



.products-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 8px 20px rgba(0,0,0,0.15);

}



.img-container img {

  max-height: 200px;

  object-fit: contain;

  width: 100%;

}



.model-name {

  font-size: 1.3rem;

  font-weight: 600;

  margin-bottom: 10px;

}



.btn-honda {

  background-color: #da291c;

  color: #fff;

  padding: 6px 18px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 0.9rem;

  transition: all 0.3s ease;

}



.btn-honda:hover {

  background-color: #b51f16;

  color: #fff;

}



.btn-honda-outline {

  border: 2px solid #000;

  padding: 6px 18px;

  border-radius: 30px;

  text-decoration: none;

  font-size: 0.9rem;

  color: #000;

  transition: all 0.3s ease;

}



.btn-honda-outline:hover {

  background-color: #000;

  color: #fff;

}



/* ======================= */

/* RESPONSIVE DESIGN */

/* ======================= */



/* Tablets grandes / laptops pequeños */

@media (max-width: 1200px) {

  .menu-list a {

    padding: 10px 12px;

    font-size: 0.8rem;

  }

  .img-container img {

    max-height: 180px;

  }

}



/* Tablets medianos */

@media (max-width: 992px) {

  .footer-columns {

    flex-direction: row;

    gap: 20px;

  }

  .products-card {

    margin-bottom: 20px;

  }

  .img-container img {

    max-height: 160px;

  }

}



/* Tablets chicos y celulares grandes */

@media (max-width: 768px) {

  .menu-list {

    flex-direction: column;

  }

  .menu-list a {

    text-align: center;

    padding: 10px;

    font-size: 0.9rem;

  }

  .footer-columns {

    flex-direction: column;

    align-items: flex-start;

  }

  .footer-column {

    width: 100%;

  }

  .img-container img {

    max-height: 140px;

  }

}



/* Celulares pequeños */

@media (max-width: 480px) {

  .honda-logo-text {

    font-size: 1rem;

  }

  .menu-list a {

    font-size: 0.8rem;

    padding: 8px 10px;

  }

  .whatsapp-btn {

    width: 50px;

    height: 50px;

    font-size: 22px;

  }

  .img-container img {

    max-height: 120px;

  }

  .model-name {

    font-size: 1.1rem;

  }

  .btn-honda,

  .btn-honda-outline {

    font-size: 0.8rem;

    padding: 5px 14px;

  }

}
/* ======================= */
/* HEADER */
/* ======================= */
/* Reset */
body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
}

/* Logo y top-bar */
.top-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 0;
  background-color: #fff;
}

.logo-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.honda-logo-text {
  font-weight: 700;
  font-size: 1.3rem;
  color: #c00;
  letter-spacing: 1px;
}

/* Barra de menú */
.menu-bar {
  background-color: #3c3c3c;
  width: 100%;
}

.menu-list {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.menu-list li {
  position: relative;
}

.menu-list a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.menu-list a:hover {
  background: #c00;
  color: #fff;
}

/* Submenu */
.submenu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: #3c3c3c;
  min-width: 180px;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1000;
  flex-direction: column;
}

.submenu li a {
  padding: 10px 14px;
  font-size: 0.8rem;
}

/* Hover en escritorio */
@media (min-width: 1001px) {
  .dropdown:hover .submenu {
    display: flex;
  }
}

/* Responsive */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: #c00;
}

@media (max-width: 1000px) {
  .menu-toggle {
    display: block;
  }

  .menu-list {
    display: none;
    flex-direction: column;
    background: #3c3c3c;
    width: 100%;
  }

  .menu-list.active {
    display: flex;
  }

  .submenu {
    position: static;
    width: 100%;
  }

  .submenu.open {
    display: flex;
  }

  .menu-list a {
    text-align: center;
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
}

.contentSectionO {
  background-color: #d9d9d9;
  padding: 2rem 0;
}

.products-submenu--product {
  text-align: left;
  margin-bottom: 2rem;
  padding: 0 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.products-submenu--image img {
  border-radius: 6px;
  max-width: 95%;
  margin: 0 auto;
  display: block;
}

.products-submenu--model {
  margin: 0.8rem 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #444;
  text-align: center;
}

.products-submenu--content {
  display: flex;
  justify-content: center;
  gap: 10px;
  width: 95%;
}

.btn.home-cta {
  flex: 1;
  border: 2px solid #aaa;
  background-color: #fff;
  color: #666;
  border-radius: 0;
  font-weight: 500;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
.btn.home-cta:hover {
  background-color: #f7f7f7;
  border-color: #888;
  color: #444;
}

.mega-product a:hover {
  background: none;
  color: inherit;
}
.menu-bar .menu-list > li > a {
  color: #fff; /* blanco */
  text-decoration: none;
  transition: color 0.2s;
}

.menu-bar .menu-list > li > a:hover {
  color: #ccc; /* o el hover que prefieras */
}