* {
  color: #fff;
  font-family:
    "SF Pro Display",
    "SF Pro Text",
    -apple-system,
    BlinkMacSystemFont,
    "Helvetica Neue",
    Helvetica,
    Arial,
    sans-serif;
  list-style: none;
  text-decoration: none;

}
html {
  scroll-behavior: smooth;
 
}
body {
  background-color: #000;
  overflow-x: hidden;
}
header {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  width: 100%;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  border-bottom: 1px solid rgba(105, 105, 105, 0.4);
}
.header-container {
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  margin: 0 auto;
}
.header-brand {
  font-size: 30px;
  font-weight: 600;
}

.header-nav {
  display: flex;
  gap: 20px;
}
.nav-list {
  display: flex;
  gap: 20px;
}
.nav-list li a {
  display: inline-block;
  padding: 8px 0;
  color: inherit;
  text-decoration: none;
}
li {
  cursor: pointer;
  font-size: 15px;
  font-weight: 300;
  position: relative;
  width: fit-content;
  padding-bottom: 5px;
}
li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

li:hover::after {
  transform: scaleX(1);
}
li.active-menu::after {
  transform: scaleX(1);
}

.header-action {
  display: flex;
  gap: 20px;
  align-items: center;
}
.btn {
  background-color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 300;
  color: #000;
}
.btn:hover {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  transition: all 0.5s ease;
}
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.video-wrap {
  inset: 0;
  width: 70%;
  height: 70%;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.video-wrap video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 80px 30px black;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  padding: 30px 50px;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  z-index: 3;
}

.hero-text p {
  font-size: 22px;
  font-weight: 500;
  padding: 0;
  margin: 0;
  align-items: center;
}
.hero-text h1 {
  font-size: 60px;
  font-weight: 600;
  padding: 0;
  margin: 0;
  background: linear-gradient(90deg, #d6f0f0, #86ddf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-cta-block {
  display: flex;
  gap: 20px;
  align-items: center;
  background-color: rgba(59, 59, 59, 0.5);
  border: 1px solid rgba(105, 105, 105, 0.3);
  border-radius: 30px;
  height: 53px;
  padding: 3px 15px;
  animation: badge 0.5s ease forwards;
  animation-delay: 0.7s;
  clip-path: inset(0 0 0 100%);
}
.hero-price {
  font-size: 15px;
  font-weight: 300;
  padding: 0;
  margin: 0;
}

/* badge price animation */

@keyframes badge {
  to {
    clip-path: inset(0 0 0 0);
  }
}
/*section 2*/
.highlights-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 50px;
  background-color: rgb(29, 29, 29);
  overflow: hidden;
 
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  max-width: 1200px;
  min-height: 100px;
}
.head-s2 {
  font-size: 50px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}
.section2-a {
  font-size: 16px;
  cursor: pointer;
  color: #86ddf5;
  transition: all 0.5s ease-in;
}
.section2-a:hover {
  text-decoration: underline;
}
.highlights-slider-viewport {
  width: 100%;
  margin-left: 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  position: relative;
  height: 700px;
}
.highlights-slider {
  width: 100%;
  max-width: 1200px;
  height: 700px;
  display: flex;
  gap: 30px;
  padding: 50px 0px;
  align-items: center;
  transition: transform 0.5s ease;
  will-change: transform;
  cursor: grab;
}

