*{margin:0;padding:0;box-sizing:border-box}
body{font-family:sans-serif;background:#0b0b0b;color:#fff}

.container{width:90%;margin:auto}

.header {
  position: sticky;
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.6);
  z-index: 1000;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* LOGO */
.logo img {
  height: 40px;
}

/* MENU DESKTOP */
.menu {
  display: flex;
  gap: 30px;
  list-style: none;
}

.menu a {
  color: white;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
}

/* LINHA HOVER */
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #00c6ff;
  transition: 0.3s;
}

.menu a:hover {
  color: #00c6ff;
}

.menu a:hover::after {
  width: 100%;
}

/* CTA */
.btn {
  background: linear-gradient(135deg, #0575ee, #00c6ff);
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(16, 151, 151, 0.4);
}

/* MOBILE TOGGLE */
/* BOTÃO HAMBURGUER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ANIMAÇÃO -> vira X */
.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);
}

/* MOSTRAR NO MOBILE */
@media(max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
}

/* ===== MOBILE ===== */
@media(max-width: 768px){

  .menu-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;

    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(15px);

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;

    transition: 0.4s;
  }

  .menu.active {
    right: 0;
  }

  .menu li {
    opacity: 0;
    transform: translateX(50px);
    transition: 0.4s;
  }

  .menu.active li {
    opacity: 1;
    transform: translateX(0);
  }

  /* delay elegante */
  .menu.active li:nth-child(1){transition-delay:0.1s;}
  .menu.active li:nth-child(2){transition-delay:0.2s;}
  .menu.active li:nth-child(3){transition-delay:0.3s;}
  .menu.active li:nth-child(4){transition-delay:0.4s;}
  .menu.active li:nth-child(5){transition-delay:0.5s;}
  .menu.active li:nth-child(6){transition-delay:0.6s;}

  .mobile-cta {
    margin-top: 20px;
  }
}

.btn,
.btn-vermais {
  background: linear-gradient(135deg, #0575ee, #00c6ff);
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover,
.btn-vermais:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,198,255,0.4);
}



.hero{
 height:100vh;
 display:flex;
 justify-content:center;
 align-items:center;
 text-align:center;
 background:#111;
}



.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card{
 background:#111;
 padding:20px;
 transition:.3s;
}

.card:hover{
 transform:scale(1.05);
 box-shadow:0 0 20px #007bff;
}

.footer{
 text-align:center;
 padding:20px;
 background:#000;
 border-top: 1px solid rgba(255,255,255,0.05);
}

/* MOBILE */
@media(max-width:768px){

.menu{
 position:absolute;
 top:60px;
 right:0;
 background:#000;
 flex-direction:column;
 width:150px;
 display:none;
}

.menu.active{
 display:flex;
}

.menu-toggle{
 display:block;
}

.grid{
 grid-template-columns:1fr;
}

}

/* new code */

/* SCROLL SUAVE */
html {
  scroll-behavior: smooth;
}

/* LOGO */
.logo img {
  height: 40px;
  object-fit: contain;
}


/* MENU LINKS */
.menu a {
  position: relative;
  color: white;
  text-decoration: none;
  padding: 5px 0;
  transition: 0.3s;
}

/* HOVER LINHA ANIMADA */
.menu a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #007bff;
  transition: 0.3s;
}

.menu a:hover {
  color: #007bff;
}

.menu a:hover::after {
  width: 100%;
}



/* hero */

/* HERO BASE */
.hero {
  position: relative;
  height: 100vh;
  height: 100dvh; /* CORREÇÃO MOBILE REAL */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

/* VIDEO FULL */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* OVERLAY PREMIUM */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.7)
  );
  z-index: 1;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

/* TEXTO */
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 18px;
  color: #ddd;
  margin-bottom: 25px;
}

/* BOTÕES */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* BOTÃO SECUNDÁRIO */
.btn.secondary {
  background: transparent;
  border: 1px solid #00c6ff;
}

/* ===== MOBILE ===== */
@media(max-width: 768px){

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
    margin: auto;
  }

}

/* sobre */

