
@font-face {
  /**700**/
  font-family: Font-Bold;
  src: url("./fonts/Poppins-Bold.woff");
  font-display: swap; 
}
@font-face {
  /**600**/
  font-family: Font-Semibold;
  src: url("./fonts/Poppins-SemiBold.woff");
  font-display: swap; 
}
@font-face {
  /**500**/
  font-family: Font-Medium;
  src: url("./fonts/Poppins-Medium.woff");
  font-display: swap; 
}
@font-face {
  /**400**/
  font-family: Font-Regular;
  src: url("./fonts/Poppins-Regular.woff");
  font-display: swap; 
}
body {
    font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  animation: fadeIn 1s forwards;
  background: #fff ;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/******nmavbar*****/

.d-none {
  display: none;
}
nav li{
  list-style: none;
  margin: 0;
}
li{
    margin-left: 1rem;
}

/************/
:root {
  --background-navbar: #00000099;
  --background-navbar-movil: #00000099;
  --background-menu-movil: #000000d2;
  --botones-1: #ffb701;
}
#banner, #beneficios, #contact, #productos{
  scroll-margin-top: 100px;
}
.container {
  width: 90%;
  max-width: 1440px;
  margin: auto;
}
a {
  color: inherit;
  text-decoration: none;
  font-family: "Arial, Helvetica, sans-serif";
}
strong{
  font-family: Font-Bold;
}
/*****************/
/* h1 {
  font-family: Font-Bold;
  font-size: 40px;
  line-height: 64px;
  color: #000000;
}

h2 {
  font-family: Font-Light;
  font-weight: 300;
  font-size: 50px;
  line-height: 64px;
  color: #572834;
}
h4 {
  font-family: Font-Medium;
  font-size: 36px;
  line-height: 64px;
  color: #000000;
}
h5 {
  font-family: Font-Bold;
  font-size: 24px;
  line-height: 30px;
  color: #36001a;
}
h6 {
  font-family: Font-Semibold;
  font-size: 22px;
  line-height: 20px;
  color: #36001a;
}

p {
  font-family: Font-Regular;
  line-height: 32px;
  font-size: 20px;
  line-height: 32px;
}

@media (max-width: 1024px) {
  h2 {
    font-size: 36px;
    line-height: 46px;
  }
  h4 {
    font-size: 20px;
    line-height: 30px;
  }
  h5 {
    font-size: 16px;
    line-height: 24px;
  }
  h6 {
    font-size: 12px;
    line-height: 20px;
  }

  p {
    font-size: 18px;
    line-height: 26px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-family: Font-Light;
    font-size: 36px;
    line-height: 44px;
  }
  h4 {
    font-family: Font-Medium;
    font-size: 20px;
    line-height: 30px;
  }
  h5 {
    font-family: Font-Bold;
    font-size: 16px;
    line-height: 24px;
  }
  h6 {
    font-family: Font-Medium;
    font-size: 16px;
    line-height: 20px;
  }

  p {
    font-size: 16px;
    line-height: 24px;
  }
} */

hr,
.hr {
  margin-bottom: 10px;
  margin-top: 10px;
  border-bottom: 1px solid #777777;
  width: 70%;
  margin: 0 auto;
}

.img-fluid{
  width: 100%;
  height: auto;
}

@media (max-width: 991px) {
  hr,
.hr {
  width: 80%;
}
}
@media (max-width: 600px) {
  hr,
.hr {
  width: 92%;
}
}

.container__navbar {
  display: flex;
  justify-content: space-between;
  min-height: 80px;
  align-items: center;
}
/* @media (min-width: 1400px) {
  .container__navbar {
    min-height: 96px;
  }
} */
.navbar {
  background: var(--background-navbar);
    backdrop-filter: blur(24px); 
  -webkit-backdrop-filter: blur(24px); 
  transition: 0.1s linear;
}
@media (min-width: 991px) {
  /* nav {
    border-bottom: 4px solid #e46436;
  } */
  .nav-item {
    display: flex;
  }
}



