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

body {
  line-height: 1.1;
  /* overflow-x: hidden; */
}

html {
  font-size: 10px;
}

:root {
  --font-Poppins: "Poppins", sans-serif;
  --font-Ubuntu: "Ubuntu", sans-serif;
  --font-Montserrat: "Montserrat", sans-serif;
  --font-opensans: "Open Sans", sans-serif;
  --font-Arial: Arial, Helvetica, sans-serif;

  --color-62d: #00562d;
  --color-b5a: #238b5a;
  --color-a30: #065a30;
  /*
--font-RobotoCondensed: "Roboto Condensed", sans-serif;
--font-BebasNeue: "Bebas Neue", sans-serif;
--font-Roboto: "Roboto", sans-serif; 
--font-Lato: "Lato", sans-serif;
--font-AbrilFatface: "Abril Fatface", serif;
--font-Quicksand: "Quicksand", sans-serif;
--font-Oswald: "Oswald", sans-serif;
--font-Nunito: "Nunito", sans-serif;
--font-Helvetica: "Helvetica", Arial, sans-serif;
--font-LenguajeSpartan: "League Spartan", sans-serif;
--font-Quicksand: "Quicksand", sans-serif;
--font-JosefinSans: "Josefin Sans", sans-serif;
--font-Myriad: "Myriad Pro", sans-serif;
--font-Verdana: Verdana, sans-serif;
--font-Inter: "Inter", sans-serif; */
}

.main-header {
  width: 100%;
}

.top-bar {
  background-color: #ffffff;
  padding: 1rem 0;
}

.top-bar .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.top-bar-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  padding-left: 12rem;
}

.ventas-mayoreo {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--color-62d);
  font-family: var(--font-Poppins);
}

.btn-whatsapp {
  background-color: var(--color-b5a);
  color: white;
  padding: 0.8rem 3rem;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  font-family: var(--font-Poppins);
}

.btn-whatsapp:hover {
  background-color: #004d36;
}

.header-divider {
  height: 1px;
  background-color: #e0e0e0;
  max-width: 1300px;
  margin: 0 auto;
}

.header-main {
  padding: 2rem 0;
}

.header-main .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo img {
  height: 60px;
  width: auto;
}

.header-nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
  margin: 0;
  padding: 0;
}

.header-nav a {
  text-decoration: none;
  color: #919191;
  font-size: 1.6rem;
  font-family: var(--font-Poppins);
  font-weight: 400;
  transition: color 0.3s ease;
}

.header-nav a.active {
  color: #413f40;
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22rem;
}

.social-icons {
  display: flex;
  gap: 0.8rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #00684a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00684a;
  font-size: 2.4rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background-color: #00684a;
  color: white;
}

.btn-contact {
  border: 2px solid #00684a;
  color: var(--color-62d);
  padding: 1rem 3rem;
  border-radius: 25px;
  font-family: var(--font-Poppins);
  text-decoration: none;
  font-size: 1.7rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: #00684a;
  color: white;
}
.hero-section {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.heroSwiper {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.heroSwiper.swiper-initialized {
  opacity: 1;
}

.heroSwiper .swiper-slide {
  width: 100%;
}

.heroSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.heroSwiper .swiper-pagination {
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: left;
  width: 100%;
  max-width: 1300px;
  padding: 0 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.heroSwiper .swiper-pagination-bullet {
  width: 25px;
  height: 25px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  opacity: 1;
  margin: 0 5px;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.heroSwiper .swiper-pagination-bullet-active {
  position: relative;
  background: white;
}

.heroSwiper .swiper-pagination-bullet-active::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #00684a;
  border-radius: 50%;
}

/*footer*/
.main-footer {
  background-color: #282828;
  padding: 2rem 0;
}

.main-footer .container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-privacy {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}

.footer-privacy:hover {
  color: #90ee90;
}

.footer-left p {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
  margin: 0;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-right span {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
}

.tecweb-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.tecweb-logo img {
  height: 20px;
  width: auto;
}

.tecweb-logo span {
  color: #ffffff;
  font-size: 1.1rem;
  font-family: Arial, sans-serif;
}

/*inicio*/

#prod-innovadores {
  background-image: url("../img/inicio/background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 13rem 0;
}

#prod-innovadores .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

#prod-innovadores .pi-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#prod-innovadores .pi-title {
  font-family: var(--font-Ubuntu);
  font-size: 6rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2rem;
}

#prod-innovadores .pi-line {
  width: auto;
  height: auto;
  max-width: 100%;
  margin-bottom: 3rem;
}

#prod-innovadores .pi-text {
  font-family: var(--font-Poppins);
  font-size: 1.8rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  max-width: 1100px;
  margin: 0 auto 1.5rem;
}

#prod-innovadores .pi-text:last-child {
  margin-bottom: 0;
}