/* IMAGEM TOPO */
.about-top-image {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.about-top-image img {
  width: 160px;
  max-width: 100%;
  opacity: 0.9;
  transition: 0.3s;
  filter: drop-shadow(0 0 15px rgba(255,255,255,0.15));
}

.about-top-image img:hover {
  transform: scale(1.05);
  opacity: 1;
}


/* LAYOUT CENTRALIZADO */
.about-row {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.about-text {
  max-width: 700px;
  width: 100%;
  text-align: center;
}


/* CARDS */
/* ================= ABOUT CARDS PREMIUM ================= */

.about-highlights{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:30px;
}

.highlight{
  position:relative;

  min-width:220px;
  padding:22px;

  border-radius:20px;

  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);

  overflow:hidden;

  transition:
    transform .4s ease,
    box-shadow .4s ease,
    border .4s ease;
}

/* glow */
.highlight::before{
  content:"";
  position:absolute;
  inset:0;

  background:
    radial-gradient(
      circle at top,
      rgba(0,198,255,.22),
      transparent 70%
    );

  opacity:0;
  transition:.4s;
}

.highlight:hover{
  transform:translateY(-6px);
  border:1px solid rgba(0,198,255,.3);

  box-shadow:
    0 15px 40px rgba(0,198,255,.15);
}

.highlight:hover::before{
  opacity:1;
}

.highlight strong{
  display:block;
  font-size:22px;
  margin-bottom:8px;
  color:#fff;
}

.highlight span{
  color:#b8c0cc;
  font-size:14px;
  line-height:1.5;
}

/* MOBILE */
@media(max-width:768px){

  .about-highlights{
    flex-direction:column;
    align-items:center;
  }

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

}




/* RESPONSIVO */
@media (max-width: 768px) {
  .about-text {
    text-align: center;
    padding: 0 15px;
  }

  .about-highlights {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== about MOBILE ===== */

/* MOBILE - LOGO SOBRE A MARCA */
@media(max-width: 768px){

  .about-text {
    text-align: center;
  }

  .about-logo {
    display: block;
    margin: 0 auto 20px;
    width: 140px;
    opacity: 0.95;
  }

  /* RESPIRO MELHOR */
  .about-text h2 {
    margin-top: 10px;
  }

}

/* ===== MOBILE ===== */
@media(max-width: 768px){

  .about-row,
  .about-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 200px;
  }

  .about-text h2 {
    font-size: 26px;
  }

}

/* nossas linhas */




.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 40px;
}

/* CARROSSEL */
.products {
  padding: 100px 20px;
  background: #0b0b0b;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.section-subtitle {
  color: #aaa;
  margin-bottom: 60px;
}

/* GRID */

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.cards-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD */
/* ================= APPLE + TESLA CARDS ================= */

.cards-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* CARD BASE */
.card-pro {
  position: relative;
  width: 320px;
  border-radius: 24px;
  overflow: hidden;

  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.06),
    rgba(255,255,255,0.02)
  );

  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);

  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* GLOW SUAVE */
.card-pro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(0,198,255,0.25),
    transparent 70%
  );
  opacity: 0;
  transition: 0.5s;
}

/* HOVER */
.card-pro:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 30px 80px rgba(0, 198, 255, 0.25);
}

.card-pro:hover::before {
  opacity: 1;
}

/* IMAGEM */
.card-image {
  overflow: hidden;
  position: relative;
}

.card-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* ZOOM PREMIUM */
.card-pro:hover img {
  transform: scale(1.08);
}

/* CONTEÚDO */
.card-content {
  padding: 25px;
  text-align: left;
}

.card-content h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.card-content p {
  font-size: 0.95rem;
  color: #bbb;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* BOTÃO ESTILO TESLA */
.btn-card {
  position: relative;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;

  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;

  text-decoration: none;
  overflow: hidden;
  transition: 0.4s;
}

/* EFEITO LUZ */
.btn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: 0.5s;
}

/* HOVER BOTÃO */
.btn-card:hover::before {
  left: 100%;
}

.btn-card:hover {
  background: #fff;
  color: #000;
}

/* ================= MOBILE ================= */

