
@font-face {
  font-family: 'Galano Grotesk Bold';
  src: url('/assets/fonts/GalanoGrotesqueAltBold.otf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Galano Grotesk Light';
  src: url('/assets/fonts/GalanoGrotesqueAltLight.otf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Galano Grotesk Regular';
  src: url('/assets/fonts/GalanoGrotesqueAltRegular.otf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Galano Grotesk Medium';
  src: url('/assets/fonts/GalanoGrotesqueAltMedium.otf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'ABC Chanel';
  src: url('/assets/fonts/ABChanel\ Corpo\ Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Helvetica Neue Light ';
  src: url('/assets/fonts/HelveticaNeueCyr-Light.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'New Caneleta UltraLight Cursive ';
  src: url('/assets/fonts/New-Canela-Italic-UL.otf') format('truetype');
  font-weight: 400;
}




/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/






/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {


  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li { list-style: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

a {
  color: inherit;
  text-decoration: none;
}

img { height: auto; }

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
  outline: none;
}

button { cursor: pointer; }

ion-icon { pointer-events: none; }





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/



/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.search-btn .span,
.header .btn { display: none; }

.header {
  position: relative;
  padding-block: 25px;
  background-color: black;;
}
.logo{
  color:white;
  font-family: 'ABC Chanel';
  font-size:17px;
}
.header .container {
  width:80%;
  max-width:1080px;
  margin:0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header .wrapper {
  display: flex;
  gap: 15px;
  flex-direction:row-reverse;
}


.nav-toggle-btn .span {
  background-color:white;
  width: 30px;
  height: 3px;
  transition: var(--transition-1);
  display:none;
}

.nav-toggle-btn .span:not(:last-child) { margin-block-end: 7px; }

.nav-toggle-btn.active .span.two { opacity: 0; }

.nav-toggle-btn.active .span.one { transform: translateY(10px) rotate(45deg); }

.nav-toggle-btn.active .span.three { transform: translateY(-10px) rotate(-45deg); }

.navbar {
  background-color: black;
  color: var(--white);
  position: absolute;
  top: calc(100% - 20px);
  right: 10%;
  min-width: 180px;
  padding: 15px 10px;
  border-radius: var(--radius-16);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-1);
  z-index: 2;
}

.navbar.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.navbar-link {
  text-align: right;
  padding: 5px;
  color:white;
  font-family: 'Galano Grotesk Regular';
}


.btn-header{
  background-color:white;
  color:black;
  padding:8px 20px;
  text-align:center;
  font-family: 'Galano Grotesk Regular';
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for large than 575px screen
 */


 @media (max-width: 550px) {


  /**
   * HEADER
   */

  .header { padding-block: 30px; }


.mvl{
  display:block;
}

}




@media (min-width: 800px) {


  /**
   * HEADER
   */

  .header { padding-block: 30px; }

  .mvl{
    display:none;
  }
}





/**
 * responsive for large than 992px screen
 */

@media (min-width: 1200px) {

 
  /**
   * HEADER
   */

  .nav-toggle-btn { display: none; }

  .search-btn .span,
  .header .btn { display: block; }

  .header .wrapper { gap: 10px; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline: auto 12px;
  }

  .navbar-list {
    display: flex;
    gap: 8px;
  }

  .mvl{
    display:none;
  }
  .logo{font-size:22px;}
  .navbar-link{
    color:white;
   }
  
   .header .wrapper {
    display: flex;
    flex-direction: column;
    width: auto;
    margin: 0;
   }
  
   .logo{font-size:22px;}

}



  
  




/*-----------------------------------*\
  #RESPONSIVE SITE
\*-----------------------------------*/

  @media (min-width: 600px) and (max-width: 800px) {
    .cont-logo a {
      font-size: 22px;
      line-height: 0.9;
      font-weight: 400;
      font-family: 'ABC Chanel';
      letter-spacing: 0px;
      color: white;
      text-align: center; 
    }

    
  }  

  @media (min-width: 300px) and (max-width: 599px) {
    .cont-logo a {
      font-size: 20px;
      line-height: 0.9;
      font-weight: 400;
      font-family: 'ABC Chanel';
      letter-spacing: 0px;
      color: white;
      text-align: left;
    }
    .container-header{
display:flex;
flex-direction:column;
gap:20px;
    }
    .nav-list {
      justify-content:center;
    }

  }  
 
 





/*-----------------------------------*\
  #MAIN PAGE
\*-----------------------------------*/
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* Mantén el desplazamiento horizontal oculto si es necesario */
}

html {
  overflow-y: scroll; /* Permite el desplazamiento vertical */
}

/* Resto de tu código CSS */


.content-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.content-main h1 {

  text-align: center;
  background: rgba(255, 255, 255, 0);
  color:white;
  font-family: 'ABC Chanel';
  font-weight: 400;
  letter-spacing: -2px;
  font-size:7vw;
  line-height: 0.9em;
margin-bottom:30px;

}

.content-main h2 {
  max-width: 600px;
  padding: 25px;
  text-align: center;
  background: rgba(255, 255, 255, 0);
  color:white;
  font-family: 'New Caneleta UltraLight Cursive ';
  font-weight: 400;
  letter-spacing: 1px;
  font-size:23px;
  line-height: 1.2em;
margin-bottom:-40px;
margin-inline: auto;
}


.slider-container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.slider {
  display: flex;
  width: 300%;
  transition: transform 0.8s ease-in-out;
  position: absolute;
}

.slide {
  flex: 1;
  height: 100vh;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}


@media (min-width: 600px) and (max-width: 800px) {
  .content-main h1 {
    font-size:45px!important;
    width:90%;
    margin-inline:auto;
  }
  .content-main h2 {
    width:80%;
    font-size:18.5px;

}
}


@media (min-width: 300px) and (max-width: 599px) {
  .content-main h1 {
    font-size:35px!important;
    width:90%;
    margin-inline:auto;
  }
  .content-main h2 {
    width:80%;
    font-size:16.5px;

}
}


.cstng-page{
    backgrounbd-color:white!important;
    position:relative!important;
}


.cstng-page .cont-logo a {
    color:black!important;
}

.cstng-page .nav-link{
    color:black!important;
}




.about {

  background-color: #151515;
  overflow: auto; /* Asegura que haya scroll si el contenido es más largo */
  padding-block:6em 0em;
}

.about h4 {
  text-align:center;
  font-family: 'ABC Chanel';
  font-size:4.5em;
  color:white;
  line-height: 1em;
  margin-block:1em 0.2em; 
}

.container-about{
  margin:0 auto;
  width:80%;
  max-width:1080px;
  display:grid;
  grid-template-columns:1.5fr 1fr;
  gap:10%;
}

.f-col-about h2{
  font-family: 'ABC Chanel';
  font-size:4.5em;
  font-weight:400;
line-height: 1em;
margin-block:0.2em 0.5em;
color:white;
}

.s-col-about img{

width:100%;
height:auto;
}

.f-col-about h3{
  font-size:25px;
  font-family: 'New Caneleta UltraLight Cursive ';
  font-weight: 400;
  max-width:520px;
  margin-bottom:15px;
  color:white;
}


.s-contain-about{
  margin-inline:auto;
  width:80%;
  max-width:1080px;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  place-items:center;
  gap:7%;
  margin-block:3em;

}

.s-contain-about img{
  width:100%;
  height:auto;

}


@media (min-width: 870px) and (max-width: 1230px) {
  .about{
    height:auto;
    padding-block:5em 2.5em;
  }
  .container-about {
    gap:5%;
    grid-template-columns: 1.2fr 1fr;
    width:90%;
  }
  .f-col-about h2 {
font-size:3.5em;
  }

  .f-col-about h3 {
    font-size:22px;
}
.s-contain-about {
  gap:5%;
}
.about h4 {
font-size: 3.5em;
}
}


@media (min-width: 750px) and (max-width: 869px) {
  .about{
    height:auto;
    padding-block:5em 2.5em;
  }
  .container-about {
    gap:4%;
    grid-template-columns: 1.2fr 1fr;
    width:90%;
  }
  .f-col-about h2 {
font-size:3em;
  }

  .f-col-about h3 {
    font-size:18px;
}
.s-contain-about {
  gap:3%;
}
.about h4 {
  font-size: 3em;
  }

}


@media (min-width: 300px) and (max-width: 749px) {
  .about{
    height:auto;
    padding-block:4em 1.5em;
  }
  .container-about {
    gap:4%;
display:flex;
flex-direction:column-reverse;
    width:80%;
  }
  .f-col-about h2 {
font-size:2.5em;
text-align:center;
  }

  .f-col-about h3 {
    font-size:17px;
    text-align:justify;
    max-width:100%;
}
.s-contain-about {
  gap:5%;
  grid-template-columns: repeat(2,1fr);
  width:70%;
}
.about h4 {
  font-size: 2.5em;
  }

}


#headerhm{
    background-color:transparent;
    position:absolute;
    z-index:5;
        width: 100%;
}







.magazine{
    padding-block:3.5em;
    background:white;
}

.wrapper{
    display:grid;
    width:1080px;
    max-width:80%;
    margin-inline:auto;
    grid-template-columns: 0.7fr 1.5fr;
    gap:4rem;
}

.column-sidebar {
  position: sticky;
  position: -webkit-sticky;
  top: 0; /* required */
    
}


.tl-sbl{
    background-color:#F1F1F1;
    padding-block: 15px;
     padding-inline:30px;

     
}

.tl-sbl h1{
   font-family: 'Galano Grotesk Bold';
   font-weight:400;
   font-size:25px;
   line-height:1.1em;
   text-align:center;

}

.tl-sbl h2{
    font-family: 'Galano Grotesk Regular';
   font-weight:400;
   font-size:16px;
   line-height:1.4em;
   margin-top:6px;
}

.s-col-brd{
    padding-inline:30px;
    border:1.5px solid #e1e1e1;
    padding-block:20px;
}


.descriptition-row{
    display:flex;
    align-items:center;
     padding-block: 0px 15px;
     padding-inline:0px;  
     gap:5px;
     margin-left:-5px;
}

.descriptition-row h3{
   font-family: 'Galano Grotesk Bold';
   font-weight:400;
   font-size:18px;
   line-height:1.1em;
   margin-bottom:5px;
   margin-top:18px;

}
.descriptition-row img{
    width:40px;
    height:auto;
    margin-top:-30px;
}

.details-row img{
    width:30px;
    height:auto;   
}

.details-row{
      padding-block: 0px 20px;
}


.descriptition-row p{
    font-family: 'Galano Grotesk Regular';
   font-weight:400;
   font-size:16px;
   line-height:1.2em;
   margin-bottom:15px;
}

.details-row h5{
       font-family: 'Galano Grotesk Bold';
   font-weight:400;
   font-size:18px;
   line-height:1.1em;
   margin-bottom:15px;
       display: flex;
    align-items:center;
    gap:6px;
}

.details-row p {
    font-family: 'Galano Grotesk Regular';
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4em;
    margin-block: 5px 15px;
}




.main-content h4{
       font-family: 'Galano Grotesk Bold';
   font-weight:400;
   font-size:27px;
   line-height:1.1em;
   margin-bottom:10px;
        display: flex;
    align-items:center;
    gap:15px;
}

.main-content h5{
       font-family: 'Galano Grotesk Bold';
   font-weight:400;
   font-size:21px;
   line-height:1.1em;
   margin-block:25px 15px;
       display: flex;
    align-items:center;
    gap:15px;
}

.main-content p{
    font-family: 'Galano Grotesk Regular';
   font-weight:400;
   font-size:16px;
   line-height:1.4em;
margin-block: 10px;
}

.main-content img{
    width:27px;
    height:auto;
}

.grid-gallery{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:10px;
    margin-block:0px 30px;
    
}

.grid-gallery img{
    width:100%;
    height:auto;
}



.main-content a{
    font-family: 'Galano Grotesk Regular';
   font-weight:400;
   font-size:16px;
   line-height:1.4em;
margin-block: 6px;
text-decoration:underline;
}

.main-content span{
    font-family: 'Galano Grotesk Bold';
   font-weight:400;
   font-size:18px;
   line-height:1.4em;

}


@media (min-width: 100px) and (max-width: 1100px) {
.wrapper{
    display:flex;
    flex-direction:column;
}
}



.terms{
    padding-block:2rem 4rem;
}

.terms .container{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}


.container h1{
      font-family: 'Galano Grotesk Medium';
    font-weight:400;   
    font-size:33px;
    text-align:center;
}

.container p{      
    font-family: 'Galano Grotesk regular';
    font-weight:400;   
    font-size:17.5px;
    text-align:justify;
    margin-block:10px 12px;
    line-height:1.5;
}

.container h2{
      font-family: 'Galano Grotesk Bold';
    font-weight:400;   
    font-size:21px;
    text-align:center;
    margin-block:30px 5px;
}

.container h3{
      font-family: 'Galano Grotesk Bold';
    font-weight:400;   
    font-size:19px;
    text-align:center;
    margin-block:15px -12px;
    text-align:left;
}







.footer{
    background-color:black;
    padding-block:25px 20px;
}

.cont-footer{
    margin-inline:auto;
    width:80%;
    max-width:1080px;
    display:grid;
    grid-template-columns: 1.4fr 1.4fr 1fr;
    padding-block:15px;
        align-items: start;

}

.cont-footer a{
    color:white;  
    font-family: 'Galano Grotesk Regular';
    font-weight:400;
    font-size: 16px;
    margin-block:10px;
    
}

.cont-footer h2{
        color: #fff;
    font-weight: 400;
    font-size: 17px;
    font-family: 'Galano Grotesk Bold';
    margin-bottom:10px;
}

.cont-footer .fp-logo{
    font-family: 'ABC Chanel';  
        font-weight: 400;
    font-size: 23px;
        text-align:right;
        color:white;
        margin-top:0px;
}

.cont-footer .sp-logo{
    font-family: 'ABC Chanel';  
        font-weight: 400;
    font-size: 18.5px;
    letter-spacing: -1px;
        text-align:right;
                margin-bottom:10px;
                color:white;
}

.cont-footer .copiright{
     color:white;  
    font-family: 'Galano Grotesk Medium';
    font-weight:400; 

    text-align:right;
        font-size: 14.5px;

}
.cont-cp{
        display:flex;
    flex-direction:column;
    justify-content:flex-end;
}





@media (min-width: 700px) and (max-width: 1100px) {
.cont-footer{
    grid-template-columns: repeat(3, 1fr);
    width:90%;
}
    
}

@media only screen and (max-width: 699px) {
  .cont-footer {
    grid-template-columns: repeat(1, 1fr);
    text-align:center;
    gap:30px;
  }
  .cont-footer .copiright{
    text-align:center;
}

.cont-footer .fp-logo{
    text-align:center;
}
.cont-footer .sp-logo {
    text-align:center;
}
    
}