#tea-tree {
  padding: 12rem 0;
  background-color: #f5f9f7;
}

#aceite-argan {
  padding: 12rem 0;
  background-color: #ffffff;
}

#linaza {
  padding: 12rem 0;
  background-color: #ffffff;
}

#tea-tree .container,
#linaza .container,
#aceite-argan .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

#tea-tree .tt-content,
#linaza .linaza-content,
#aceite-argan .aa-content {
  display: flex;
  align-items: center;
  gap: 14rem;
}

#linaza .linaza-content {
  gap: 13rem;
}

#tea-tree .tt-image,
#linaza .linaza-image,
#aceite-argan .aa-image {
  flex-shrink: 0;
}

#tea-tree .tt-image img,
#linaza .linaza-image img,
#aceite-argan .aa-image img {
  width: 440px;
  height: auto;
  display: block;
}

#tea-tree .tt-text,
#aceite-argan .aa-text {
  flex: 1;
}

#tea-tree .tt-title,
#linaza .linaza-title,
#aceite-argan .aa-title {
  font-family: var(--font-Ubuntu);
  font-size: 7.2rem;
  font-weight: 700;
  color: #00562d;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -4px;
}

#tea-tree .tt-paragraph,
#linaza .linaza-paragraph,
#aceite-argan .aa-paragraph {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #616161;
  line-height: 1.6;
  margin-bottom: 2rem;
}

#aceite-argan .aa-paragraph:last-child {
  margin-bottom: 0;
}

/*productos*/
#linaza-gel {
  padding: 18rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

#linaza-gel .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

#linaza-gel .lg-content {
  display: flex;
  align-items: center;
  gap: 16rem;
  position: relative;
}

#linaza-gel .lg-left {
  flex-shrink: 0;
}

#linaza-gel .lg-image-wrapper {
  position: relative;
  width: 600px;
  height: 500px;
}

#linaza-gel .lg-elipse {
  position: absolute;
  top: 110px;
  left: calc(-310px + 10vw);
  width: 290px;
  height: auto;
  z-index: 1;
}

#linaza-gel .lg-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: auto;
  z-index: 2;
  border-radius: 63px;
}

#linaza-gel .lg-right {
  flex: 1;
  margin-left: -6.5rem;
}

#linaza-gel .lg-title {
  font-family: var(--font-Ubuntu);
  font-size: 6rem;
  font-weight: 700;
  color: var(--color-a30);
  margin-bottom: 3rem;
  line-height: 1;
  letter-spacing: -1px;
}

#linaza-gel .lg-size {
  font-family: var(--font-Ubuntu);
  font-size: 2.75rem;
  font-weight: 400;
  color: #6c6c6c;
  letter-spacing: -1px;
}

#linaza-gel .lg-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

#linaza-gel .lg-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

#linaza-gel .lg-feature:last-child {
  margin-bottom: 0;
}

#linaza-gel .lg-check {
  width: 21px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

#linaza-gel .lg-feature span {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #616161;
  line-height: 1.1;
}

#linaza-gel .lg-elipse-bottom {
  position: absolute;
  bottom: -170px;
  right: 0;
  width: 192px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#argan-oil {
  padding: 8rem 0;
  background: #01443d;
  position: relative;
  overflow: hidden;
}

#argan-oil .container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2rem;
}

#argan-oil .ao-content {
  display: flex;
  align-items: center;
  gap: 16rem;
  position: relative;
}

#argan-oil .ao-left {
  flex: 1;
  margin-right: -6.5rem;
}

#argan-oil .ao-title {
  font-family: var(--font-Ubuntu);
  font-size: 6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1;
  letter-spacing: -1px;
}