/* ================= MOBILE PREMIUM (SWIPE) ================= */
@media (max-width: 768px) {

  .cards-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .cards-grid::-webkit-scrollbar {
    display: none;
  }

  .card-pro {
    min-width: 85%;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .card-image img {
    height: 180px;
  }

  .card-content {
    text-align: center;
  }

}

/* porque escolher a audiophonic */

.why {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1f2a44, #0d111a);
  color: #fff;
  text-align: center;
}

/* TITULO */
.why-title {
  font-size: 42px;
  font-weight: 700;
  background: linear-gradient(90deg, #0575ee, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUB */
.why-subtitle {
  max-width: 600px;
  margin: 15px auto 50px;
  color: #aaa;
  font-size: 16px;
}

/* CAROUSEL */
/* CAROUSEL */
.carousel-why {
  overflow: hidden;
  position: relative;
}

/* TRACK */
.track-why {
  display: flex;
  gap: 20px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;

  padding: 10px 20px; /* espaço lateral pra mostrar o próximo card */
}

/* REMOVE SCROLLBAR */
.track-why::-webkit-scrollbar {
  display: none;
}

/* CARDS */
.card-why {
  flex: 0 0 250px; /* tamanho fixo */
  scroll-snap-align: start;

  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  text-align: left;
  transition: 0.4s;
}

/* ICON */
.card-why .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

/* TITULO CARD */
.card-why h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* TEXTO */
.card-why p {
  font-size: 14px;
  color: #bbb;
}

/* HOVER PREMIUM */
.card-why:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 198, 255, 0.2);
  border: 1px solid rgba(0,198,255,0.3);
}

/* distribuidores */

.distribuidores {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1f2a44, #0d111a);
  color: #fff;
  text-align: center;
}

/* TITULO */
.distribuidores h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

/* SUB */
.subtitle {
  color: #bbb;
  max-width: 600px;
  margin: 0 auto 30px;
}

/* BUSCA */
.search-box {
  margin-bottom: 30px;
}

.search-box input {
  width: 300px;
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  outline: none;
  background: #1a2235;
  color: #fff;
}

/* MAPA */
.mapa img {
  width: 300px;
  margin: 30px auto;
  display: block;
}

/* GRID */
.cards-distribuidores {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

/* CARD */
.card-dist {
  background: #f1f1f1;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  color: #000;
  position: relative;
  padding-bottom: 20px;
  transition: 0.3s;
}

/* TOPO */
.banner {
  height: 90px;
  background: linear-gradient(90deg, #000, #333);
}

/* CONTEUDO */
.content {
  padding: 60px 20px 20px;
}

.content h3 {
  margin: 0;
}

.content span {
  color: #555;
  font-size: 14px;
}

.content p {
  font-size: 13px;
  margin: 10px 0;
}

.location {
  font-size: 13px;
  color: #777;
}

/* HOVER */
.card-dist:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ================= DISTRIBUIDORES PRO ================= */

.filters {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0;
  flex-wrap: wrap;
}

.filters input,
.filters select {
  padding: 12px 20px;
  border-radius: 30px;
  border: none;
  background: #1a2235;
  color: #fff;
  outline: none;
}

/* GRID */
.distributors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.card-dist {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  color: #000;
  position: relative;
  padding-bottom: 20px;
  transition: 0.3s;
}

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

/* TOPO */
.banner {
  height: 90px;
  background: linear-gradient(90deg, #000, #333);
}

/* FOTO */
.profile {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
}

.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTEÚDO */
.content {
  padding: 70px 20px 10px;
}

.content span {
  color: #666;
  font-size: 14px;
}

.content p {
  font-size: 13px;
  margin: 10px 0;
}

.location {
  font-size: 13px;
  color: #777;
}

/* SOCIAL */
.social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px 0;
}

.social a {
  width: 35px;
  height: 35px;
  background: #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

/* BOTÃO */
#btnVerMais {
  margin-top: 30px;
}


/* CONTAINER */
/* CONTAINER */
.carousel-dist {
  overflow: hidden;
  padding: 20px 0;
}

/* TRACK (igual nossas linhas) */
.track-dist {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 10px 20px;
  cursor: grab;
}

/* REMOVE SCROLLBAR */
.track-dist::-webkit-scrollbar {
  display: none;
}

/* CARDS */
.card-dist {
  min-width: 280px;
  flex: 0 0 auto;
}

@media(max-width: 768px){
  .card-dist {
    min-width: 80%;
  }
}


/* TOPO */
.banner {
  height: 90px;
  background: linear-gradient(90deg, #000, #333);
}

/* FOTO (FIXA E MAIOR) */
.profile {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
}

/* IMAGEM AJUSTADA */
.profile img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* NÃO DEFORMA */
}

/* CONTEÚDO */
.content {
  padding: 70px 20px 10px;
}

.content h3 {
  margin: 10px 0 5px;
}

.content span {
  color: #666;
  font-size: 14px;
}

.content p {
  font-size: 13px;
  margin: 10px 0;
}

/* REDES */
.social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 12px 0;
}

/* HOVER ICONES */
.social a:hover {
  background: #00c6ff;
  color: #fff;
  transform: scale(1.1);
}

/* LOCAL */
.location {
  font-size: 13px;
  color: #777;
}

/* REDES */

.social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e6e6e6;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: 0.3s;
}

/* HOVER INDIVIDUAL */
.social a:nth-child(1):hover {
  background: #E1306C; /* Instagram */
  color: #fff;
}

.social a:nth-child(2):hover {
  background: #1877F2; /* Facebook */
  color: #fff;
}

.social a:nth-child(3):hover {
  background: #000; /* X */
  color: #fff;
}

/* Suporte */

.support {
  padding: 80px 20px;
  background: radial-gradient(circle at top, #1f2a44, #0d111a);
  color: #fff;
  text-align: center;
}

/* TITULO */
.support-title {
  font-size: 40px;
  margin-bottom: 50px;
}

/* GRID */
.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* CARD */
.support-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.05);
}

