:root {
  --color-primario: #ff82a0;       /* rosa — botones, acentos principales */
  --color-primario-oscuro: #ff003d;/* rosa fuerte — hover, énfasis */
  --color-acento: #ea899a;         /* rosa suave — links de nav activos */
  --color-borde: #ebebeb;          /* gris claro — bordes sutiles */
  --color-focus: #ff6384;          /* rosa vivo — focus de formularios */
  --color-negro: #000000;
  --color-blanco: #ffffff;
}

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

/* COMUNES */

a {
  text-decoration: none;
}

li {
  list-style: none;
}

ul {
  list-style: none;
}

body {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  padding-top: 36px; /* espacio para la barra portal fija */
}

.list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

/* HEADER */

.header {
  border-bottom: 1px solid #ebebeb;
}

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

.container-header {
  display: flex;
}

.logo_bantar {
  padding-top: 19px;
  padding-left: 66px;
  padding-bottom: 15px;
  margin-right: 415px;
}

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

.main-nav_link {
  text-decoration: none;
  color: black;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  padding: 59px 0;
  position: relative;
}

.item-vertical:first-child {
  padding-bottom: 5px;
}

.menu-vertical {
  position: absolute;
  font-size: 12px;
  padding-left: 1px;
  padding-right: 5px;
  padding-bottom: 2px;
  padding-top: 10px;
  display: none;
  /* background: rgba(248, 230, 233, 0.51); */
  border-radius: 0px 0px 4px 4px;
}

.menu-vertical_item {
  color: #000000;
}

.menu-vertical_item:hover {
  color: black;
  font-size: 14px;
  font-weight: 600;
}

.main-nav_list li:hover .menu-vertical {
  display: block;
}

.main-nav_link:hover {
  color: #ea899a;
}

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

.main-nav_item {
  margin-right: 43px;
}

.main-nav_item:last-child {
  margin-right: 0;
}

.selected,
.selected_5 {
  color: #ea899a;
}

.selected::after,
.selected_5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ea899a;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .container {
    max-width: 768px;
  }

  .bantar-logo-svg {
    width: 158px;
    height: 79px;
  }

  .logo_bantar {
    padding-left: 43px;
    margin-right: 143px;
  }

  .main-nav_link {
    padding: 49px 0;
  }

  .menu-vertical {
    display: block;
    padding-top: 5px;
    font-size: 10px;
  }

  .item-vertical:first-child {
    padding-bottom: 1px;
  }

  .selected_5 {
    color: #000000;
  }

  .selected_5::after {
    background-color: white;
  }

  .selected-1 {
    color: #ea899a;
  }
}

@media (max-width: 480px) {
  .container {
    max-width: 480px;
  }

  .burger {
    cursor: pointer;
  }

  .main-nav {
    display: none;
  }

  .logo_bantar {
    padding-left: 13px;
    padding-top: 14px;
    padding-right: 13px;
    margin: 0;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
  }

  .bantar-logo-svg {
    width: 102px;
    height: 51px;
  }
}

/* BANNER */
.banner {
  height: 410px;
  background: linear-gradient(
    269.84deg,
    #f0a7ab -13.67%,
    rgba(221, 167, 240, 0) 119.18%
  );
  text-align: left;
}

.banner-container {
  position: relative;
}

.primera-linea {
  padding-left: 149px;
  padding-top: 123px;
}

.segunda-linea {
  padding-left: 149px;
}

.img-primera-linea {
  height: 1px;
  width: 432px;
}

.titulo-banner {
  font-weight: 800;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #ff003d;
  padding-top: 10px;
  padding-right: 466px;
}

.parrafo-banner {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #ff82a0;
  padding-top: 28px;
  padding-right: 453px;
}

.imagen-banner {
  display: block;
  position: absolute;
  width: 525px;
  height: 410px;
  right: 26px;
}

.imagen-chica {
  width: 525px;
  height: 410px;
}

.image2-banner {
  display: none;
}

