/* ================================================= */
/* RESET */
/* ================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#fdfbf8;
  color:#111;
  font-family:'Manrope',sans-serif;
  overflow-x:hidden;
  cursor:none;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}

.container{
  width:min(1400px,90%);
  margin:auto;
}

h1,h2,h3{
  font-family:'Cormorant Garamond',serif;
  font-weight:400;
  line-height:.95;
  letter-spacing:-2px;
}

/* ================================================= */
/* PARTICLES */
/* ================================================= */

#particles-js{
  position:fixed;
  inset:0;
  z-index:-10;
}

/* ================================================= */
/* CURSOR */
/* ================================================= */

.cursor{
  width:18px;
  height:18px;
  border:1px solid rgba(214,176,123,.6);
  border-radius:50%;
  position:fixed;
  pointer-events:none;
  z-index:99999;
  backdrop-filter:blur(5px);
}

/* ================================================= */
/* NAVBAR */
/* ================================================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:2rem 0;
  z-index:1000;
  transition:.4s ease;
}

.nav-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  color:#111;
  font-size:1.2rem;
  font-weight:700;
  letter-spacing:4px;
  text-transform:uppercase;
}

.nav-menu{
  display:flex;
  gap:3rem;
}

.nav-menu a{
  color:#111;
  font-size:.78rem;
  text-transform:uppercase;
  letter-spacing:2px;
  position:relative;
}

.nav-menu a::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-8px;
  width:0%;
  height:1px;
  background:#d6b07b;
  transition:.5s;
}

.nav-menu a:hover::after,
.nav-menu .active::after{
  width:100%;
}

/* ================================================= */
/* MOBILE MENU */
/* ================================================= */

.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
  position:relative;
  z-index:2000;
}

.menu-toggle span{
  width:28px;
  height:1px;
  background:#111;
  transition:.4s ease;
}

.menu-toggle.active span:nth-child(1){
  transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
  opacity:0;
}

.menu-toggle.active span:nth-child(3){
  transform:rotate(-45deg) translate(5px,-5px);
}

/* ================================================= */
/* HERO */
/* ================================================= */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding:10rem 8% 6rem;
  position:relative;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at 50% 25%, rgba(214,176,123,.20), transparent 36%),
  linear-gradient(
    to bottom,
    rgba(253,251,248,.96),
    rgba(253,251,248,1)
  );
  z-index:-3;
}

/*.hero:hover .hero-bg{
  transform:scale(1.12);
  filter:brightness(1.05);
}*/

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  radial-gradient(circle at 50% 25%, rgba(214,176,123,.22), transparent 38%);
  z-index:-2;
}

.hero-content{
  max-width:980px;
}

.mini-title{
  font-size:.7rem;
  letter-spacing:5px;
  text-transform:uppercase;
  color:#c59d67;
}

.hero h1{
  font-size:clamp(4rem,8vw,8rem);
  margin-top:1.5rem;
}

.hero p{
  margin:2rem auto 0;
  max-width:720px;
  line-height:1.9;
  color:#666;
  font-size:1.05rem;
}

.hero-buttons{
  margin-top:2.8rem;
  display:flex;
  justify-content:center;
  gap:1rem;
}

.btn-dark,
.btn-light{
  padding:1rem 2.2rem;
  border:none;
  cursor:pointer;
  font-size:.72rem;
  letter-spacing:2px;
  text-transform:uppercase;
  transition:.5s ease;
  display:inline-block;
}

.btn-dark{
  background:#111;
  color:white;
}

.btn-dark:hover{
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.btn-light{
  background:transparent;
  color:#111;
  border:1px solid rgba(0,0,0,.08);
}

.btn-light:hover{
  background:#111;
  color:white;
}

/* ================================================= */
/* SECTION TITLE */
/* ================================================= */

.section-title{
  margin-bottom:3rem;
}

.section-title h2{
  margin-top:1rem;
  font-size:clamp(3rem,5vw,5rem);
  max-width:800px;
}

/* ================================================= */
/* VIDEO SECTION */
/* ================================================= */

.video-section{
  padding:5rem 0;
}

.video-card{
  position:relative;
  height:620px;
  overflow:hidden;
  border-radius:38px;
  box-shadow:0 40px 100px rgba(0,0,0,.12);
}

.video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
}

