* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
  list-style: none;
  text-decoration: none;
  scroll-behavior: smooth;
}

/*estilos por defecto*/

:root {
  --primary-color: #9f2241;
  --secondary-color: #691c32;
  --background-color: #f4f0f0;
  --text-color: #fff;
  --gray-color: #7e7e7e;
  --gray2-color: #5f5f5f;
}

.logo img {
  width: 200px;
  display: flex;
  align-items: center;
}

.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 70px;
  width: 70px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsapp-btn .ri-whatsapp-line {
  font-size: 35px;
}

.whatsapp-btn:hover {
  background-color: #128C7E;
}

.compra-btn {
  max-width: 800px;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 20px;
  line-height: 1.25rem;
  font-weight: 700;
  text-align: center;
  vertical-align: middle;
  align-items: center;
  border-radius: 18px;
  border: 1px solid var(--primary-color);
  gap: 0.75rem;
  color: #111;
  box-shadow: rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/**/

body {
  min-height: 100vh;
}

/*HEADER*/

header {
  position: relative;
  width: 100%;
  top: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  padding: 28px 12%;
  transition: all 0.5s ease;
}

.header-image {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 10px;
  z-index: 1;
}

.navbar {
  display: flex;
}

.navbar a {
  color: var(--gray2-color);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 5px 0;
  margin: 0px 30px;
  transition: all 0.5s ease;
}

.navbar a:hover {
  color: var(--primary-color);
}

.main {
  align-items: center;
  display: flex;
}

.main a {
  margin-right: 25px;
  margin-left: 10px;
  color: var(--text-color);
  background-color: var(--primary-color);
  padding: 15px;
  transition: all 0.5s ease;
}

.main a:hover {
  background-color: var(--secondary-color);
}

#menu-icon {
  font-size: 35px;
  color: #000;
  cursor: pointer;
  z-index: 1001;
  display: none;
}

@media (max-width: 1280px) {
  header {
    padding: 14px 2%;
    transition: 0.2s;
  }
  .navbar a {
    padding: 5px 0;
    margin: 0px 20px;
  }
}

@media (max-width: 1090px) {
  #menu-icon {
    display: block;
  }
  .navbar {
    position: absolute;
    top: 100%;
    right: -100%;
    width: 270px;
    height: 29vh;
    background-color: var(--background-color);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 10px;
    transition: all 0.5s ease;
  }
  .navbar a {
    display: block;
    margin: 12px 0;
    padding: 0px 25px;
    transition: all 0.5s ease;
  }
  .navbar a:hover {
    transform: translateY(5px);
  }
  .navbar.open {
    right: 2%;
  }
}

/*HEADER*/

.img-banner-promos img {
  width: 100vw;
  height: auto;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: calc(-50vw + 50%);
}

/*SECCION FOOTER */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container-footer {
  max-width: 1700px;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap; /* Agregado para envolver las columnas en una fila en pantallas pequeñas */
  justify-content: space-between; /* Ajustado para agregar espacio entre las columnas en pantallas pequeñas */
}
ul {
  list-style: none;
}
.footer {
  background-color: #fff;
  padding: 70px 0;
}
.footer-col {
  width: 25%;
  padding: 0 15px;
  box-sizing: border-box;
}
.footer-col h4 {
  font-size: 23px;
  margin-bottom: 15px;
  color: #686666;
  text-transform: capitalize;
  margin-bottom: 35px;
  font-weight: 700;
  position: relative;
}
.footer-col h4::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  bottom: -10px;
  background-color: #e91e63;
  height: 2px;
  box-sizing: border-box;
  width: 50px;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 8px;
}
.footer-col ul li a {
  font-size: 12px;
  text-transform: capitalize;
  color: #7e7c7c;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
}
.footer-col ul li a:hover {
  color: #000;
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: var(--primary-color);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: #ffffff;
  transition: all 0.5s ease;
}
.footer-col .social-links a:hover {
  color: #fff;
  background-color: var(--secondary-color);
}

#footer-contact {
  margin-right: 25px;
  background-color: #fff;
  padding: 25px;
  border-radius: 7px;
  margin-bottom: 30px;
  background-color: var(--background-color);
}

#footer-contact h1 {
  width: auto;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 25px;
}

#footer-contact p {
  font-size: 17px;
  font-weight: 700;
  color: #4d4d4d;
}

.footer-down {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: purple;
  color: white;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
}

footer .cr-con {
  margin-top: 16px;
  background-color: var(--primary-color);
  color: white;
  padding: 1rem 4rem;
  text-align: center;
}

/*responsive*/
@media (max-width: 767px) {
  .footer-col {
    width: 50%;
  }

  .footer-contact {
    margin-right: 0;
  }
}

@media (max-width: 574px) {
  .footer-col {
    width: 100%;
  }
}

/*SECCION FOOTER*/

/*PRINCIPAL*/

.container-acc{
  max-width: 1200px;
  margin: 20px auto;
}

.container-acc .heading{
  text-align: center;
  font-size: 30px;
  padding: 20px;
  margin-bottom: 20px;
  font-weight: 700;
  color: var(--primary-color);
}

.container-acc .accordion-wrapper{
  padding: 0 20px;
}

.container-acc .accordion{
  margin-bottom: 20px;
  cursor: pointer;
}

.container-acc .accordion.active .accordion-heading i{
  color: #fff;
  transform: rotate(180deg);
} 

.container-acc .accordion.active .accordion-heading i{
  display: block;
}

.container-acc .accordion-heading{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border: 2px solid #333;
  padding: 10px 15px;
  background-color: var(--primary-color);
}

.container-acc .accordion-heading h3{
  font-size: 20px;
  color: #fff;
}

.container-acc .accordion-content{
  padding: 15px 20px;
  border: 1px solid #333;
  font-size: 15px;
  border-top: 0;
  display: none;
}

.accordion-content span{
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}




/*PRINCIPAL*/