@media (max-width: 768px) {
  .banner {
    height: 236.65px;
  }

  .imagen-banner {
    right: 309px;
    width: 0px;
    height: 0px;
  }

  .imagen-chica {
    width: 303px;
    height: 238px;
  }

  .primera-linea {
    padding-left: 31px;
    padding-top: 68px;
  }

  .img-primera-linea {
    width: 353px;
  }

  .titulo-banner {
    line-height: 24px;
    font-size: 20px;
    padding-top: 5px;
    padding-right: 357px;
  }

  .parrafo-banner {
    font-size: 18px;
    line-height: 22px;
    padding-top: 0;
    padding-right: 361px;
  }

  .segunda-linea {
    height: 1px;
    padding-left: 31px;
  }
}

@media (max-width: 480px) {
  .banner {
    height: 370px;
  }

  .imagen-banner {
    display: none;
    right: 322px;
  }

  .image2-banner {
    display: block;
    width: 268px;
    height: 209px;
    margin: auto;
  }

  .img-primera-linea {
    width: 290px;
  }

  .primera-linea {
    width: 290px;
    margin: auto;
    padding-left: 0px;
    padding-top: 12px;
  }

  .titulo-banner {
    padding-top: 10px;
    padding-right: 0px;
    width: 205px;
    margin: auto;
  }

  .parrafo-banner {
    width: 264px;
    margin: auto;
    padding-right: 0px;
    padding-top: 15px;
  }

  .segunda-linea {
    width: 290px;
    margin: auto;
    padding-left: 0px;
  }
}

/* INTRODUCTION BANTAR */
.introduction {
  height: 1773px;
  background: linear-gradient(
    270.58deg,
    rgba(0, 160, 250, 0.24) -23.33%,
    rgba(253, 146, 255, 0.11125) 85.16%,
    rgba(255, 71, 104, 0) 193.65%
  );
}

.line-introduction {
  width: 1010px;
  padding-top: 38px;
  padding-bottom: 5px;
  margin: auto;
}

.line2-introduction {
  width: 1010px;
  margin: auto;
}

.tittle-introduction {
  font-style: ExtraBold;
  font-weight: 800;
  font-size: 32px;
  line-height: 38px;
  text-align: center;
  color: #ff003d;
  margin: auto;
}

.introduction-text {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  text-align: justify;
  width: 902px;
  padding-top: 40px;
  padding-bottom: 40px;
  margin: auto;
}

@media (max-width: 768px) {
  .introduction {
    height: 1493px;
  }

  .line-introduction {
    width: 654px;
    padding-top: 13px;
    padding-bottom: 5px;
  }

  .tittle-introduction {
    font-style: normal;
    font-size: 20px;
    line-height: 24px;
  }

  .line2-introduction {
    width: 654px;
    padding-top: 0px;
  }

  .introduction-text {
    width: 709px;
  }
}

@media (max-width: 480px) {
  .introduction {
    height: 2323px;
  }

  .line-introduction {
    width: 344px;
  }

  .tittle-introduction {
    font-size: 14px;
    line-height: 17px;
    padding: 0 15px;
  }

  .line2-introduction {
    width: 344px;
  }

  .introduction-text {
    width: 350px;
  }
}

/* CARDS WITH INFORMATION */

.cards-information {
  width: 825px;
  height: 346px;
  background-color: white;
  box-shadow: 7px 6px 4px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  position: relative;
  margin-left: 73px;
}

.img-tratamientos_faciales {
  position: absolute;
  top: 14px;
  left: 11px;
  width: 474px;
  height: 318px;
  border-radius: 12px;
}

.tratamientos-faciales {
  text-align: center;
  padding-left: 487px;
  padding-top: 86px;
}

.card-tittle {
  font-weight: 700;
  font-size: 32px;
  line-height: 38px;
  color: black;
}

.card-tittle3 {
  font-weight: 700;
  font-size: 30px;
  line-height: 38px;
  color: black;
}

.card-description {
  font-weight: 300;
  font-size: 32px;
  line-height: 38px;
  color: black;
  padding-bottom: 60px;
}

.card-description3 {
  font-weight: 300;
  font-size: 30px;
  line-height: 38px;
  color: black;
  padding-bottom: 60px;
}

.btn-saber_mas {
  position: relative;
  font-size: 12px;
  line-height: 14px;
  height: 3em;
  padding: 0 3em;
  border: none;
  background-color: #ff82a0;
  color: #fff;
  overflow: hidden;
  border-radius: 9px;
  cursor: pointer;
}