.video-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.7), rgba(0,0,0,.08));
  z-index:1;
}

.video-overlay{
  position:absolute;
  left:3rem;
  bottom:3rem;
  max-width:620px;
  color:white;
  z-index:2;
}

.video-overlay span{
  font-size:.7rem;
  letter-spacing:4px;
  text-transform:uppercase;
  color:#e7d6bb;
}

.video-overlay h3{
  margin-top:1rem;
  font-size:clamp(3rem,5vw,5.5rem);
}

.video-overlay p{
  margin-top:1rem;
  color:rgba(255,255,255,.85);
  line-height:1.8;
}

/* ================================================= */
/* STEPS */
/* ================================================= */

.steps{
  padding:4rem 0 6rem;
}

.steps-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1.5rem;
}

.step-card{
  position:relative;
  padding:2.4rem;
  min-height:360px;
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(20px);
  border:1px solid rgba(214,176,123,.14);
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
  transform-style:preserve-3d;
  transition:.8s cubic-bezier(0.22,1,0.36,1);
}

.step-card::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.25), transparent);
  transform:translateX(-140%);
  transition:1.4s ease;
  z-index:1;
}

.step-card:hover{
  transform:perspective(1200px) rotateY(5deg) translateY(-14px);
  border:1px solid rgba(214,176,123,.35);
  background:rgba(255,255,255,.78);
  box-shadow:0 35px 90px rgba(197,157,103,.18);
}

.step-card:hover::before{
  transform:translateX(140%);
}

.step-card span{
  position:relative;
  z-index:2;
  font-size:.75rem;
  letter-spacing:4px;
  color:#c59d67;
}

.step-card i{
  position:relative;
  z-index:2;
  display:block;
  margin-top:2rem;
  font-size:2rem;
  color:#c59d67;
}

.step-card h3{
  position:relative;
  z-index:2;
  margin-top:1.4rem;
  font-size:2.3rem;
}

.step-card p{
  position:relative;
  z-index:2;
  margin-top:1rem;
  color:#666;
  line-height:1.8;
}

/* ================================================= */
/* SHOWCASE */
/* ================================================= */

.showcase{
  padding:7rem 8%;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:5rem;
  align-items:center;
  position:relative;
  overflow:hidden;
}

.showcase::before{
  content:'';
  position:absolute;
  inset:0;
  background:
  linear-gradient(to right, rgba(253,251,248,.96), rgba(253,251,248,.82)),
  url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?q=80&w=1600&auto=format&fit=crop') center/cover;
  z-index:-2;
}

.showcase-content h2{
  margin-top:1rem;
  font-size:clamp(3rem,5vw,5.5rem);
  max-width:650px;
}

.showcase-content p{
  margin:2rem 0;
  max-width:580px;
  line-height:1.9;
  color:#666;
}

.showcase-phone{
  position:relative;
  height:720px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.phone{
  width:330px;
  height:670px;
  background:#111;
  border-radius:42px;
  padding:12px;
  box-shadow:0 40px 100px rgba(0,0,0,.18);
  transform:rotateY(-10deg) rotateX(5deg);
  transition:1s cubic-bezier(0.22,1,0.36,1);
  z-index:2;
}

.phone:hover{
  transform:rotateY(0deg) rotateX(0deg) translateY(-10px);
}

.phone-screen{
  width:100%;
  height:100%;
  overflow:hidden;
  border-radius:32px;
  position:relative;
}

.phone-screen img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:1.5s;
}

.phone:hover img{
  transform:scale(1.06);
}

.phone-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.8), rgba(0,0,0,.1));
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:2rem;
  color:white;
}

.phone-overlay span{
  font-size:.7rem;
  letter-spacing:4px;
  text-transform:uppercase;
}

.phone-overlay h3{
  margin-top:1rem;
  font-size:3rem;
}