#argan-oil .ao-size {
  font-family: var(--font-Ubuntu);
  font-size: 2.75rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -1px;
}

#argan-oil .ao-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

#argan-oil .ao-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

#argan-oil .ao-feature:last-child {
  margin-bottom: 0;
}

#argan-oil .ao-check {
  width: 21px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

#argan-oil .ao-feature span {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}

#argan-oil .ao-feature span.ao-special {
  line-height: 1.8;
}

#argan-oil .ao-right {
  flex-shrink: 0;
}

#argan-oil .ao-image-wrapper {
  position: relative;
  width: 550px;
  height: 550px;
  background-color: transparent;
  border-radius: 50px;
}

#argan-oil .ao-elipse {
  position: absolute;
  top: 300px;
  left: calc(-310px + 10vw);
  width: 290px;
  height: auto;
  z-index: 1;
}

#argan-oil .ao-elipse-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: auto;
  z-index: 1;
}

#argan-oil .ao-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: auto;
  z-index: 2;
}

#argan-oil .ao-elipse-right {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 65px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#tea-tree-gel {
  padding: 18rem 0;
  background-color: #01443d;
  position: relative;
  overflow: hidden;
}

#tea-tree-gel .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

#tea-tree-gel .ttg-content {
  display: flex;
  align-items: center;
  gap: 8rem;
  position: relative;
}

#tea-tree-gel .ttg-left {
  flex-shrink: 0;
}

#tea-tree-gel .ttg-image-wrapper {
  position: relative;
  width: 600px;
  height: 500px;
}

#tea-tree-gel .ttg-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: auto;
  z-index: 2;
}

#tea-tree-gel .ttg-right {
  flex: 1;
}

#tea-tree-gel .ttg-title {
  font-family: var(--font-Ubuntu);
  font-size: 5.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1;
  letter-spacing: -2px;
}

#tea-tree-gel .ttg-size {
  font-family: var(--font-Ubuntu);
  font-size: 2.8rem;
  font-weight: 400;
  color: #00463e;
  letter-spacing: -1px;
}

#tea-tree-gel .ttg-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

#tea-tree-gel .ttg-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

#tea-tree-gel .ttg-feature:last-child {
  margin-bottom: 0;
}

#tea-tree-gel .ttg-check {
  width: 21px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

#tea-tree-gel .ttg-feature span {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}

#tea-tree-gel .ttg-elipse-left {
  position: absolute;
  top: 70%;
  left: 0;
  transform: translateY(-50%);
  width: 100px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#tea-tree-gel .ttg-elipse-top-right {
  position: absolute;
  top: -120px;
  right: 100px;
  width: 290px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#himalaya {
  padding: 8rem 0;
  background: #01443d;
  position: relative;
  overflow: hidden;
}

#himalaya .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

#himalaya .hm-content {
  display: flex;
  align-items: center;
  gap: 16rem;
  position: relative;
}

#himalaya .hm-left {
  flex: 1;
  margin-right: -6.5rem;
}

#himalaya .hm-title {
  font-family: var(--font-Ubuntu);
  font-size: 6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 3rem;
  line-height: 1;
  letter-spacing: -1px;
}

#himalaya .hm-size {
  font-family: var(--font-Ubuntu);
  font-size: 2.75rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: -1px;
}

#himalaya .hm-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

#himalaya .hm-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

#himalaya .hm-feature:last-child {
  margin-bottom: 0;
}

#himalaya .hm-check {
  width: 21px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

#himalaya .hm-feature span {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.1;
}

#himalaya .hm-text {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

#himalaya .hm-right {
  flex-shrink: 0;
}

#himalaya .hm-image-wrapper {
  position: relative;
  width: 550px;
  height: 550px;
  background-color: transparent;
  border-radius: 50px;
}

#himalaya .hm-elipse {
  position: absolute;
  top: 88%;
  left: 95%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: auto;
  z-index: 1;
}

#himalaya .hm-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: auto;
  z-index: 2;
}

#himalaya .hm-elipse-left {
  position: absolute;
  top: 33%;
  left: 0;
  transform: translateY(-50%);
  width: 150px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#shampoo-barra,
#locion-tea-tree {
  padding: 18rem 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
}

#shampoo-barra .container,
#locion-tea-tree .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

