html, body{
  margin:0;
  font-family:'Open Sans', sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  color:#1a1a1a;
  overflow-x: hidden;
}

/* CONTAINER */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:60px 20px;
  text-align:center;
}

/* HERO */
h1{
  font-size:48px;
  font-weight:600;
  margin-bottom:20px;
  line-height:1.1;
  letter-spacing:-1px;
}

.hero-p{
  font-size:20px;
  color:#555;
  max-width:700px;
  margin:0 auto 30px;
}

/* BOTÕES */
@media(max-width:600px){
  .buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:16px;
  }

  .btn{
    width:100%;
    max-width:320px;
  }
}

.btn{
  padding:16px 32px;
  border-radius:40px;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  border:none;
  transition:.3s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.primary{
  background:linear-gradient(90deg,#9F38A1,#629BEE);
  color:white;
}

.secondary{
  background:#f3f3f3;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* STATUS */
.status{
  margin-top:20px;
  color:#888;
  font-size:14px;
}

/* CARDS BENEFÍCIOS */
.why{
  margin-top:120px;
  display:flex;
  gap:40px;
  text-align:left;
}

.card{
  flex:1;
  padding:30px;
  border-radius:24px;
  background:rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border:1px solid rgba(0,0,0,0.05);
  transition:.3s;
}

.card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* COMO FUNCIONA */
.section-title{
  font-size:32px;
  margin-bottom:10px;
}

.section-sub{
  color:#666;
  max-width:600px;
  margin:0 auto 40px;
}

/* CARROSSEL */
.app-screens-section{
  margin-top:120px;
  position:relative;
}

.carousel-viewport{
  overflow:hidden;
  touch-action: pan-y;
}

.carousel-container{
  display:flex;
  transition:transform .4s ease;
  user-select:none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.app-card{
  min-width:280px;
  max-width:300px;
  margin:0 10px;
  background:#ffffff;
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  flex-shrink:0;
  transition:.3s;
}

.app-card:hover{
  transform:translateY(-8px) scale(1.02);
  box-shadow:0 20px 40px rgba(0,0,0,0.12);
}

.app-card img{
  width:100%;
  height:auto;
  object-fit:contain;
  background:#f5f5f5;
  border-radius:20px 20px 0 0;
  transition:.3s;
  pointer-events:none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

.app-card:hover img{
  transform:scale(1.03);
}

.app-card-text{
  padding:20px;
  text-align:left;
}

/* BOTÕES CARROSSEL */
.carousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#ffffff;
  border:none;
  border-radius:50%;
  width:50px;
  height:50px;
  font-size:22px;
  cursor:pointer;
  z-index:20;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  transition:.3s;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
}

.carousel-btn:hover{
  transform:translateY(-50%) scale(1.1);
}

.prev{ left:-30px; }
.next{ right:-30px; }

.carousel-btn:disabled{
  opacity:.3;
  cursor:default;
}

.logo {
  width: 300px;
  max-width: 100%;
  height: auto;
  margin-bottom: 40px;
}

.section-how-it-works {
  margin-top: 140px;
  text-align: center;
}

.why.why-how-it-works {
  margin-top: 40px; /* Overrides the base .why margin-top: 120px */
}

.section-demo {
  max-width: 700px;
  margin: 120px auto 40px;
  text-align: center;
}

.section-cta {
  margin-top: 140px;
  text-align: center;
  padding: 60px 20px;
  background: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.cta-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta-sub {
  color: #666;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-btn {
  margin-bottom: 10px;
}

.cta-note {
  font-size: 13px;
  color: #888;
}

/* RESPONSIVO */
@media(max-width:768px){
  .container {
    padding: 40px 15px;
  }

  h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-p {
    font-size: 18px;
  }

  .section-title {
    font-size: 26px;
  }

  .why {
    flex-direction: column;
    margin-top: 60px;
    gap: 20px;
  }

  .why.why-how-it-works {
    margin-top: 20px;
  }

  .card {
    padding: 20px;
  }

  .section-how-it-works,
  .app-screens-section,
  .section-cta,
  .section-demo {
    margin-top: 80px;
  }

  .cta-title {
    font-size: 24px;
  }

  .carousel-btn {
    display: none;
  }
}