.btn-saber_mas::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  bottom: 0;
  left: 0;
  height: 0px;
  width: 100%;
  background: rgb(196, 27, 84);
  background: linear-gradient(
    90deg,
    rgba(255, 130, 160, 1) 20%,
    rgb(204, 51, 102) 100%
  );
  transition: 0.2s;
}

.label {
  position: relative;
}

.icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3em;
  width: 3em;
  position: absolute;
  top: 3em;
  right: 0;
  opacity: 0;
  transition: 0.4s;
}

.btn-saber_mas:hover::before {
  height: 100%;
}

.btn-saber_mas:hover .icon {
  top: 0;
  opacity: 1;
}

.cards-information2 {
  width: 825px;
  height: 346px;
  background-color: white;
  box-shadow: 7px 6px 4px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  position: relative;
  margin-left: 302px;
  margin-top: 25px;
}

.cards-information3 {
  width: 825px;
  height: 346px;
  background-color: white;
  box-shadow: 7px 6px 4px rgba(0, 0, 0, 0.25);
  border-radius: 14px;
  position: relative;
  margin-left: 187px;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .cards-information,
  .cards-information2,
  .cards-information3 {
    width: 662px;
    height: 278px;
    margin: auto;
  }

  .cards-information2,
  .cards-information3 {
    margin-top: 25px;
  }

  .img-tratamientos_faciales {
    position: absolute;
    top: 11.23px;
    left: 8.83px;
    width: 380.35px;
    height: 255.17px;
  }

  .tratamientos-faciales {
    padding-left: 389px;
    padding-top: 69px;
  }

  .card-tittle,
  .card-description {
    font-size: 28px;
    line-height: 34px;
  }

  .card-tittle3,
  .card-description3 {
    font-size: 26px;
    line-height: 31px;
  }
}

@media (max-width: 480px) {
  .cards-information,
  .cards-information2,
  .cards-information3 {
    width: 346px;
    height: 431px;
  }

  .img-tratamientos_faciales {
    position: absolute;
    top: 4px;
    left: 5px;
    width: 337px;
    height: 225px;
  }

  .tratamientos-faciales {
    padding-left: 8px;
    padding-top: 248px;
  }
}

/* STYLES - WEB SERVICES PAGE */

.introduction-tittle_services {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #000000;
  padding-top: 73px;
}

.introduction-text_services {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: justify;
  color: #000000;
  width: 761px;
  margin: auto;
  padding-top: 42px;
}

.line-services_1 {
  width: 1056px;
  padding-top: 48px;
  padding-bottom: 5px;
  margin: auto;
}

.line-services_2 {
  width: 1056px;
  padding-top: 20px;
  padding-bottom: 5px;
  margin: auto;
}

@media (max-width: 768px) {
  .introduction-tittle_services {
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    color: #000000;
    padding-top: 40px;
  }

  .introduction-text_services {
    text-align: center;
    width: 673px;
  }

  .line-services_1 {
    width: 734px;
    padding-top: 35px;
    padding-bottom: 10px;
  }

  .line-services_2 {
    width: 734px;
  }
}

@media (max-width: 480px) {
  .introduction-tittle_services {
    font-size: 25px;
    line-height: 38px;
    padding-top: 25px;
  }

  .introduction-text_services {
    width: 337px;
    padding-top: 25px;
    font-size: 18px;
  }

  .line-services_1 {
    width: 350px;
    padding-top: 18px;
  }

  .line-services_2 {
    width: 350px;
  }
}

/* LIMPIEZA PROFUNDA */

.info-limpiezas {
  display: flex;
}

.tittle-limpieza {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
  padding-left: 80px;
}

.tittle-profunda {
  font-weight: 300;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
}

.limpieza-profunda_img {
  width: 552px;
  height: 347px;
  padding-left: 80px;
  padding-top: 10px;
}

.text-list {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
  color: #000000;
  padding: 28px 101px 25px 45px;
}

.text-limpieza_profunda {
  margin-bottom: 25px;
}

.questions-list_item:not(:last-child) {
  margin-bottom: 15px;
}