.navbar__container-ul {
  width: 60%;
}

.navbar__ul {
  margin: 0;
  /* width: 70%; */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4rem;
  padding: 0;
}
.container-icons-navbar{
  display: flex;
  column-gap: 1.5rem;
}


.btn-user {
  position: absolute;
  right: 60px;
  top: 19px;
  display: flex;
}
.stick,
.sticky-top {
  /* position: sticky; */
  position: fixed;
  width: 100%;
  top: 0px;
  z-index: 9999;
}
.nav__active {
  display: inline !important;
  border-bottom: 1px solid var(--black);
}

.logo_movil {
  margin-top: auto;
}

.main-header {
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--background-navbar-movil);
  color: var(--black) !important;
  height: 65px;
  z-index: 100;
  transition: 10s linear;
  backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

 
}
.container-icons-movil{
  display: flex;
  width: 100%;
  justify-content: center;
  column-gap: 1rem;
}

.nav-link {
  font-size: 16px;
  font-family: Font-Regular;
  color: #ffffff;
}

/* .nav-link:hover {
  color: #d3d1d0;
} */
@media (min-width: 1100px) {
  .nav-link {
    font-size: 18px;
  }
}

.menu_open {
  display: block;
}
.close_menu {
  display: none;
}



/**movil**/

.nav-item .container__btn-movil-hablemos {
  display: flex;
  align-items: center;
  width: 20%;
  justify-content: end;
}

.hablemos-nav-movil {
  margin-right: 20px;
  /* position: absolute;
    top: 19px;
    right:61px; */
}
.nav__firts_div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12% 0px 5%;
  background: var( --background-navbar-movil);
  min-height: 64px;
}

@media (max-width: 600px) {
  .nav__firts_div {
    padding: 12px 5% 0px 5%;
  }
}

.large-navbarmovil {
  height: 90vh;
}
.nav_ {
  position: fixed;
  right: 0;
  top: 0;
  width: 324px;
  height: 100vh;
  /* background: var(--background-menu-movil); */
  background: #000000fb;
  transition: 0.8s ease;
  z-index: 1000;
  transform: translateX(100%);
  backdrop-filter: blur(24px); 
  -webkit-backdrop-filter: blur(24px); 

  /* padding-left: 24px;
    padding-right: 24px;    */
}

@media (min-width: 601px) {
  .menu-open-logo {
    visibility: hidden;
  }
}

.header__container-ul-movil {
  padding-top: 0.15rem;
  height: 70%;
}
/* .nav_ a,
.nav_ p,
.nav_ .nav-link {  
    padding-top: 6px ;
    padding-bottom: 6px;  
    margin: 0;
    font-family: Anek;
} */

ul.navigation {
  height: 70%;
  max-height: 658px;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding-top: 2rem;
  /* padding-right:6%; */
}

.navigation li {
  list-style: none !important;
  width: 100%;
  margin: 0.8rem 0;
  text-align: center;
  color: #fffbdb;
}

.navigation a {
  line-height: 18px !important;
  display: inline-block;
}

.navigation .nav-link {
  font-size: 16px;
}

.navigation a:hover,
.nav_ a:hover {
  font-weight: 700;
}
.hr-menu-movil {
  height: 3px;
  background: #e46436;
  border: none;
}

#btn-nav {
  display: none;
}

.hidden {
  visibility: hidden;
  transition: 0.4s ease-in;
}

#btn-nav:checked ~ nav {
  transform: translateX(0);
  visibility: visible;
  display: block;
}

#header {
  overflow: hidden;
}

.btn-nav {
  font-size: 25px;
  /* position: absolute;
    right: 0;
    top: 10px; */
  cursor: pointer;
  /* padding: 0px 15px; */
  /* transition:.2s ease; */
}

.nav-1 {
  transition: 0.1s linear;
}

.nav__footer a:first-child {
  display: flex;
  justify-content: start;
}

nav button {
  font-size: 16px;
}

.text-black-1 {
  color: black;
}