/* IMAGEM */
.support-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* CONTEÚDO */
.support-content {
  padding: 25px;
}

.support-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.support-content p {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 20px;
}

/* BOTÃO */
.support-content .btn-vermais {
  display: inline-block;
  text-decoration: none;
}

/* HOVER */
.support-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 198, 255, 0.2);
  border: 1px solid rgba(0,198,255,0.3);
}

/* RESPONSIVO */
@media (max-width: 900px) {
  .support-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
TESTIMONIAL PREMIUM PRO
========================================= */

.testimonial {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, #1f2a44, #0d111a);
  text-align: center;
  overflow: hidden;
}

.testimonial-title {
  font-size: 48px;
  margin-bottom: 70px;

  background: linear-gradient(90deg, #0575ee, #00c6ff);

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* =========================================
SLIDER
========================================= */

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

/* FADE LATERAL PREMIUM */

.testimonial-slider::before,
.testimonial-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 140px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
}

.testimonial-slider::before {
  left: 0;
  background:
    linear-gradient(to right, #0d111a, transparent);
}

.testimonial-slider::after {
  right: 0;
  background:
    linear-gradient(to left, #0d111a, transparent);
}

/* =========================================
TRACK
========================================= */

.testimonial-track {
  display: flex;
  gap: 30px;

  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;

  padding:
    20px calc(50vw - 180px);
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

/* =========================================
CARD
========================================= */

.testimonial-card {
  position: relative;

  flex: 0 0 360px;

  scroll-snap-align: center;

  padding: 35px;

  border-radius: 28px;

  background:
    rgba(255,255,255,0.06);

  border:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter: blur(18px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.25),
    inset 0 1px 0 rgba(255,255,255,0.06);

  transition:
    transform .5s ease,
    opacity .5s ease,
    box-shadow .5s ease;

  opacity: .35;
  transform: scale(.82);
}

/* ASPAS GIGANTES */

.testimonial-card::before {
  content: "“";

  position: absolute;
  top: -40px;
  left: 20px;

  font-size: 140px;
  line-height: 1;

  color: rgba(255,255,255,0.05);

  font-family: serif;
}

/* CARD ATIVO */

.testimonial-card.active {
  opacity: 1;
  transform: scale(1.08);

  box-shadow:
    0 30px 80px rgba(0,198,255,0.20);
}

/* HOVER */

.testimonial-card:hover {
  transform: translateY(-10px) scale(1.05);
}

/* =========================================
TEXTO
========================================= */

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #e6e6e6;
  margin-bottom: 25px;
}

/* =========================================
RATING
========================================= */

.stars {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;

  border-radius: 30px;

  background:
    rgba(0,198,255,0.10);

  color: #00c6ff;

  font-size: 14px;

  margin-bottom: 25px;
}

/* =========================================
USER
========================================= */

.user {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.user img {
  width: 68px;
  height: 68px;

  border-radius: 50%;

  object-fit: cover;

  margin-bottom: 12px;

  border:
    3px solid rgba(255,255,255,0.12);
}

.user h4 {
  font-size: 18px;
  margin-bottom: 4px;
}

.user span {
  font-size: 13px;
  color: #aaa;
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

  .testimonial {
    padding: 90px 15px;
  }

  .testimonial-title {
    font-size: 34px;
    margin-bottom: 50px;
  }

  .testimonial-track {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-card {
    flex: 0 0 85%;
    transform: scale(.9);
  }

  .testimonial-card.active {
    transform: scale(1);
  }

  .testimonial-slider::before,
  .testimonial-slider::after {
    width: 50px;
  }

}

/* footer */

.footer {
  background: #0d111a;
  color: #fff;
  padding: 80px 20px 30px;
}

/* TOPO */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

/* BRAND */
.footer-brand {
  max-width: 280px;
}

.footer-logo {
  width: 140px;
  margin-bottom: 15px;
}

.footer-brand p {
  color: #aaa;
  font-size: 14px;
  line-height: 1.6;
}

/* LINKS */
.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-links a {
  display: block;
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00c6ff;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  background: #1a2235;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #00c6ff;
  transform: translateY(-3px);
}

/* BASE */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 50px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  color: #777;
}

/* BOTÃO */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, #0575ee, #00c6ff);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: none;
  font-size: 18px;
  transition: 0.3s;
}

#backToTop:hover {
  transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }
}

/* mapa do brasil */

.mapa img {
  transition: transform 0.4s ease;
}

.mapa img:hover {
  transform: scale(1.1);
}

/* FIX GSAP */

.hero-content h1,
.hero-content p,
.hero-buttons .btn {
  opacity: 1;
}

/* ================= ACTIONS ================= */

.dist-actions {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

#btnVerMais {
  display: inline-flex;
}

/* ================= LER MAIS ================= */

.full-text{
  display: none;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition:
    opacity .4s ease,
    max-height .4s ease;
}

.full-text.show{
  display: block;
  opacity: 1;
  max-height: 500px;
}

/* ACTIVE CARD */

.card-why{
  opacity:.5;
  transform:scale(.92);
}

.card-why.active{
  opacity:1;
  transform:scale(1); 

  border:1px solid rgba(0,198,255,.3);

  box-shadow:
    0 20px 50px rgba(0,198,255,.18);
}

/* =========================================
BACK TO TOP FIX
========================================= */

#backToTop {
  position: fixed;
  right: 25px;
  bottom: 25px;

  width: 50px;
  height: 50px;

  border: none;
  border-radius: 50%;

  background: linear-gradient(135deg, #0575ee, #00c6ff);

  color: #fff;
  font-size: 18px;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transform: translateY(20px);

  transition: 0.4s ease;

  z-index: 999;
}

/* APARECER */

#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* HOVER */

#backToTop:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0,198,255,0.35);
}

/* =========================================
PRODUCT PAGE
========================================= */

.product-page {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

/* GRID */

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================================
IMAGEM
========================================= */

.product-image {
  position: relative;
}

.product-image img {
  width: 100%;
  border-radius: 28px;

  background: rgba(255,255,255,0.03);

  border: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(10px);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.35);

  transition: 0.5s ease;
}

.product-image img:hover {
  transform: scale(1.02);
}

/* =========================================
INFO
========================================= */

.product-info h1 {
  font-size: 52px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.product-info p {
  color: #bbb;
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
}

/* =========================================
SPECS
========================================= */

.specs {
  list-style: none;
  margin-bottom: 35px;
}

.specs li {
  margin-bottom: 14px;
  color: #e6e6e6;
  font-size: 15px;
}

/* =========================================
BOTÃO
========================================= */

.btn-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 14px 30px;

  border-radius: 40px;

  background:
    linear-gradient(135deg, #0575ee, #00c6ff);

  color: #fff;
  text-decoration: none;
  font-weight: 600;

  transition: 0.4s ease;

  box-shadow:
    0 10px 30px rgba(0,198,255,0.25);
}

.btn-buy:hover {
  transform: translateY(-4px);

  box-shadow:
    0 20px 40px rgba(0,198,255,0.35);
}

/* =========================================
MOBILE
========================================= */

@media(max-width:768px){

  .product-page {
    padding: 70px 20px;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-info {
    text-align: center;
  }

  .product-info h1 {
    font-size: 36px;
  }

  .product-info p {
    font-size: 15px;
  }

  .btn-buy {
    width: 100%;
  }

}

/* =========================================
css catalogo
========================================= */

/* ===== BASE ===== */
body {
  background: #0b0b0b;
  color: #fff;
  font-family: sans-serif;
}

/* HEADER */
.catalog-header {
  text-align: center;
  padding: 80px 20px 40px;
}

.catalog-header h1 {
  font-size: 42px;
}

.catalog-header p {
  color: #aaa;
}

/* FILTRO */
.filter-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #444;
  cursor: pointer;
}

.filter-btn.active {
  background: #00c6ff;
  color: #000;
}

/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px;
}

/* CARD */
.product-card {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,198,255,0.2);
}

.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-info h3 {
  margin-bottom: 10px;
}

.product-info p {
  color: #bbb;
  font-size: 14px;
  margin-bottom: 15px;
}

/* BOTÃO */
.btn-whatsapp {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0575ee, #00c6ff);
  color: #fff;
  text-decoration: none;
}