.drop-info,
.drop-info1,
.drop-info2,
.drop-info3,
.drop-info4,
.drop-info5,
.drop-info6,
.drop-info7,
.drop-info8,
.drop-info9,
.drop-info10,
.drop-info11,
.drop-info12,
.drop-info13,
.drop-info14,
.drop-info15 {
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(227, 255, 253, 0.56) -12.24%,
    rgba(255, 130, 160, 0.56) 154.92%
  );
  border: none;
  width: 500px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
  padding-left: 15px;
  padding-top: 10px;
  padding-right: 24px;
  padding-bottom: 10px;
}

.drop-info12 {
  text-align: left;
  padding-left: 15px;
  padding-top: 10px;
  padding-right: 12px;
  padding-bottom: 10px;
}

.minus-icon,
.minus-icon1,
.minus-icon2,
.minus-icon3,
.minus-icon4,
.minus-icon5,
.minus-icon6,
.minus-icon7,
.minus-icon8,
.minus-icon9,
.minus-icon10,
.minus-icon11,
.minus-icon12,
.minus-icon13,
.minus-icon14,
.minus-icon15 {
  display: none;
  margin-right: 10px;
}

.plus-icon,
.plus-icon1,
.plus-icon2,
.plus-icon3,
.plus-icon4,
.plus-icon5,
.plus-icon6,
.plus-icon7,
.plus-icon8,
.plus-icon9,
.plus-icon10,
.plus-icon11,
.plus-icon12,
.plus-icon13,
.plus-icon14,
.plus-icon15 {
  margin-right: 10px;
}

.button-tittle {
  position: relative;
  display: inline-block;
}

.button-content,
.button-content1,
.button-content2,
.button-content3,
.button-content4,
.button-content5,
.button-content6,
.button-content7,
.button-content8,
.button-content9,
.button-content10,
.button-content11,
.button-content12,
.button-content13,
.button-content14,
.button-content15 {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: white;
  font-weight: 400;
  font-size: 17px;
  line-height: 18px;
  text-align: justify;
  color: #000000;
  width: 500px;
  padding: 7px 22px 8px 30px;
  border-width: 0px 1px 1px 1px;
  border-style: solid;
  border-color: #a8a8a8;
  margin-bottom: 500000px;
}

.show {
  display: block;
}

.hidden {
  display: none;
}

.ocultar {
  display: none;
}

.imagen-limpiezas {
  display: none;
}