#shampoo-barra .ltt-content,
#locion-tea-tree .ltt-content {
  display: flex;
  align-items: center;
  gap: 16rem;
  position: relative;
}

#shampoo-barra .ltt-left,
#locion-tea-tree .ltt-left {
  flex-shrink: 0;
}

#shampoo-barra .ltt-image-wrapper,
#locion-tea-tree .ltt-image-wrapper {
  position: relative;
  width: 600px;
  height: 500px;
}

#shampoo-barra .ltt-elipse {
  position: absolute;
  top: 3%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 290px;
  height: auto;
  z-index: 1;
}

#locion-tea-tree .ltt-elipse {
  position: absolute;
  top: 76%;
  left: 8%;
  transform: translate(-50%, -50%);
  width: 290px;
  height: auto;
  z-index: 1;
}

#shampoo-barra .ltt-product,
#locion-tea-tree .ltt-product {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: auto;
  z-index: 2;
}

#shampoo-barra .ltt-product {
  border-radius: 63px;
}

#shampoo-barra .ltt-right,
#locion-tea-tree .ltt-right {
  flex: 1;
  margin-left: -6.5rem;
}

#shampoo-barra .ltt-title,
#locion-tea-tree .ltt-title {
  font-family: var(--font-Ubuntu);
  font-size: 5.8rem;
  font-weight: 700;
  color: #005929;
  margin-bottom: 3rem;
  line-height: 1;
  letter-spacing: -2px;
}

#shampoo-barra .ltt-size,
#locion-tea-tree .ltt-size {
  font-family: var(--font-Ubuntu);
  font-size: 2.75rem;
  font-weight: 400;
  color: #6c6c6c;
  letter-spacing: -1px;
}

#shampoo-barra .ltt-features,
#locion-tea-tree .ltt-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

#shampoo-barra .ltt-feature,
#locion-tea-tree .ltt-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

#shampoo-barra .ltt-feature:last-child,
#locion-tea-tree .ltt-feature:last-child {
  margin-bottom: 0;
}

#shampoo-barra .ltt-check,
#locion-tea-tree .ltt-check {
  width: 21px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

#shampoo-barra .ltt-feature span,
#locion-tea-tree .ltt-feature span {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #616161;
  line-height: 1.1;
}

#shampoo-barra .ltt-elipse-right {
  position: absolute;
  top: 76%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

#locion-tea-tree .ltt-elipse-right {
  position: absolute;
  top: 23%;
  right: 0;
  transform: translateY(-50%);
  width: 120px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}

/*tienda*/

#textTienda1 {
  padding: 8rem 0;
  background-color: #ffffff;
}

#textTienda1 .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 2rem;
}

#textTienda1 .tienda-titulo {
  font-family: var(--font-Montserrat);
  font-size: 7.3rem;
  font-weight: 900;
  color: #616161;
  text-align: center;
  margin-bottom: 8rem;
  letter-spacing: -2px;
}

#textTienda1 .tienda-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  justify-items: center;
  max-width: 100%;
}

#textTienda1 .tienda-producto {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#textTienda1 .producto-link {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#textTienda1 .producto-imagen {
  position: relative;
  width: 375px;
  height: 310px;
  margin-bottom: 0.3rem;
  overflow: hidden;
  border-radius: 38px 38px 0 0;
}

#textTienda1 .producto-imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#textTienda1 .producto-comprar {
  position: absolute;
  bottom: 2px;
  right: 2px;
  transition: transform 0.3s ease;
}

#textTienda1 .producto-comprar img {
  width: auto;
  height: auto;
  display: block;
}

#textTienda1 .producto-info {
  background-color: #4a4a4a;
  padding: 2rem 1.5rem;
  border-radius: 0 0 38px 38px;
  text-align: center;
}

#textTienda1 .producto-nombre {
  font-family: var(--font-Poppins);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

#textTienda1 .producto-peso {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

#ventasMayoreo {
  background-image: url("../img/tienda/background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 10rem 0;
}

#ventasMayoreo .container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

#ventasMayoreo .mayoreo-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

#ventasMayoreo .mayoreo-texto {
  font-family: var(--font-Montserrat);
  font-size: 4.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: -3px;
}