@media (max-width: 600px) {
  .nav_ {
    width: 100%;
  }
  /* .row>*{
        padding-right: 24px;
        padding-left: 24px;
    } */
}



.container_btn_1{
  background: radial-gradient(circle,rgba(53, 53, 53, 1) 0%, rgba(147, 147, 147, 1) 100%);
  padding: 2px;
  display: inline-flex;
  justify-self: center;
  margin-top: 40px;
    /* transition:  15s linear; */
}

.btn_1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666666;
background: linear-gradient(90deg, rgba(102, 102, 102, 1) 0%, rgba(111, 111, 111, 1) 50%, rgba(120, 120, 120, 1) 100%);

  color: #ffffff;
font-size: 20px;
  padding: 10px 26px;

  font-family: Font-Bold;
  transition: background 0.8s ease-in-out;

}
/* .btn_1:hover{
  background: radial-gradient(circle,rgba(53, 53, 53, 1) 0%, rgba(147, 147, 147, 1) 100%);
  transition: .3s linear;
} */

.container_btn_1:hover,  
.container_btn_1:hover .btn_1{
  background: #000000;
  /* transition: 1s ease-in; */
}


/*******end navbar*******/
@media (min-width: 991px) {
  .d-lg-block {
    display: block;
  }
  .d-lg-none {
    display: none;
  }
}

/********************/
.header_container-text{
width: 80%;
max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 80px;
}
  .header_container-text h1{
    font-family: Font-Bold;
  font-size: 40px;
  line-height: 120%;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

  .header_container-text p{
    font-family: Font-Regular;
  font-size: 20px;
  line-height: 155%;
  color: #000000;
  text-align: center;
  max-width: 690px;
}
/*******/
.container_collection-text{
  width: 80%;
max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 0;
}
.container_collection-text h2{ 
  font-family: Font-Regular;
  font-size: 36px;
  line-height: 140%;
  color: #000000;
  text-align: center;
  margin-bottom: 40px;
}

  .container_collection-text p{
    font-family: Font-Regular;
  font-size: 20px;
  line-height: 155%;
  color: #000000;
  text-align: center;
  max-width: 923px;
}
@media (max-width: 991px) {
  .header_container-text h1{ 
  font-size: 28px; 
}
 .header_container-text p, .container_collection-text p { 
  font-size: 16px; 
}
.container_collection-text h2{ 
   font-size: 24px; 
}
}

@media (max-width: 768px) {
  .header_container-text{
padding-bottom: 40px;
 width: 90%;
  }
  .btn_1{
     font-size: 16px; 
  }
  .container_collection-text{
    padding: 40px 0;
    width: 90%;
  }
}
/*****productos******/
#productos{
  padding-bottom: 80px;
}
.container-product{
  display: grid;
  grid-template-columns: 49% 49%;
  justify-content: space-between;
  margin-bottom: 20px;
}
.col-text{
  padding-left: 10%;
  display: flex;
  align-items: center;
}
.col-text-2{
   display: flex;
  align-items: center;  
    padding-right: 10%;
}

.container-product h2{
font-family: Font-Bold;
font-size: 28px;
margin-bottom: 40px;
}
.container-product p{
  font-family: Font-Regular;
  font-size: 16px;
  line-height: 155%;
  margin-bottom: 20px;
}

@media (min-width: 1440px) {
.col-text{
  padding-left: 15%;  
}
.col-text-2{
padding-right: 15%;
}
}
@media (max-width: 1200px) {
.container-product h2{
margin-bottom: 20px;
}
}

@media (max-width: 1024px) {
.container-product h2{
 font-size: 20px;
}
.container-product p{  
  font-size: 14px;
}
.col-text{
  padding-left: 5%;  
}
.col-text-2{
padding-right: 5%;
}
}