.phone-overlay p{
  margin-top:1rem;
  color:white;
  line-height:1.7;
}

.floating-note{
  position:absolute;
  top:90px;
  right:30px;
  width:230px;
  padding:1.5rem;
  background:rgba(255,255,255,.74);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,.5);
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.08);
  transform:rotate(6deg);
  z-index:3;
}

.floating-note span{
  font-size:.68rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#c59d67;
}

.floating-note p{
  margin-top:.8rem;
  color:#555;
  line-height:1.7;
  font-size:.9rem;
}

/* ================================================= */
/* SLIDER */
/* ================================================= */

.slider-section{
  padding:6rem 0;
}

.slider{
  position:relative;
  height:620px;
  border-radius:38px;
  overflow:hidden;
  box-shadow:0 35px 90px rgba(0,0,0,.1);
}

.slide{
  position:absolute;
  inset:0;
  opacity:0;
  pointer-events:none;
  transition:1s ease;
}

.slide.active{
  opacity:1;
  pointer-events:auto;
}

.slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.slide::before{
  content:'';
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.08));
  z-index:1;
}

.slide-content{
  position:absolute;
  left:3rem;
  bottom:3rem;
  max-width:620px;
  color:white;
  z-index:2;
}

.slide-content span{
  font-size:.7rem;
  letter-spacing:4px;
  color:#e7d6bb;
}

.slide-content h3{
  margin-top:1rem;
  font-size:clamp(3rem,5vw,5.5rem);
}

.slide-content p{
  margin-top:1rem;
  line-height:1.8;
  color:rgba(255,255,255,.86);
}

.slider-controls{
  display:flex;
  gap:1rem;
  margin-top:1.5rem;
  justify-content:flex-end;
}

.slider-controls button{
  width:54px;
  height:54px;
  border-radius:50%;
  border:1px solid rgba(214,176,123,.25);
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(20px);
  cursor:pointer;
  transition:.5s ease;
}

.slider-controls button:hover{
  background:#111;
  color:white;
  transform:translateY(-5px);
}

/* ================================================= */
/* TESTIMONIALS */
/* ================================================= */

.testimonials{
  padding:4rem 0 6rem;
}

.testimonials-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
}

.testimonial-card{
  padding:2.5rem;
  background:rgba(255,255,255,.58);
  backdrop-filter:blur(20px);
  border:1px solid rgba(214,176,123,.14);
  border-radius:34px;
  box-shadow:0 10px 30px rgba(0,0,0,.04);
  transition:.8s ease;
}

.testimonial-card:hover{
  transform:translateY(-12px);
  box-shadow:0 35px 90px rgba(197,157,103,.14);
}

.testimonial-card p{
  color:#555;
  line-height:1.9;
  font-size:1rem;
}

.testimonial-card span{
  display:block;
  margin-top:2rem;
  font-size:.72rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#c59d67;
}

/* ================================================= */
/* CTA */
/* ================================================= */

.cta{
  padding:7rem 8%;
  text-align:center;
}

.cta h2{
  font-size:clamp(3rem,6vw,6rem);
  margin:1rem auto 0;
  max-width:900px;
}

.cta p{
  margin:1.5rem auto 2rem;
  max-width:600px;
  line-height:1.9;
  color:#666;
}

/* ================================================= */
/* FOOTER */
/* ================================================= */

footer{
  padding:5rem 8% 3rem;
  text-align:center;
  border-top:1px solid rgba(0,0,0,.05);
}

.footer-logo{
  font-size:3rem;
  font-family:'Cormorant Garamond',serif;
}

footer p{
  margin-top:1rem;
  color:#666;
}

.socials{
  display:flex;
  justify-content:center;
  gap:1rem;
  margin-top:2rem;
}

.socials a{
  width:50px;
  height:50px;
  border-radius:50%;
  border:1px solid rgba(214,176,123,.2);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#111;
  transition:.5s ease;
}