@media (max-width: 768px) {
  .tittle-limpieza {
    font-size: 28px;
    line-height: 34px;
    text-align: center;
  }

  .tittle-profunda {
    font-size: 28px;
    line-height: 34px;
  }

  .ocultar {
    display: block;
    text-align: justify;
    padding-top: 20px;
    width: 458px;
    margin: auto;
  }

  .info-limpiezas {
    padding-top: 7px;
  }

  .text-limpieza_profunda {
    display: none;
  }

  .limpieza-profunda_img {
    width: 357px;
    height: 238px;
    padding-left: 22px;
    padding-top: 15px;
  }

  .text-list {
    padding-left: 16px;
    padding-right: 31px;
  }

  .drop-info,
  .drop-info1,
  .drop-info2,
  .drop-info3,
  .drop-info4,
  .drop-info5,
  .drop-info6,
  .drop-info7,
  .drop-info8,
  .drop-info9,
  .drop-info10,
  .drop-info11,
  .drop-info12,
  .drop-info13,
  .drop-info14,
  .drop-info15 {
    width: 379px;
    font-size: 15px;
    line-height: 18px;
  }

  .button-content,
  .button-content1,
  .button-content2,
  .button-content3,
  .button-content4,
  .button-content5,
  .button-content6,
  .button-content7,
  .button-content8,
  .button-content9,
  .button-content10,
  .button-content11,
  .button-content12,
  .button-content13,
  .button-content14,
  .button-content15 {
    width: 379px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tittle-limpieza {
    font-size: 22px;
    line-height: 31px;
    padding-left: 0;
  }

  .tittle-profunda {
    font-size: 22px;
  }

  .ocultar {
    width: 322px;
  }

  .info-limpiezas {
    flex-direction: column;
  }

  .imagen-limpiezas {
    display: block;
    width: 357px;
    height: 238px;
    margin: auto;
  }

  .limpieza-profunda_img {
    display: none;
  }

  .drop-info,
  .drop-info1,
  .drop-info2,
  .drop-info3,
  .drop-info4,
  .drop-info5,
  .drop-info6,
  .drop-info7,
  .drop-info8,
  .drop-info9,
  .drop-info10,
  .drop-info11,
  .drop-info12,
  .drop-info13,
  .drop-info14,
  .drop-info15 {
    width: 338px;
  }

  .button-content,
  .button-content1,
  .button-content2,
  .button-content3,
  .button-content4,
  .button-content5,
  .button-content6,
  .button-content7,
  .button-content8,
  .button-content9,
  .button-content10,
  .button-content11,
  .button-content12,
  .button-content13,
  .button-content14,
  .button-content15 {
    width: 338px;
  }

  .text-list {
    padding: 20px 0px 0px 0px;
    width: 338px;
    margin: auto;
  }
}

/* CUIDADO DE TUS PIERNAS */

.tittle-text {
  display: flex;
  align-items: center;
  width: 1004px;
  margin: auto;
  padding-top: 60px;
}

.presoterapia-tittle {
  font-weight: 300;
  font-size: 36px;
  line-height: 43px;
  padding-top: 20px;
  padding-bottom: 23px;
}

.negrita {
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
}

.parrafo {
  margin-right: 63px;
}

.tittle-text p {
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
  width: 467px;
}

.img-presoterapia {
  width: 474px;
  height: 319px;
  border-radius: 11px;
}

.piernas-info {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  text-align: justify;
  color: #000000;
  padding-bottom: 23px;
}

.question {
  font-size: 17px;
  line-height: 22px;
  color: #000000;
  padding-left: 5px;
}

.answer {
  font-weight: 300;
  font-size: 16px;
  line-height: 22px;
  text-align: justify;
  color: #000000;
}

.informacion-presoterapia {
  display: flex;
  /* align-items: center; */
  width: 1027px;
  margin: auto;
  padding-top: 5px;
}

.piernas-cansadas {
  padding-right: 157px;
}

.beneficios-box {
  padding-top: 38px;
}

.beneficios {
  width: 1048px;
  margin: auto;
  display: flex;
  align-items: center;
  padding-bottom: 82px;
}

.center {
  padding-left: 142px;
  /*  text-align: center; */
}

.center1 {
  text-align: center;
  padding-left: 85px;
}

.list-beneficios {
  padding-top: 20px;
  padding-right: 120px;
  padding-left: 25px;
}

.list-contraindicaciones {
  padding-top: 20px;
  padding-left: 90px;
}

.list-beneficios_item {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}

.img-beneficios {
  width: 477px;
  border-radius: 13px;
}

.oculta {
  display: none;
}

@media (max-width: 768px) {
  .parrafo {
    margin-left: 33px;
    margin-right: 27px;
  }

  .presoterapia-tittle {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
  }

  .negrita {
    font-size: 30px;
    line-height: 36px;
  }

  .tittle-text p {
    width: 301px;
  }

  .img-presoterapia {
    width: 386px;
    height: 259px;
  }

  .informacion-presoterapia {
    display: block;
    width: 640px;
    margin: auto;
  }

  .piernas-cansadas {
    padding: 0;
  }

  .beneficios {
    width: 719px;
  }

  .oculte {
    display: none;
  }

  .oculta {
    display: block;
  }

  .negrita_1 {
    font-size: 30px;
    line-height: 36px;
    text-align: center;
  }

  .list-beneficios {
    padding-right: 34px;
  }

  .img-beneficios {
    width: 364px;
    height: 242px;
  }

  .list-contraindicaciones {
    padding-left: 28px;
  }

  .mostrar_linea {
    display: none;
  }
}

@media (max-width: 480px) {
  .tittle-text {
    flex-direction: column;
    width: 360px;
    padding-top: 0px;
  }

  .img-presoterapia {
    width: 345px;
    height: 232px;
    padding-top: 10px;
  }

  .presoterapia-tittle {
    font-size: 20px;
  }

  .mostrar_linea {
    display: block;
  }

  .line-services_2 {
    padding-top: 20px;
  }

  .informacion-presoterapia {
    width: 316px;
  }

  .beneficios-box {
    padding-top: 5px;
  }

  .beneficios {
    flex-direction: column;
    width: 316px;
    padding-bottom: 45px;
  }

  .list-beneficios {
    padding-top: 10px;
    padding-right: 0px;
    padding-left: 0px;
    padding-bottom: 20px;
  }

  .img-beneficios {
    width: 345px;
    height: 232px;
  }

  .pad {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .list-contraindicaciones {
    padding-left: 0px;
    padding-top: 28px;
  }

  .negrita_1 {
    font-size: 25px;
  }
}

/* PRODUCTOS */
.tittle-productos {
  font-weight: 700;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  color: #000000;
  padding-top: 55px;
}

.productos-description {
  padding-top: 35px;
  text-align: justify;
  padding-left: 150px;
  padding-right: 150px;
}

.productss-tittle {
  font-weight: 300;
  font-size: 36px;
  line-height: 43px;
  padding-top: 20px;
  padding-bottom: 23px;
  padding-left: 69px;
}

.img-fondo {
  border-radius: 12px 12px 0px 0px;
  width: 268px;
  height: 268px;
}

.card-product {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  width: 1000px;
  margin: auto;
}

.product_item- {
  flex-basis: calc((100% - 100px) / 3);
}

.product_item-1 {
  width: 300px;
  height: 514px;
  background: white;
  box-shadow: -5px 5px 4px rgba(0, 0, 0, 0.25);
  border-radius: 12px 12px 12px 12px;
  position: relative;
}

.tittle-productos_1 {
  padding-top: 36px;
  padding-bottom: 10px;
  font-weight: 700;
  font-size: 13px;
  line-height: 14px;
  text-align: center;
}

.extra {
  padding-bottom: 22px;
}

.tittle-more {
  padding-left: 20px;
  padding-right: 20px;
}

.tittle-productos_2 {
  font-weight: 300;
  font-size: 13px;
  line-height: 14px;
}

.list-caracteristicas {
  padding-bottom: 20px;
}

.img-producto {
  width: 82.41px;
  height: 281.78px;
  position: absolute;
  right: -8px;
  bottom: 219px;
}

.img-producto_1 {
  position: absolute;
  right: -18px;
  bottom: 221px;
  width: 124px;
  height: 278px;
}

.img-producto_3 {
  width: 179.21px;
  height: 152.33px;
  position: absolute;
  right: -54px;
  bottom: 219px;
}

.img-producto_4 {
  width: 155px;
  height: 154px;
  position: absolute;
  right: -20px;
  bottom: 219px;
}

.img-producto_5 {
  width: 98px;
  height: 170px;
  position: absolute;
  right: -3px;
  bottom: 219px;
}

.img-producto_6 {
  width: 138px;
  height: 144px;
  position: absolute;
  right: -3px;
  bottom: 219px;
}

.img-producto_7 {
  position: absolute;
  right: -3px;
  bottom: 219px;
}

.img-producto_8 {
  width: 71px;
  height: 195px;
  position: absolute;
  right: -3px;
  bottom: 219px;
}

.img-producto_9 {
  width: 105px;
  height: 195px;
  position: absolute;
  right: -3px;
  bottom: 219px;
}

.img-producto_10 {
  width: 50px;
  height: 195px;
  position: absolute;
  right: 9px;
  bottom: 219px;
}

.img-producto_11 {
  width: 64.6px;
  height: 207px;
  position: absolute;
  right: -1px;
  bottom: 219px;
}

.img-producto_12 {
  width: 66px;
  height: 207px;
  position: absolute;
  bottom: 219px;
  right: 4px;
}

.carac-item {
  font-weight: 300;
  font-size: 15px;
  line-height: 13px;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 12px;
}

.extra-1 {
  padding-bottom: 25px;
}

.extra-2 {
  padding-bottom: 10px;
}

.extra-3 {
  padding-bottom: 12px;
}

.extra-4 {
  padding-bottom: 23px;
}

.btn {
  padding-bottom: 15px;
}

.btn-comprar {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 14px;
  color: white;
  padding-top: 3px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 5px;
  border: none;
  background-color: #00ef6f;
  border-radius: 50px;
  margin: auto;
  cursor: pointer;
}

.wa-btn {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}

.wa-compra {
  padding-bottom: 5px;
}

@media (max-width: 768px) {
  .tittle-productos {
    font-size: 36px;
    line-height: 43px;
    padding-top: 30px;
  }

  .productos-description {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    width: 704px;
    margin: auto;
  }

  .card-product {
    width: 675px;
  }

  .product_item {
    flex-basis: calc((100% - 50px) / 2);
  }
}

@media (max-width: 480px) {
  .productos-description {
    width: 336px;
  }

  .productss-tittle {
    padding: 0;
    font-size: 20px;
    line-height: 19px;
    text-align: center;
    padding-bottom: 20px;
  }

  .negrita {
    font-weight: 700;
    font-size: 20px;
    line-height: 19px;
  }

  .card-product {
    flex-direction: column;
    width: 306px;
    gap: 25px;
  }

  .img-producto_3 {
    right: -27px;
  }
}

/* PAGINA CONTACTANOS */

.section-contact {
  background: linear-gradient(
    270.58deg,
    rgba(0, 160, 250, 0.24) -23.33%,
    rgba(253, 146, 255, 0.11125) 85.16%,
    rgba(255, 71, 104, 0) 193.65%
  );
}

.s_tittle {
  margin-bottom: 60px;
}

.text-contacto {
  display: flex;
}

.contact-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  text-align: justify;
  color: #000000;
  padding-top: 177px;
  padding-left: 66px;
  padding-right: 73px;
}

.contact-form {
  width: 529px;
  height: 601px;
  background-color: #f2f2f2;
  padding: 32px;
  border-radius: 10px;
  margin-bottom: 100px;
}

.contact-form label {
  color: black;
  font-size: 18px;
  font-weight: 400;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-bottom: 10px;
}

.contact-form input,
.contact-form textarea {
  padding: 13px;
  border: none;
  border-radius: 5px;
  margin-bottom: 20px;
}

textarea {
  resize: none;
  height: 250px;
  width: 464px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px #ff6384;
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.contact-form button[type='submit'] {
  width: 198px;
  height: 58px;
  margin: auto;
  background-color: #ff6384;
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  font-size: 22px;
  cursor: pointer;
}

.contact-form button[type='submit']:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .section-contact {
    height: 920px;
  }

  .text-contacto {
    display: block;
  }

  .s_tittle {
    margin-bottom: 0;
  }

  .contact-description {
    padding-left: 0;
    padding-right: 0;
    padding-top: 30px;
    padding-bottom: 28px;
    width: 672px;
    margin: auto;
  }

  .contact-form {
    margin: auto;
  }
}

@media (max-width: 480px) {
  .section-contact {
    height: 1047px;
  }
  .contact-description {
    width: 322px;
    font-size: 15px;
  }

  .contact-form {
    width: 340px;
  }

  textarea {
    width: 275px;
  }

  .contact-form button[type='submit'] {
    width: 161px;
    font-size: 18px;
  }
}

/* FOOTER */
.container-footer {
  display: flex;
}

.logo-bantar_footer {
  padding-top: 64px;
  padding-left: 60px;
  padding-bottom: 64px;
  margin-right: 120px;
}

.redes-sociales {
  padding-top: 82px;
  margin-right: 120px;
}

.redes-sociales_tittle {
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
  padding-bottom: 25px;
}

.list-social_media {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-left: 76px;
}

.socialmedia:hover {
  fill: #ff82a0;
  transition: 0.3s;
}

.pages {
  padding-top: 80px;
  margin-right: 120px;
}

.pages1 {
  display: none;
}

.pages-footer {
  font-weight: 300;
  font-size: 16px;
  line-height: 19px;
  color: #000000;
}

.pages-footer:hover {
  color: #ea899a;
  font-weight: 400;
  transition: 0.2s;
}

.selected-footer {
  color: #ea899a;
  font-weight: 400;
  font-size: 18px;
}

.ubication {
  padding-top: 78px;
}

.ubication-list_item:not(:last-child) {
  padding-bottom: 15px;
}

.ubication-link {
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;

  color: #5f5f5f;
}

.ubication-link:hover,
.ubication-link:focus {
  color: #ea899a;
}

@media (max-width: 768px) {
  .logo-bantar_footer {
    padding-top: 41px;
    padding-left: 52px;
    padding-bottom: 49px;
    margin-right: 96px;
  }

  .redes-sociales {
    padding-top: 54px;
    margin-right: 98px;
  }

  .redes-sociales_tittle {
    padding-bottom: 23px;
  }

  .list-social_media {
    padding-left: 19px;
  }

  .pages {
    display: none;
  }

  .ubication {
    padding-top: 40px;
  }

  .pages1 {
    display: block;
    margin-bottom: 30px;
  }

  .pages-list {
    display: flex;
    align-items: center;
    width: 514px;
    margin: auto;
  }

  .pages-list_item:first-child {
    padding-left: 93px;
  }

  .pages-list_item:not(:last-child) {
    padding-right: 32px;
  }
}

@media (max-width: 480px) {
  .container-footer {
    flex-direction: column;
  }

  .pages-list {
    display: flex;
    flex-direction: column;
  }

  .logo-bantar_footer {
    padding-top: 47px;
    padding-left: 0px;
    padding-bottom: 76px;
    width: 161px;
    margin: auto;
  }

  .size {
    width: 161px;
    height: 81px;
  }

  .redes-sociales {
    padding-top: 0px;
    margin-right: 0px;
  }

  .redes-sociales_tittle {
    text-align: center;
  }

  .list-social_media {
    padding-left: 0px;
    width: 119px;
    margin: auto;
    gap: 16px;
  }

  .ubication {
    width: 184px;
    margin: auto;
    text-align: center;
  }

  .pages-list {
    margin-top: 30px;
    width: 110px;
  }

  .pages-list_item:first-child {
    padding-left: 0;
  }

  .pages-list_item:not(:last-child) {
    padding-right: 0px;
  }
}

/* STYLES DIV MENU MOBILE */

.mobile-menu__close {
  display: none;
}

.burger {
  display: none;
}

.mobile-menu {
  display: none;
}

.list-social_media-1 {
  display: none;
}

@media (max-width: 480px) {
  .burger {
    display: block;
  }

  .burger-icon:hover {
    fill: #ea899a;
  }

  .mobile-menu {
    display: block;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    overflow-y: auto;
    transform: scale(0.5);
    width: 100vw;
    height: 100vh;
    padding: 28px 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: white;
  }

  .mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
  }

  .mobile-menu__close {
    display: block;
    position: absolute;
    top: 21px;
    right: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
    background-color: transparent;
    fill: black;
  }

  .mobile-menu__close:hover {
    fill: #ea899a;
  }

  .logo_menu {
    width: 204px;
    margin: auto;
    margin-top: 37px;
  }

  .bantar-logo-svg-1 {
    width: 204px;
    height: 102px;
  }

  .list-pages-mobile-menu {
    margin-top: 38px;
  }

  .nav_mobile {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .nav-list_link {
    font-weight: 400;
    font-size: 20px;
    line-height: 27px;
    color: #000000;
  }

  .current {
    color: #ea899a;
    position: relative;
    padding-bottom: 3px;
  }

  .current::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #ea899a;
    border-radius: 2px;
  }

  .ubication-mobile {
    margin-top: 61px;
  }

  .ubication-list_1 {
    text-align: center;
  }

  .ubication-list_item_1:not(:last-child) {
    padding-bottom: 20px;
  }

  .ubication-link_1 {
    font-weight: 300;
    font-size: 14px;
    line-height: 17px;
    color: #494949;
  }

  .social-media_mobile {
    margin-top: 50px;
  }

  .list-social_media-1 {
    display: block;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    width: 119px;
    margin: auto;
  }
}

/* ============================================================
   BARRA PORTAL
   ============================================================ */
.portal-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
  background: #fff5f7;
  border-bottom: 1px solid #ffd6e0;
  height: 36px;
}
.portal-bar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-bar__back {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #888;
  transition: color 0.2s;
}
.portal-bar__back svg { width: 14px; height: 14px; flex-shrink: 0; }
.portal-bar__back:hover { color: var(--color-primario-oscuro); }
.portal-bar__brands {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
}
.portal-bar__brand { color: #aaa; transition: color 0.2s; }
.portal-bar__brand:hover { color: var(--color-primario-oscuro); }
.portal-bar__brand--active { color: var(--color-primario); font-weight: 700; }
.portal-bar__sep { color: #ddd; }

@media (max-width: 360px) {
  .portal-bar__brands { display: none; }
}