@media (max-width: 608px) {
  #productos{
  padding-bottom: 40px;
}
.container-product{
   grid-template-columns:1fr;
}
.container-product h2{
  font-size: 22px;
}
.container-product p{
  font-size: 16px;
}
.col-text{
  padding-left: 0%;
  padding: 30px 0 30px 0;  
}
.col-text-2{
padding-right: 0%;
padding: 30px 0 30px 0;
}
.reverse{
  flex-direction: column-reverse;
  display: flex;
}
}
/*****Beneficios****/
#beneficios{
  background: #000000;
  padding: 80px 0;
}

.beneficios-text h2{
color: #FFFFFF;
font-family: Font-Regular;
font-size: 32px;
line-height: 150%;
text-align: center;
max-width: 658px;
margin: 0 auto;
}
.beneficios-text p, .beneficios-text-2 p{
color: #969696;
font-family: Font-Regular;
font-size: 20px;
line-height: 155%;
text-align: center;
padding: 40px 0 80px 0;
max-width: 690px;
margin: 0 auto;
}

.container-beneficios-img{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 1rem;
}
.card-beneficio p{
  color: #FFFFFF;
 font-family: Font-Regular;
 text-align: center;
}

.card-beneficio .cont-tex{
  padding: 40px 10px;
}

@media (max-width: 1024px) {
  .container-beneficios-img{ 
  grid-template-columns: repeat(2, 1fr);
  row-gap: 60px;
  }
  .beneficios-text h2{
  font-size: 24px;
  max-width: 486px;
  }
}

@media (max-width: 600px) {
  .container-beneficios-img{ 
  grid-template-columns:  1fr;
  row-gap: 40px;
  }
  .card-beneficio .cont-tex{
  padding: 28px 10px;
}
.beneficios-text-2 p{
padding: 80px 0 0px 0;

}
}



/*****contacto******/

        .alert {
  font-size: 14px;
  margin: 0;
  padding: 0;
  margin-bottom: 2.8rem;
  font-family: Font-Regular;
}


.alert.error {
  color: #e74c3c;
  
  margin-bottom: 8px;
}

.alert.success {
  color: #27ae60;
   margin-bottom: 8px;
}

input.error, textarea.error {
  border: 2px solid #e74c3c;
}

input.success, textarea.success {
  border: 2px solid #27ae60;
}
/***/
#contact{
  background: #000000;
}

.container-div-form{
  display: grid;
  grid-template-columns: 40% 60%;
  justify-content: space-around;
  padding: 0rem 0 6rem 0;
}

.containertext-form{
background: #1E1E1E;
background: linear-gradient(90deg, rgba(30, 30, 30, 1) 0%, rgba(15, 15, 15, 1) 100%);
padding: 40px;
display: flex;
flex-direction: column;
/* align-items: center; */
justify-content: center;
}
.containertext-form h2{
  color: #ffffff;
  font-size: 28px;
    font-family: Font-Bold;
}

.containertext-form p{
  color: #ffffff;
  font-size: 20px;
    font-family: Font-Regular;
    margin-top: 24px;

}


.container-form{
  background:#D9D9D9 ;
  padding: 60px 40px;
}

form{
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1rem;
}




input[type="select"]:focus-visible, 
input[type="select"]:focus,
input[type="select"]:active,
input[type="select"]:active,
input[type="select"]:target{
  border:1px solid #572834 !important;
  box-shadow: none !important;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  font-size: 16px;
  font-family: Font-Regular;
  padding: 5px 2px;
  border: none;
  border-bottom: 1px solid #000000;
  color: #000000;
 
  /* margin-bottom: 2.8rem; */
  margin-top: 0.5rem;
  background: transparent;
}
.check{
  display: flex;
  flex-direction: column;
}

label {
  padding: 0;
  color: #000000;
  font-family: Font-Regular;
  font-size: 16px;
}

 input[type="submit"] {
   border: none;
     font-family: Font-Bold;
  font-size: 20px;
  cursor: pointer;
 }

@media (max-width: 1024px) {
  .container-div-form{
  grid-template-columns: 35% 65%;
}
.container-form{
  padding: 60px 16px;
}
.containertext-form{
  padding: 20px;
}
.containertext-form h2{ 
  font-size: 20px;
}

.containertext-form p{
  font-size: 16px;    
  text-align: left;

}
}