.socials a:hover{
  background:#111;
  color:white;
  transform:translateY(-5px);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.footer-bottom{
  margin-top:3rem;
  padding-top:2rem;
  border-top:1px solid rgba(0,0,0,.05);
  font-size:.75rem;
  letter-spacing:3px;
  text-transform:uppercase;
  color:#777;
}

/* ================================================= */
/* RESPONSIVE */
/* ================================================= */

@media(max-width:1100px){

  body{
    cursor:auto;
  }

  .cursor{
    display:none;
  }

  .nav-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:100%;
    height:100vh;
    background:rgba(253,251,248,.98);
    backdrop-filter:blur(20px);
    flex-direction:column;
    align-items:center;
    justify-content:center;
    transition:.6s cubic-bezier(0.22,1,0.36,1);
  }

  .nav-menu.active{
    right:0;
  }

  .menu-toggle{
    display:flex;
  }

  .steps-grid,
  .demo-grid{
    grid-template-columns:1fr 1fr;
  }

  .showcase{
    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .hero h1{
    font-size:4rem;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn-dark,
  .btn-light{
    width:100%;
  }

  .video-card,
  .slider{
    height:480px;
  }

  .video-overlay,
  .slide-content{
    left:1.5rem;
    right:1.5rem;
    bottom:1.5rem;
  }

  .steps-grid,
  .demo-grid{
    grid-template-columns:1fr;
  }

  .showcase-phone{
    height:auto;
    flex-direction:column;
    gap:2rem;
  }

  .phone{
    width:280px;
    height:560px;
  }

  .floating-note{
    position:relative;
    top:auto;
    right:auto;
    transform:none;
  }

  .slider-controls{
    justify-content:center;
  }

}

/* ================================================= */
/* PORTFOLIO SLIDER */
/* ================================================= */

.portfolio{

padding:4rem 0 6rem;

overflow:hidden;

}

.portfolio-slider{

overflow:hidden;

position:relative;

padding:30px 0;

}

.portfolio-track{

display:flex;

gap:2rem;

width:max-content;

will-change:transform;

}

.portfolio-card{

width:380px;

flex-shrink:0;

background:rgba(255,255,255,.65);

backdrop-filter:blur(20px);

border:1px solid rgba(214,176,123,.15);

border-radius:34px;

overflow:hidden;

box-shadow:
0 10px 30px rgba(0,0,0,.05);

transition:
transform .8s cubic-bezier(0.22,1,0.36,1),
box-shadow .8s ease;

}

.portfolio-card:hover{

transform:
translateY(-12px)
rotateY(4deg);

box-shadow:
0 35px 90px rgba(197,157,103,.15);

}

.portfolio-card img{

height:280px;

object-fit:cover;

transition:1.3s;

}

.portfolio-card:hover img{

transform:scale(1.08);

}

.portfolio-content{

padding:2rem;

}

.portfolio-content span{

font-size:.68rem;

letter-spacing:3px;

text-transform:uppercase;

color:#c59d67;

}

.portfolio-content h3{

margin-top:1rem;

font-size:2.4rem;

}

.portfolio-content p{

margin-top:1rem;

line-height:1.8;

color:#666;

}

.portfolio-content a{

display:inline-block;

margin-top:1.5rem;

padding:1rem 1.8rem;

background:#111;

color:white;

font-size:.7rem;

letter-spacing:2px;

text-transform:uppercase;

transition:.5s;

}

.portfolio-content a:hover{

background:#c59d67;

transform:translateY(-4px);

}

/* MOBILE */

@media(max-width:768px){

.portfolio-card{

width:300px;

}

}

.whatsapp-float{
  position:fixed;
  right:28px;
  bottom:28px;
  width:60px;
  height:60px;
  border-radius:50%;
  background:#25D366;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.8rem;
  text-decoration:none;
  z-index:9999;
  box-shadow:0 20px 50px rgba(37,211,102,.35);
  transition:.5s ease;
}

.whatsapp-float:hover{
  transform:translateY(-8px) scale(1.05);
  box-shadow:0 30px 70px rgba(37,211,102,.45);
}

@media(max-width:768px){
  .whatsapp-float{
    width:54px;
    height:54px;
    right:20px;
    bottom:20px;
    font-size:1.6rem;
  }
}