* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Inter',sans-serif;
}

html, body {
  height:100%;
}

body {
  background:#050510;
  color:white;
  overflow-x:hidden;
  overflow-y:auto;
}


#particles {
  position: fixed;
  inset: 0;
  width:100vw;
  height:100vh;
  z-index:-1;
  pointer-events:none;
  overflow:hidden;
}

.container {
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}


header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(5,5,20,0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 30px rgba(0,0,0,.4);
  border-bottom: none;
  z-index: 1000;
}

.header-content {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:10px 0;
}


.logo {
  height:50px;
  transform: scale(2.3);
  transform-origin: left center;
  filter: drop-shadow(0 0 10px rgba(0,170,255,.5));
}


nav a {
  color:white;
  margin-left:25px;
  text-decoration:none;
  padding:10px 18px;
  border-radius:14px;
  font-weight:500;
  transition:.35s;
}

nav a:hover {
  background:rgba(0,170,255,0.18);
  color:#00c8ff;
  transform:translateY(-2px);
}


.hero {
  min-height:100vh;
  display:flex;
  align-items:center;
  background:radial-gradient(circle at top right,#001f4d,#000814 60%);
  padding-top:120px;
  padding-bottom:40px;
  overflow:hidden;
}

.hero-content {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
  align-items:center;
  transform:translateY(0);
}

.hero-text h1 {
  font-size:3.4rem;
  color:#00c8ff;
  margin-bottom:20px;
  text-shadow:0 0 25px rgba(0,200,255,.6);
}

.hero-text p {
  font-size:1.15rem;
  margin-bottom:45px;
  opacity:.9;
  line-height:1.6;
}


.hero-img {
  width:100%;
  animation:float 6s ease-in-out infinite;
}

@keyframes float {
  0%{transform:translateY(0)}
  50%{transform:translateY(-18px)}
  100%{transform:translateY(0)}
}


.btn {
  background:linear-gradient(135deg,#0066ff,#00c8ff);
  padding:18px 46px;
  border-radius:60px;
  color:white;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 0 30px rgba(0,180,255,.7);
  transition:.35s;
}

.btn:hover {
  transform:translateY(-5px) scale(1.07);
  box-shadow:0 0 50px rgba(0,200,255,1);
}


.servicos, .contato {
  padding:110px 20px;
  text-align:center;
}

.cards {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:35px;
  margin-top:50px;
}

.card {
  background:rgba(255,255,255,0.05);
  padding:35px;
  border-radius:24px;
  border:1px solid rgba(0,170,255,0.3);
  backdrop-filter:blur(8px);
  transition:.45s;
}

.card:hover {
  transform:translateY(-12px) scale(1.04);
  box-shadow:0 0 40px rgba(0,200,255,0.6);
}


.sobre {
  padding:130px 20px;
  background:linear-gradient(180deg,#070720,#050510);
  text-align:center;
  position:relative;
  z-index:5;
}

.sobre h2 {
  color:#00c8ff;
  font-size:2.4rem;
  margin-bottom:25px;
  text-shadow:0 0 15px rgba(0,200,255,.4);
}

.sobre p {
  max-width:750px;
  margin:auto;
  font-size:1.1rem;
  line-height:1.7;
  color:#ddd;
}


form {
  max-width:480px;
  margin:auto;
}

input, textarea {
  width:100%;
  padding:15px;
  margin:12px 0;
  border-radius:12px;
  border:none;
  background:rgba(255,255,255,.08);
  color:white;
}

button {
  width:100%;
  padding:16px;
  border-radius:50px;
  background:linear-gradient(135deg,#0066ff,#00c8ff);
  border:none;
  color:white;
  font-weight:bold;
  box-shadow:0 0 25px rgba(0,140,255,.7);
  transition:.3s;
}

button:hover {
  transform:translateY(-4px);
  box-shadow:0 0 40px rgba(0,200,255,1);
}


.whatsapp-btn {
  position:fixed;
  bottom:30px;
  right:30px;
  background:linear-gradient(135deg,#0066ff,#00c8ff);
  padding:16px 28px;
  border-radius:50px;
  color:white;
  text-decoration:none;
  font-weight:600;
  box-shadow:0 0 25px rgba(0,200,255,.8);
  z-index:999;
  display:flex;
  align-items:center;
  gap:10px;
  animation:pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow:0 0 0 0 rgba(0,140,255,.7); }
  70% { box-shadow:0 0 0 22px rgba(0,140,255,0); }
}


.footer {
  background:linear-gradient(180deg,#050510,#02020a);
  padding:55px 20px;
  position:relative;
  z-index:10;
}

.footer-container {
  max-width:1200px;
  margin:auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer-logo {
  width:150px;
}

.footer-left p {
  color:#00c8ff;
  font-weight:600;
}

.footer-left span {
  font-size:0.85rem;
  color:#aaa;
}

.footer-right {
  font-size:0.85rem;
  color:#aaa;
}


.reveal {
  opacity:0;
  transform:translateY(60px);
  transition:1s ease;
}

.reveal.active {
  opacity:1;
  transform:translateY(0);
}


@media(max-width:900px){
  .hero-content {
    grid-template-columns:1fr;
    text-align:center;
  }

  .logo {
    transform: scale(1.6);
  }

  .footer-container {
    flex-direction:column;
    text-align:center;
  }
}


.hero-content {
  opacity: 0;
  transform: translateY(40px);
  animation: heroEnter 1.2s ease-out forwards;
  animation-delay: .3s;
}

@keyframes heroEnter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.hero-text h1 {
  animation: fadeUp 1s ease forwards;
  animation-delay: .5s;
  opacity:0;
}

.hero-text p {
  animation: fadeUp 1s ease forwards;
  animation-delay: .8s;
  opacity:0;
}

.hero-text .btn {
  animation: fadeUp 1s ease forwards;
  animation-delay: 1.1s;
  opacity:0;
}

.hero-img {
  animation: fadeFloat 1.4s ease forwards, float 6s ease-in-out infinite;
  animation-delay:1s;
  opacity:0;
}

@keyframes fadeUp {
  to {
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeFloat {
  from {
    opacity:0;
    transform:translateY(40px) scale(.95);
  }
  to {
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

html, body {
  scroll-behavior: auto;
}


.hero {
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}


.hero-content {
  transform: translateY(0) !important;
}


#particles {
  position: fixed;
  inset: 0;
  width:100vw;
  height:100vh;
  pointer-events:none;
  overflow:hidden;
}


header {
  margin: 0;
}




.btn{
  position:relative;
  overflow:hidden;
}

.btn::after{
  content:"";
  position:absolute;
  inset:-2px;
  background:linear-gradient(120deg, transparent, rgba(255,255,255,.28), transparent);
  transform:translateX(-120%);
  transition:.65s ease;
}

.btn:hover::after{
  transform:translateX(120%);
}


.btn-ghost{
  background:transparent;
  border:1px solid rgba(0,200,255,.45);
  box-shadow:none;
}

.btn-ghost:hover{
  background:rgba(0,200,255,.12);
}


input:focus, textarea:focus{
  outline:none;
  border:1px solid rgba(0,200,255,.45);
  box-shadow:0 0 0 4px rgba(0,200,255,.12);
}


.card:hover{
  box-shadow:0 0 45px rgba(0,200,255,0.7);
}


.diferenciais{
  padding:120px 20px;
  text-align:center;
  background:linear-gradient(180deg,#050510,#06061a,#050510);
  position:relative;
  z-index:5;
}

.diferenciais h2{
  color:#00c8ff;
  font-size:2.4rem;
  text-shadow:0 0 16px rgba(0,200,255,.4);
  margin-bottom:10px;
}

.diferenciais-sub{
  max-width:760px;
  margin:0 auto 46px;
  color:#d8d8d8;
  opacity:.95;
  line-height:1.7;
}

.diferenciais-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

.dif-card{
  text-align:left;
  padding:26px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(0,200,255,.20);
  backdrop-filter:blur(10px);
  transition:.35s;
}

.dif-card:hover{
  transform:translateY(-8px);
  border-color:rgba(0,200,255,.35);
  box-shadow:0 0 42px rgba(0,200,255,.22);
}

.dif-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(0,200,255,.12);
  border:1px solid rgba(0,200,255,.18);
  margin-bottom:14px;
  color:#00c8ff;
  box-shadow:0 0 22px rgba(0,200,255,.15);
}

.dif-card h3{
  font-size:1.1rem;
  margin-bottom:8px;
}

.dif-card p{
  color:#d7d7d7;
  line-height:1.6;
  opacity:.95;
}

.diferenciais-cta{
  margin-top:34px;
}


@media(max-width:900px){
  .diferenciais-grid{
    grid-template-columns:1fr;
  }
}


@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
}


.atendimento{
  padding:120px 20px;
  text-align:center;
  background:linear-gradient(180deg,#050510,#06061a,#050510);
  position:relative;
  z-index:5;
}

.atendimento h2{
  color:#00c8ff;
  font-size:2.4rem;
  text-shadow:0 0 16px rgba(0,200,255,.4);
  margin-bottom:10px;
}

.atendimento-sub{
  max-width:760px;
  margin:0 auto 46px;
  color:#d8d8d8;
  opacity:.95;
  line-height:1.7;
}

.atendimento-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:22px;
}

.at-card{
  text-align:left;
  padding:26px;
  border-radius:22px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(0,200,255,.20);
  backdrop-filter:blur(10px);
  transition:.35s;
}

.at-card:hover{
  transform:translateY(-8px);
  border-color:rgba(0,200,255,.35);
  box-shadow:0 0 42px rgba(0,200,255,.22);
}

.at-icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:14px;
  background:rgba(0,200,255,.12);
  border:1px solid rgba(0,200,255,.18);
  margin-bottom:14px;
  color:#00c8ff;
  box-shadow:0 0 22px rgba(0,200,255,.15);
}


@media(max-width:900px){
  .atendimento-grid{
    grid-template-columns:1fr;
  }
}


@media (max-width: 900px){


  header{
    height:64px;
  }

  .header-content{
    height:64px;
  }

  .logo{
    transform:scale(1.3);
    height:40px;
  }


  .hero{
    padding-top:85px;
    padding-bottom:50px;
  }

  .hero-text h1{
    font-size:1.9rem;
    line-height:1.15;
  }

  .hero-text p{
    font-size:0.95rem;
    margin-bottom:22px;
  }


  .hero-buttons .btn{
    padding:14px 20px;
    font-size:0.95rem;
    max-width:300px;
  }


  .hero-img{
    width:min(260px,85vw);
  }


  .servicos, .contato,
  .sobre, .diferenciais{
    padding:70px 16px;
  }

  .diferenciais h2,
  .sobre h2{
    font-size:1.8rem;
  }


  .whatsapp-btn{
    padding:10px 14px;
    font-size:0.85rem;
  }
}


@media (max-width: 380px){

  .hero-text h1{
    font-size:1.7rem;
  }

  .hero-img{
    width:230px;
  }

  .logo{
    transform:scale(1.15);
  }
}




img {
  max-width: 100%;
  height: auto;
  display: block;
}


.hero-text h1 {
  font-size: clamp(1.65rem, 6vw, 3.4rem);
  line-height: 1.12;
}
.sobre h2,
.diferenciais h2 {
  font-size: clamp(1.6rem, 5.5vw, 2.4rem);
}


header {
  height: auto;
}
.header-content {
  gap: 14px;
}


.logo {
  height: 50px;
  transform-origin: left center;
}


.nav-toggle {
  display: none;
}


.nav-btn {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(0,200,255,0.22);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  user-select: none;
}

.nav-btn span {
  width: 20px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
}


.nav {
  display: flex;
  align-items: center;
}


.nav a {
  white-space: nowrap;
}


.hero {
  overflow: visible;
}


.hero-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}


.whatsapp-btn {
  max-width: calc(100vw - 24px);
  right: 12px;
  bottom: 12px;
}


@media (max-width: 768px) {


  .logo {
    height: 38px;
    transform: none;
    filter: drop-shadow(0 0 10px rgba(0,170,255,.45));
  }


  .nav-btn {
    display: flex;
    margin-left: auto;
  }


  .nav {
    position: absolute;
    top: 64px;
    right: 12px;
    left: 12px;
    display: grid;
    gap: 10px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(5,5,20,0.85);
    border: 1px solid rgba(0,200,255,0.18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 14px 40px rgba(0,0,0,.45);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: .25s ease;
    z-index: 1001;
  }

  .nav a {
    margin-left: 0;
    width: 100%;
    padding: 12px 14px;
    border-radius: 14px;
  }


  .nav-toggle:checked ~ .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }


  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-img {
    width: min(320px, 90vw);
    margin: 0 auto;
  }


  .servicos, .contato, .sobre, .diferenciais {
    padding: 70px 16px;
  }


  .cards {
    gap: 18px;
  }
  .card {
    padding: 24px;
  }


  .footer-container {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 380px) {
  .hero-text p {
    font-size: 0.95rem;
  }
  .btn {
    padding: 14px 18px;
  }
}


@media (max-width: 480px){


  header{ padding: 6px 0; }
  .header-content{ padding: 6px 0; }
  .logo{
    height: 32px !important;
    transform: none !important;
  }


  .nav{
    top: 56px !important;
    padding: 10px !important;
    gap: 8px !important;
    border-radius: 16px !important;
  }
  .nav a{
    padding: 10px 12px !important;
    font-size: 0.95rem !important;
  }


  .hero{
    min-height: auto !important;
    padding-top: 78px !important;
    padding-bottom: 28px !important;
  }


  .hero-text h1{
    font-size: 1.55rem !important;
    line-height: 1.15 !important;
    margin-bottom: 12px !important;
  }
  .hero-text p{
    font-size: 0.92rem !important;
    margin-bottom: 18px !important;
    line-height: 1.5 !important;
  }


  .hero-buttons .btn{
    padding: 12px 18px !important;
    font-size: 0.92rem !important;
    box-shadow: 0 0 18px rgba(0,180,255,.55) !important;
  }


  .hero-img{
    width: 200px !important;
    margin: 14px auto 0 !important;
  }


  .servicos, .contato, .sobre, .diferenciais{
    padding: 58px 14px !important;
  }


  .whatsapp-btn{
    padding: 10px 12px !important;
    font-size: 0.82rem !important;
    right: 10px !important;
    bottom: 10px !important;
  }
}


@media (max-height: 700px) and (max-width: 480px){
  .hero-img{ width: 170px !important; }
  .hero{ padding-bottom: 18px !important; }
}


@media (max-width: 768px){

  .logo{
    height: 65px !important;
    width: auto;
    transform: none !important;
  }

  header{
    padding: 12px 0 !important;
  }

}
@media (max-width: 768px){


  header{
    height: auto !important;
  }


  .hero{
    padding-top: 120px !important;
    min-height: auto !important;
    overflow: visible !important;
  }


  .logo{
    height: 65px !important;
    transform: none !important;
  }
}


@media (max-width: 768px){


  header{
    height: auto !important;
    padding: 10px 0 !important;
    overflow: visible !important;
  }

  .header-content{
    align-items: center;
    gap: 12px;
  }


  .logo{
    height: clamp(44px, 12vw, 70px) !important;
    width: auto !important;
    max-width: 58vw;
    transform: none !important;
    display: block;
  }

  .hero{
    padding-top: 120px !important;
    min-height: auto !important;
    overflow: visible !important;
  }
}


@media (max-width: 768px){


  .logo{
    height: 70px !important;
    width: auto;
    max-width: 60vw;
    transform: none !important;
    display: block;
  }

  header{
    padding: 14px 0 !important;
  }

  .footer-logo{
    display: block;
    margin: 0 auto 18px auto;
  }

  .footer-container{
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

}


.atendimento{
  padding: 110px 20px;
  text-align: center;
  position: relative;
  z-index: 5;
  background: radial-gradient(circle at top, rgba(0,200,255,.10), transparent 55%),
              linear-gradient(180deg,#050510,#06061a,#050510);
}


.atendimento .container{
  max-width: 1050px;
  margin: 0 auto;
}

.atendimento h2{
  margin: 0 auto 12px;
  color:#00c8ff;
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  text-shadow: 0 0 18px rgba(0,200,255,.45);
  letter-spacing: .3px;
}

.atendimento-sub{
  margin: 0 auto 44px;
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: 1.05rem;
  line-height: 1.75;
}


.atendimento-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(260px, 420px));
  justify-content: center;
  gap: 26px;
}


.at-card{
  text-align: left;
  padding: 30px 30px;
  border-radius: 26px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(0,200,255,.22);
  backdrop-filter: blur(12px);
  transition: .35s;
  box-shadow: 0 18px 55px rgba(0,0,0,.45);
}


.at-card:hover{
  transform: translateY(-10px);
  border-color: rgba(0,200,255,.40);
  box-shadow: 0 22px 75px rgba(0,0,0,.55);
}


.at-icon{
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  color: #00c8ff;
  background: radial-gradient(circle at top, rgba(0,200,255,.22), rgba(0,200,255,.08));
  border: 1px solid rgba(0,200,255,.22);
  box-shadow: 0 0 28px rgba(0,200,255,.18);
}

.at-card h3{
  margin: 0 0 6px;
  font-size: 1.22rem;
}

.at-card p{
  margin: 0;
  color: rgba(255,255,255,.80);
  line-height: 1.55;
}


@media (max-width: 900px){
  .atendimento{
    padding: 80px 16px;
  }

  .atendimento-grid{
    grid-template-columns: minmax(240px, 520px);
    gap: 18px;
  }

  .at-card{
    padding: 24px;
    border-radius: 22px;
  }
}


@media (max-width: 768px){
  .hero-img{
    width: min(360px, 92vw) !important;
    margin: 18px auto 0 !important;
  }
}

@media (max-width: 480px){
  .hero-img{
    width: min(340px, 92vw) !important;
  }
}


@media (max-height: 700px) and (max-width: 480px){
  .hero-img{
    width: min(300px, 88vw) !important;
  }
}

.hero.reveal{
  opacity: 1 !important;
  transform: none !important;
}

/* Fallback: se animações não rodarem, o HERO continua visível */
.hero-content,
.hero-text h1,
.hero-text p,
.hero-text .btn,
.hero-img {
  opacity: 1;
}

/* Só esconda e anime quando for permitido (sem "reduzir movimento") */
@media (prefers-reduced-motion: no-preference) {
  .hero-content {
    opacity: 0;
    transform: translateY(40px);
    animation: heroEnter 1.2s ease-out forwards;
    animation-delay: .3s;
  }

  .hero-text h1 {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: .5s;
  }

  .hero-text p {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: .8s;
  }

  .hero-text .btn {
    opacity: 0;
    animation: fadeUp 1s ease forwards;
    animation-delay: 1.1s;
  }

  .hero-img {
    opacity: 0;
    animation: fadeFloat 1.4s ease forwards, float 6s ease-in-out infinite;
    animation-delay: 1s;
  }
}