#ventasMayoreo .mayoreo-btn {
  display: inline-block;
  transition: transform 0.3s ease;
}

#ventasMayoreo .mayoreo-btn img {
  display: block;
  height: auto;
  width: auto;
}

#textDetalleProductos {
  width: 100%;
  background-color: #ffffff;
  overflow-x: hidden;
}

#textDetalleProductos .barra-superior {
  background-color: #e3f5ec;
  padding: 4rem 0;
  width: 100%;
  position: relative;
}

#textDetalleProductos .container-detalle {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 4rem;
}

#textDetalleProductos .barra-superior .container-detalle {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#textDetalleProductos .titulo-producto h1 {
  font-family: var(--font-Ubuntu);
  font-size: 5rem;
  font-weight: 700;
  color: #065a30;
  margin: 0;
  letter-spacing: -1px;
  text-transform: uppercase;
}

#textDetalleProductos .titulo-producto .peso-text {
  color: #5f5f5f;
  font-weight: 400;
  font-size: 3rem;
  text-transform: lowercase;
}

#textDetalleProductos .btn-regresar {
  position: relative;
}

#textDetalleProductos .btn-regresar::after {
  content: "";
  position: absolute;
  top: 0;
  right: -100rem;
  width: 100rem;
  height: 100%;
  background-color: #aee1d0;
  z-index: 0;
  pointer-events: none;
}

#textDetalleProductos .btn-regresar a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background-color: #aee1d0;
  padding: 2.2rem 2.5rem;
  border-radius: 50px 0 0 50px;
  text-decoration: none;
  font-family: var(--font-Ubuntu);
  font-size: 1.8rem;
  font-weight: 400;
  color: #5d5e5d;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

#textDetalleProductos .btn-regresar a img {
  width: 20px;
  height: auto;
}

#textDetalleProductos .contenido-producto {
  display: flex;
  gap: 8rem;
  padding: 6rem 0;
  align-items: flex-start;
}

#textDetalleProductos .imagen-producto {
  flex-shrink: 0;
  width: 45%;
}

#textDetalleProductos .contenedor-imagen {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#textDetalleProductos .visor-imagen {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

#textDetalleProductos .img-principal {
  width: 100%;
  max-width: 600px;
  height: auto;
  display: block;
  border-radius: 38px;
}

#textDetalleProductos .miniaturas-contenedor {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

#textDetalleProductos .miniatura-item {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
}

#textDetalleProductos .miniatura-item:hover {
  border-color: #238b5a;
}

#textDetalleProductos .img-miniatura {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#textDetalleProductos .info-producto {
  flex: 1;
  display: flex;
  flex-direction: column;
}

#textDetalleProductos .descripcion-producto {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #616161;
  line-height: 2.2;
  margin-bottom: 4rem;
  margin-top: 5rem;
}

#textDetalleProductos .contenedor-boton {
  display: flex;
  justify-content: flex-start;
}

#textDetalleProductos .btn-mercado-libre {
  display: inline-block;
  background-color: #065a30;
  color: #ffffff;
  padding: 1.8rem 5rem;
  border-radius: 30px;
  text-decoration: none;
  font-family: var(--font-Poppins);
  font-size: 2.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
}

#productosRelacionados .titleRecionados1 {
  background-color: #4a6f65;
  padding: 6rem 0;
}

#productosRelacionados .titleRecionados1 .container {
  font-family: var(--font-Montserrat);
  font-size: 4.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: -1px;
}

#productosRelacionados {
  padding: 6rem 0;
  background-color: #ffffff;
}

#productosRelacionados .titleRecionados1 {
  background-color: #4a6f65;
  padding: 3rem 0;
  margin-bottom: 6rem;
}

#productosRelacionados .titleRecionados1 .container {
  font-family: var(--font-Ubuntu);
  font-size: 4.8rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  letter-spacing: -1px;
}

#productosRelacionados .container {
  max-width: 1650px;
  margin: 0 auto;
  padding: 0 2rem;
}

#productosRelacionados .carousel-wrapper {
  overflow: hidden;
  width: 100%;
}

#productosRelacionados .carousel-track {
  display: flex;
  gap: 3rem;
  animation: scroll-infinite 30s linear infinite;
  width: max-content;
}

#productosRelacionados .producto-card {
  flex: 0 0 375px;
  min-width: 375px;
}