@media (max-width: 750px) {
  .container-div-form{
  grid-template-columns: 1fr;
}
.container-form{
  padding: 60px 20px;
}
.containertext-form{
  padding: 60px 20px;
  padding-right: 30%;
}
}

@media (max-width: 600px) {
  form{
  grid-template-columns: 1fr;
}
.container-form{
  padding: 60px 20px;
 
}
.containertext-form{
  padding: 60px 20px;
  padding-right: 20px;}
}


/****footer********/

footer {
  background: #0F0F0F;
background: linear-gradient(0deg,rgba(15, 15, 15, 1) 0%, rgba(30, 30, 30, 1) 100%);
  color: #fffcda;
  padding: 40px 0;
  font-family: Font-Regular;
}

.container-footer {
  display: grid;
  grid-template-columns: 15% 273px 20% 18%;
  justify-content: space-between;
  align-items: center;
}


.contactanos,
.siguenos {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* justify-content: flex-start; */
  /* height: 100%; */
  align-self: center;
}
.redes {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  column-gap: 1.2rem;
  
  padding-top: 20px;
}
.redes a {
  transition: 0.5s ease;
}
.redes a:hover {
  scale: 1.2;
  transition: 0.5s ease;
}
.redes img {
  height: 35px;
}
footer p, footer a {
  font-size: 14px;
  line-height: 20px;
  color:#ffffff;
   font-family: Font-Regular;
}

footer .gryemoon {
  font-family: Font-Bold;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
  text-decoration: underline;
  color:#ffffff;

}

footer .title {
  font-size: 20px;
  font-family: Font-Semibold;
  padding-bottom: 20px;
}

.descubre-mas{
  display: flex;
  flex-direction: column;
}
footer .aviso-privacidad {
  /* font-size: 16px; */
  /*padding-top: 2rem;*/
}

.aviso-privacidad-movil {
  display: none;
}
.logo-footer {
  max-width: 200px;
}

/* @media (max-width: 1230px) {
  footer .title {
    font-size: 18px;
    line-height: 28px;
  }
  footer a,
  footer p {
    font-size: 10px;
    line-height: 14px;
  }
  footer .aviso-privacidad {
    font-size: 10px;
  }
} */

@media (max-width: 1024px) {
  footer .title {
    font-size: 15px;
    line-height: 28px;
  }
   footer a,
  footer p,
  a.gryemoon {
     font-size: 10px;
    line-height: 14px;
  
  }
  footer .aviso-privacidad {
    font-size: 10px;
  }
}

@media (max-width: 991px) {
  /*    footer a{   */
  /*    font-size: 10px;*/
  /*    line-height: 16px;*/

  /*}*/
  /*footer p{*/
  /*    font-size: 10px;*/
  /*    line-height: 15px;*/
  /*}*/
  /*footer .title{*/
  /*    font-size: 12px;  */
  /*   padding-bottom: 15px;*/
  /*    margin-top: 20px;*/
  /*}*/
  /*footer .aviso-privacidad{*/
  /*    font-size: 8px;*/
  /*}*/

  .redes img {
    height: 20px;
  }
}

@media (max-width: 768px) {
  .container-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 1.7rem;
  }
  .logo-footer {
    max-width: 125px;
    margin-bottom: 0px;
  }
.redes img{
  height: 30px;
}
  .contactanos,
  .siguenos {
    justify-content: center;
    align-self: center;
  }
  /* .aviso-privacidad {
    display: none;
  }
  .aviso-privacidad-movil {
    display: block;
    font-family: Font-Regular;
  } */
  footer {
    padding: 3rem 0 2rem 0;
  }
  .aviso-privacidad,
  footer a, 
  footer p {
    font-size: 14px !important;
    line-height: 20px;
    text-align: center;
  }
  footer .title {
    font-size: 20px;
    padding-bottom: 15px;
    margin-top: 30px;
  }
  footer .aviso-privacidad-movil a {
    font-size: 12px;
  }
  .redes{
    justify-content: center;
  }
}