.highlights-slider.dragging {
  cursor: grabbing;
  transition: none;
}
.slide-card {
  background-color: rgb(0, 0, 0);
  flex: 0 0 100%;
  height: 90%;
  padding: 50px;
  border-radius: 30px;
  position: relative;
  display: block;
}
.slide-card1 {
  background-image: url(./img-vid/iphone\ e\ mac.jpg);
  width: 100%;
  height: 90%;
  background-size: cover;
  background-position: center;
}
.slide-card2 {
  background-image: url(./img-vid/slide\ 1.jpg);
  width: 100%;
  height: 90%;
  background-size: cover;
  background-position: center;
}
.slide-card3 {
  background-image: url(./img-vid/slide\ 3.jpg);
  width: 100%;
  height: 90%;
  background-size: cover;
  background-position: center;
}
.slide-text {
  position: absolute;
  top: 50px;
  left: 50px;
}
.slide-title {
  font-size: 35px;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
.slide-description {
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  padding: 0;
}

/* slides navigation*/
.slider-navigation {
  display: flex;
  gap: 30px;
  height: 50px;
  width: 150px;
  background-color: rgba(48, 48, 48, 0.5);
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 190px;
  left: 50%;
  transform: translateX(-50%);
}
.slider-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: white;
}
.is-active {
  width: 30px;
  height: 4px;
  border-radius: 20px;
  background-color: white;
}
.h4-bottom-slider {
  width: 100%;
  max-width: 1200px;
  min-height: 150px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 30px 0px;
}
.h4-bottom-slider h4 {
  font-size: 50px;
  font-weight: 500;
  margin: 0;
  padding: 150px 0px 0px 0px;
}
.features-section {
  --features-height: 100vh;
  background-color: rgb(29, 29, 29);
  width: 100%;
  min-height: var(--features-height);
  padding-bottom: 0;
  overflow: hidden;
  position: relative;
  margin-bottom: 100px;
}
.features-layout {
  display: flex;
  background-color: black;
  position: relative;
  min-height: var(--features-height);
}
.features-sidebar {
  width: 30%;
  padding: 15px;
  z-index: 10;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  min-height: var(--features-height);
  align-content: center;
}
.feature-tab-button {
  padding: 15px 45px;
  border-radius: 30px;
  border: none;
  font-size: 17px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  margin-top: 10px;
  border: 1px solid rgba(105, 105, 105, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.feature-tab-button:hover {
  background-color: rgb(40, 40, 40);
}
.feature-tab-button svg {
  width: 20px;
  height: 20px;
}
.feature-tab-content {
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(12px);
  padding: 0 20px;
  border-radius: 30px;
  margin-top: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale(0);
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    transform 0.3s ease,
    padding 0.3s ease,
    margin-top 0.3s ease;
}
.is-open {
  display: block;
  max-height: 200px;
  opacity: 1;
  transform: scale(1);
  padding: 20px;
  margin-top: 10px;
}

.features-panels {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: var(--features-height);
  overflow: hidden;
}
.feature-panel {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: var(--features-height);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.02);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    visibility 0.6s ease;
  z-index: 1;
}
.feature-panel img {
  width: 100%;
  height: 100%;
  min-height: var(--features-height);
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.8s ease;
}

.active-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: scale(1);
  z-index: 2;
}
.active-panel img {
  transform: scale(1);
}
.reveal-section {
  position: relative;
  width: 100%;
  height: 200vh;
  background: #000;
}

/* camada do vídeo */
.reveal-media-layer {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  z-index: 1;
}

.reveal-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reveal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 2;
}

/* camada do conteúdo por cima do vídeo */
.reveal-content-layer {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

/* sticky do conteúdo */
.reveal-sticky-content {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 24px;
  text-align: center;
  isolation: isolate;
}

/* reabilita interação só onde precisar */
.reveal-sticky-content * {
  pointer-events: auto;
}

.reveal-kicker {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: 500;
  color: #f5f5f7;
  opacity: 0.9;
  z-index: 4;
}

.reveal-heading-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 1100px);
  z-index: 4;
}

.reveal-mask-text {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 600;
  background: linear-gradient(90deg, #d6f0f0, #86ddf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.h2mask {
  position: relative;
  z-index: 1;
  background: none;
  color: rgba(255, 255, 255, 0.084);
  -webkit-text-fill-color: currentColor;
}

.reveal-mask-text-secondary {
  --reveal-progress: 100%;
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, #d6f0f0, #86ddf5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  clip-path: inset(0 var(--reveal-progress) 0 0);
  pointer-events: none;
}

.reveal-final-text {
  max-width: 600px;
  margin-top: 32px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
  z-index: 4;
}

.reveal-final-text p {
  margin: 0;
  color: #f5f5f7dd;
  font-size: 16px;
  line-height: 1.45;
}

.reveal-final-text.text-visible {
  opacity: 1;
  transform: translateY(0);
}
/* entrance animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-text {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-img {
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-img.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-fade.is-visible {
  opacity: 1;
}

.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }

/* mobile style */
.mobile-menu {
  display: none;
  cursor: pointer;
  background-color: rgba(59, 59, 59, 0.5);
  border-radius: 10px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 5px;
  height: 34px;
  width: 34px;
  z-index: 1001;
}
.mobile-menu div {
  background-color: white;
  height: 1px;
  width: 25px;
  transition: all 0.3s ease-in-out;


}
.mobile-menu:hover div {
  background-color: rgb(255, 255, 255, 0.5);
}
/* Animação do X */
.mobile-menu.active div:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.mobile-menu.active div:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active div:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}
