@import url(./global.css);
@import url(./components/header.css);
@import url(./components/footer.css);

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins', sans-serif;
  background:#f6f6f6;
  color:#222;
  overflow-x:hidden;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

/* CONTAINER */
.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

/* HERO */
.hero{
  position:relative;
  min-height:50vh;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-overlay img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(50%);
}

.hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  padding:20px;
}

.hero-content h1{
  font-family:'Cormorant Garamond', serif;
  font-size:clamp(42px, 8vw, 92px);
  font-weight:300;
  margin-bottom:20px;
}

.hero-content p{
  font-size:clamp(18px, 3vw, 26px);
  font-family:'Cormorant Garamond', serif;
}

/* ABOUT */
.about{
  padding:100px 0;
}

.about-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
}

.about-image img{
  width:100%;
  height:700px;
  object-fit:cover;
  border-radius:4px;
}

.section-subtitle{
  display:inline-block;
  margin-bottom:28px;
  color:#c9aab5;
  font-weight:600;
  letter-spacing:2px;
  font-size:30px;
}

.about-content p{
  margin-bottom:24px;
  line-height:1.9;
  font-size:17px;
  color:#444;
}

/* ========================= */
/* RESPONSIVO */
/* ========================= */

@media (max-width:992px){

  .about-container{
    grid-template-columns:1fr;
    gap:50px;
  }

  .about-image img{
    height:500px;
  }

  .nav-list{
    gap:24px;
  }
}

/* MOBILE */

@media (max-width:768px){

  .menu-toggle{
    display:block;
    z-index:1001;
  }

  .desktop-btn{
    display:none;
  }

  .nav{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    height:100vh;
    background:#fff;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    transition:0.4s;
    box-shadow:-10px 0 20px rgba(0,0,0,0.08);
  }

  .nav.active{
    right:0;
  }

  .nav-list{
    flex-direction:column;
    gap:32px;
  }

  .nav-list a{
    font-size:22px;
  }

  .mobile-btn{
    display:block;
    margin-top:40px;
  }

  .hero{
    min-height:75vh;
  }

  .hero-content{
    padding:0 20px;
  }

  .about{
    padding:70px 0;
  }

  .about-image img{
    height:400px;
  }

  .section-subtitle{
    font-size:24px;
  }

  .about-content p{
    font-size:16px;
    line-height:1.8;
  }
}

/* CELULARES PEQUENOS */

@media (max-width:480px){

  .container{
    padding:0 18px;
  }

  .logo img{
    width:70px;
  }

  .hero{
    min-height:65vh;
  }

  .hero-content h1{
    line-height:1.1;
  }

  .hero-content p{
    margin-top:10px;
  }

  .about-image img{
    height:320px;
  }

  .section-subtitle{
    font-size:20px;
  }

  .btn-outline{
    padding:12px 22px;
    font-size:13px;
  }

  .nav{
    width:85%;
  }
}