/*****Modal pop up******/
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Contenedor del modal */
.modal {
  width: 90%;
  max-width: 1200px;
  height: 90%;
  max-height: 1200px;
  background: #fff;
  padding: 1rem 20px 4rem 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
  position: relative;
}

/* Boton de cerrar */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 40px;
  cursor: pointer;
  color: #333;
}

.modal h2 {
  padding: 4rem 0;
  color: #572834;
}
.modal ul {
  padding: 2rem 0 0 1rem;
}
.modal .subtitle-aviso {
  padding-top: 2rem;
  font-family: Font-Medium;
}
.modal .aviso p {
  color: #572834;
}

/* width */
.modal::-webkit-scrollbar {
  width: 8px;
  border-radius: 20px;
  background: transparent;
}

/* Handle */
.modal::-webkit-scrollbar-thumb {
  background: #e46436;
  border-radius: 10px;
}

/* Handle on hover */
.modal::-webkit-scrollbar-thumb:hover {
  background: #ccc;
}

/*----------------------- SLIDER SECTION -----------------------*/
.slider-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  position: relative;
  height:100%;
}

.slider {
  display: flex;
  will-change: transform;
  transition: transform 0.5s ease-in-out;
  height:100%;
}

/* <- CLAVE: cada slide ocupa EXACTAMENTE el ancho del contenedor */
.slide {
  flex: 0 0 100%;
  width: 100%;
  box-sizing: border-box;
  /* asegura que el width incluya padding/border si los hubiera */
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  font-size: 2rem;
  background-size: cover;
  background-position: center;
  /* padding eliminado de aqu� para no alterar el ancho real */
  padding: 0;
}

/* movemos el padding a un contenedor interno para no romper el ancho del slide */
.banner-container-text {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 5%;
}
.slide1 {
  background-image: url("../imagenes-banner/naturaleza-tradicion-cafe.webp");
}

.slide2 {
  background-image: url("../imagenes-banner/alma-cafe.webp");
}
.slide3 {
  background-image: url("../imagenes-banner/productor-cafe-mexicano.webp");
}
/*Tablet*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .slide1 {
    background-image: url("../imagenes-banner/tablet/empaques-16-91-cafe.webp");
  }
  .slide2 {
    background-image: url("../imagenes-banner/tablet/cafe_16_91_hero_web.webp");
  }
    .slide3 {
        background-image: url("../imagenes-banner/tablet/cafe_16_91_hero_web-2.webp");
    }
  
}

/*Mobile*/
@media screen and (min-width: 0px) and (max-width: 767px) {
  .slide1 {
    background-image: url("../imagenes-banner/mobile/hero1-empaques.webp");
  }
   .slide2 {
    background-image: url("../imagenes-banner/mobile/cafe_16�91_hero_1 1.webp");
  }
    .slide3 {
        background-image: url("../imagenes-banner/mobile/hero3.webp");
    }
}

@media screen and (max-width: 1024px) {
  .slide {
    align-items: center;
    background-position: 50% 40%;
  }

  .banner-container-text {
    padding-bottom: 15%;
  }
}
@media screen and (max-width: 700px) {
  .slide3 {
    padding: 1rem;
  }


}
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 2.8rem;
  color: #FFFCDA;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

@media (max-width: 600px) {
  .prev,
  .next {
    top: 42%;
   
  }
  /* .prev {
  left: 0px;
}
.next {
  right: 0px;
} */
}

.indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.indicator {
  width: 30px;
  height: 4px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s;
}

.indicator.active {
  background: #FFFCDA;
}



.banner-subtitle {
  max-width: 27rem;
  margin-top: 1.5rem;
}

.fade-text {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
/*----------------------- SLIDER SECTION -----------------------*/


/*Privacidad*/
.img-privacidad{
  display: block;
  width: 100%;
}