#productosRelacionados .producto-link-rel {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#productosRelacionados .producto-imagen-rel {
  position: relative;
  width: 375px;
  height: 310px;
  margin-bottom: 0.3rem;
  overflow: hidden;
  border-radius: 38px 38px 0 0;
}

#productosRelacionados .producto-imagen-rel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#productosRelacionados .producto-comprar-rel {
  position: absolute;
  bottom: 2px;
  right: 2px;
  transition: transform 0.3s ease;
}

#productosRelacionados .producto-comprar-rel img {
  width: auto;
  height: auto;
  display: block;
}

#productosRelacionados .producto-info-rel {
  background-color: #4a4a4a;
  padding: 2rem 1.5rem;
  border-radius: 0 0 38px 38px;
  text-align: center;
}

#productosRelacionados .producto-nombre-rel {
  font-family: var(--font-Poppins);
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
}

#productosRelacionados .producto-peso-rel {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #ffffff;
  margin: 0;
}

@keyframes scroll-infinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-1512px - 12rem));
  }
}

/* Contacto */
#contactoForm {
  padding: 12rem 0 12rem;
  background-color: #ffffff;
}

#contactoForm .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

#contactoForm .contacto-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#contactoForm .contacto-titulo {
  font-family: var(--font-Ubuntu);
  font-size: 6rem;
  font-weight: 700;
  color: #00562d;
  margin: 0 0 2rem 0;
  text-align: center;
  letter-spacing: -1px;
}

#contactoForm .contacto-subtitulo {
  font-family: var(--font-Poppins);
  font-size: 1.6rem;
  font-weight: 400;
  color: #606060;
  text-align: center;
  margin: 0 0 6rem 0;
  max-width: 700px;
}

#contactoForm .contacto-form {
  width: 100%;
  max-width: 1300px;
}

#contactoForm .form-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

#contactoForm .form-group {
  width: 100%;
}

#contactoForm .form-group input {
  width: 100%;
  padding: 2.5rem 2.5rem;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  font-family: var(--font-opensans);
  font-size: 1.4rem;
  font-weight: 400;
  color: #616161;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

#contactoForm .form-group input::placeholder {
  color: #a8a8a8;
}

#contactoForm .form-group input:focus {
  outline: none;
  border-color: #00562d;
}

#contactoForm .form-group-mensaje {
  width: 100%;
  margin-bottom: 3rem;
}

#contactoForm .form-group-mensaje textarea {
  width: 100%;
  padding: 2rem 2.5rem;
  border: 1px solid #d1d1d1;
  border-radius: 12px;
  font-family: var(--font-opensans);
  font-size: 1.4rem;
  font-weight: 400;
  color: #616161;
  background-color: #ffffff;
  resize: vertical;
  min-height: 250px;
  max-height: 300px;
  transition: border-color 0.3s ease;
}

#contactoForm .form-group-mensaje textarea::placeholder {
  color: #a8a8a8;
}

#contactoForm .form-group-mensaje textarea:focus {
  outline: none;
  border-color: #00562d;
}

#contactoForm .form-captcha {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

#contactoForm .form-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

#contactoForm .btn-borrar,
#contactoForm .btn-enviar {
  padding: 1.3rem 3rem;
  border-radius: 30px;
  font-family: var(--font-Arial);
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

#contactoForm .btn-borrar {
  background-color: #008c57;
  color: #ffffff;
}

#contactoForm .btn-borrar:hover {
  background-color: #004524;
}

#contactoForm .btn-enviar {
  background-color: #008c57;
  color: #ffffff;
}

#contactoForm .btn-enviar:hover {
  background-color: #004524;
}

.whatsapp-flotante {
  position: fixed;
  right: 20px;
  bottom: 455px;
  z-index: 1000;
}

.whatsapp-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background-color: transparent;
  padding: 2rem 2.5rem;
}

.whatsapp-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 1.5rem;
}

.whatsapp-text {
  text-align: center;
}

.whatsapp-distribuidor,
.whatsapp-pregunta {
  font-family: var(--font-Montserrat);
  font-size: 2.2rem;
  font-weight: 800;
  color: #3d3d3d;
  margin: 0;
  line-height: 1.3;
}
