*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  background:#020617;
  color:white;
  overflow-x:hidden;
  position:relative;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
  radial-gradient(circle at 30% 10%, rgba(37,99,255,.28), transparent 35%),
  radial-gradient(circle at 80% 40%, rgba(37,99,255,.10), transparent 30%),
  linear-gradient(180deg, #030712, #020617);
  z-index:-3;
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  background-image:radial-gradient(rgba(37,99,255,.16) 1px, transparent 1px);
  background-size:22px 22px;
  mask-image:linear-gradient(to left, black, transparent 60%);
  opacity:.25;
  z-index:-2;
}

/* HEADER */

.header{
  width:100%;
  height:88px;
  padding:0 6%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:fixed;
  top:0;
  left:0;
  z-index:999;
  backdrop-filter:blur(18px);
  background:rgba(3,7,18,.72);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.logo{
  height:100px;
}

.nav{
  display:flex;
  gap:40px;
}

.nav a{
  text-decoration:none;
  color:white;
  font-size:15px;
  transition:.3s;
}

.nav a:hover{
  color:#3b82f6;
}

.header-btn{
  text-decoration:none;
  background:#2563ff;
  color:white;
  padding:14px 24px;
  border-radius:14px;
  font-size:14px;
  font-weight:bold;
  box-shadow:0 0 30px rgba(37,99,255,.28);
}

/* HERO */

.hero{
  min-height:92vh;
  padding:120px 6% 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:40px;
}

.badge{
  display:inline-block;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(59,130,246,.22);
  color:#60a5fa;
  background:rgba(255,255,255,.02);
  margin-bottom:30px;
  font-size:12px;
}

.hero-left h1{
  font-size:64px;
  line-height:1.04;
  letter-spacing:-2px;
  margin-bottom:24px;
}

.hero-left strong{
  color:#2563ff;
}

.hero-left p{
  font-size:18px;
  line-height:1.7;
  color:#cbd5e1;
  max-width:580px;
  margin-bottom:34px;
}

.hero-buttons{
  display:flex;
  gap:16px;
}

.primary-btn,
.secondary-btn{
  text-decoration:none;
  padding:17px 28px;
  border-radius:16px;
  font-size:14px;
  font-weight:bold;
  transition:.3s;
}

.primary-btn{
  background:#2563ff;
  color:white;
  box-shadow:0 0 35px rgba(37,99,255,.28);
}

.secondary-btn{
  border:1px solid rgba(255,255,255,.08);
  background:rgba(255,255,255,.03);
  color:white;
}

/* SLIDER */

.hero-right{
  display:flex;
  justify-content:center;
}

.product-window{
  width:560px;
  height:500px;
  border-radius:28px;
  overflow:hidden;
  background:linear-gradient(135deg, rgba(12,18,38,.96), rgba(4,9,24,.92));
  border:1px solid rgba(255,255,255,.08);
  box-shadow:
    0 0 70px rgba(0,0,0,.45),
    0 0 50px rgba(37,99,255,.12);
}

.window-top{
  height:58px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:0 22px;
  border-bottom:1px solid rgba(255,255,255,.05);
}

.window-top span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#7c87aa;
}

.slides{
  width:500%;
  height:calc(100% - 58px);
  display:flex;
  animation:slideShow 24s infinite;
}

.slide{
  width:20%;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.real-image{
  width:100%;
  height:250px;
  border-radius:22px;
  overflow:hidden;
  margin-bottom:26px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 0 35px rgba(37,99,255,.10);
  position:relative;
  background:rgba(255,255,255,.03);
}

.real-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  animation:slowZoom 10s ease-in-out infinite alternate;
}

.real-image::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(2,6,23,.18), transparent);
}

.slide h3{
  font-size:28px;
  margin-bottom:12px;
  line-height:1.2;
}

.slide p{
  color:#cbd5e1;
  line-height:1.6;
  font-size:15px;
  max-width:430px;
}

@keyframes slowZoom{
  from{
    transform:scale(1.02);
  }

  to{
    transform:scale(1.07);
  }
}

@keyframes slideShow{
  0%,16%{
    transform:translateX(0%);
  }

  20%,36%{
    transform:translateX(-20%);
  }

  40%,56%{
    transform:translateX(-40%);
  }

  60%,76%{
    transform:translateX(-60%);
  }

  80%,96%{
    transform:translateX(-80%);
  }

  100%{
    transform:translateX(0%);
  }
}

/* CARDS */

.cards{
  width:88%;
  margin:-40px auto 100px;
  padding:40px;
  border-radius:28px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.05);
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card{
  display:flex;
  gap:18px;
}

.icon{
  min-width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.05);
  color:#2563ff;
  font-size:28px;
}

.card h3{
  font-size:21px;
  margin-bottom:10px;
}

.card p{
  color:#cbd5e1;
  line-height:1.7;
  font-size:14px;
}

/* RESPONSIVO */

@media(max-width:1200px){
  .hero{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-buttons{
    justify-content:center;
  }

  .hero-left p{
    margin-left:auto;
    margin-right:auto;
  }
}

@media(max-width:900px){
  .nav{
    display:none;
  }

  .hero-left h1{
    font-size:52px;
  }

  .product-window{
    width:100%;
  }

  .cards{
    grid-template-columns:1fr;
    margin:20px auto 100px;
  }
}

@media(max-width:650px){
  .header{
    padding:0 5%;
  }

  .logo{
    height:54px;
  }

  .header-btn{
    padding:12px 16px;
    font-size:13px;
  }

  .hero{
    padding:120px 5% 40px;
  }

  .hero-left h1{
    font-size:42px;
  }

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

  .primary-btn,
  .secondary-btn{
    width:100%;
    text-align:center;
  }

  .product-window{
    height:470px;
  }

  .slide{
    padding:24px;
  }

  .real-image{
    height:210px;
  }

  .slide h3{
    font-size:22px;
  }

  .slide p{
    font-size:14px;
  }

  .cards{
    width:92%;
    padding:28px;
  }

  .card{
    flex-direction:column;
  }
}

/* SECTION TITLE */

.section-title{
  text-align:center;
  margin-bottom:60px;
}

.section-title span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:2px;
}

.section-title h2{
  margin-top:18px;
  font-size:48px;
  line-height:1.2;
}

/* SERVICES */

.services-section{
  padding:120px 6%;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.service-box{
  padding:34px;
  border-radius:24px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.05);
}

.service-icon{
  font-size:34px;
  margin-bottom:24px;
}

.service-box h3{
  font-size:24px;
  margin-bottom:14px;
}

.service-box p{
  color:#cbd5e1;
  line-height:1.7;
}

/* PORTFOLIO */

.portfolio-section{
  padding:40px 6% 120px;
}

.portfolio-grid{
  display:grid;

  grid-template-columns:
  repeat(3, minmax(0, 1fr));

  gap:26px;

  align-items:stretch;
}

.portfolio-card{
  display:flex;
  flex-direction:column;

  height:100%;

  border-radius:30px;

  overflow:hidden;

  cursor:pointer;

  background:
  linear-gradient(
    135deg,
    rgba(12,24,58,.95),
    rgba(4,9,26,.98)
  );

  border:1px solid rgba(255,255,255,.06);

  transition:.35s;
}

.portfolio-image{
  width:100%;
  height:220px;

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

  overflow:hidden;

  background:
  linear-gradient(
    135deg,
    #2563ff,
    #172554
  );
}

.portfolio-info{
  padding:28px;
}

.portfolio-info h3{
  font-size:24px;
  margin-bottom:12px;
}

.portfolio-info p{
  color:#cbd5e1;
  line-height:1.7;
}

/* PROCESS */

.process-section{
  padding:40px 6% 120px;
}

.process-grid{
  display:grid;

  grid-template-columns:
  repeat(4, minmax(0,1fr));

  gap:22px;

  margin-top:50px;
}

.process-card{
  padding:34px 30px;

  border-radius:28px;

  background:
  linear-gradient(
    135deg,
    rgba(10,20,48,.92),
    rgba(4,8,22,.96)
  );

  border:1px solid rgba(255,255,255,.05);

  min-height:320px;

  transition:.35s;
}

.process-number{
  font-size:42px;
  font-weight:bold;
  color:#2563ff;
  margin-bottom:22px;
}

.process-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.process-card p{
  color:#cbd5e1;
  line-height:1.7;
}

/* ABOUT */

.about-section{
  padding:40px 6% 140px;
}

.about-content{
  max-width:850px;
  margin:0 auto;
  text-align:center;
}

.about-content p{
  color:#cbd5e1;
  line-height:1.9;
  font-size:18px;
  margin-bottom:24px;
}

/* RESPONSIVO */

@media(max-width:1100px){

  .services-grid,
  .portfolio-grid,
  .process-grid{
    grid-template-columns:1fr 1fr;
  }

}

@media(max-width:700px){

  .section-title h2{
    font-size:34px;
  }

  .services-grid,
  .portfolio-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

}

/* PÁGINAS INTERNAS */

.page-hero{
  min-height:42vh;
  padding:120px 6% 20px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.page-hero-content{
  max-width:900px;
}

.page-hero span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:2px;
}

.page-hero h1{
  font-size:68px;
  line-height:1.05;
  letter-spacing:-2px;
  margin:24px 0;
}

.page-hero p{
  color:#cbd5e1;
  font-size:20px;
  line-height:1.7;
}

.page-section{
  padding:40px 6% 120px;
}

.page-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.page-card{
  padding:34px;
  border-radius:28px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 0 40px rgba(0,0,0,.18);
}

.page-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.page-card p{
  color:#cbd5e1;
  line-height:1.7;
  font-size:15px;
}

.page-icon{
  width:72px;
  height:72px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:20px;
  margin-bottom:24px;
  background:rgba(37,99,255,.13);
  color:#60a5fa;
  font-size:30px;
}

.page-cta{
  width:88%;
  margin:0 auto 120px;
  padding:70px 40px;
  border-radius:32px;
  text-align:center;
  background:linear-gradient(135deg, rgba(37,99,255,.20), rgba(255,255,255,.025));
  border:1px solid rgba(255,255,255,.07);
}

.page-cta h2{
  font-size:42px;
  margin-bottom:18px;
}

.page-cta p{
  color:#cbd5e1;
  margin-bottom:32px;
}

@media(max-width:900px){
  .page-hero h1{
    font-size:46px;
  }

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

/* PRICING */

.pricing-section{
  padding:40px 6% 120px;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.pricing-card{
  position:relative;

  padding:40px 34px;

  border-radius:30px;

  background:
  rgba(255,255,255,.025);

  border:
  1px solid rgba(255,255,255,.06);

  overflow:hidden;
}

.featured-card{
  border:
  1px solid rgba(37,99,255,.45);

  box-shadow:
  0 0 45px rgba(37,99,255,.14);
}

.pricing-badge{
  position:absolute;
  top:22px;
  right:22px;

  padding:8px 14px;

  border-radius:999px;

  background:#2563ff;

  color:white;

  font-size:11px;
  font-weight:bold;
}

.pricing-card h3{
  font-size:32px;
  line-height:1.2;
  margin-bottom:18px;
}

.price-box{
  display:flex;
  gap:20px;
  margin-bottom:34px;
}

.price-box div{
  flex:1;

  padding:22px;

  border-radius:20px;

  background:
  rgba(255,255,255,.03);

  border:
  1px solid rgba(255,255,255,.05);
}

.price-box span{
  display:block;

  color:#94a3b8;

  font-size:13px;

  margin-bottom:10px;
}

.price-box h2{
  font-size:34px;
}

.custom-price{
  font-size:36px;
  font-weight:bold;
  color:#60a5fa;
  margin-bottom:26px;
}

.pricing-description{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:30px;
}

.pricing-list{
  list-style:none;

  display:flex;
  flex-direction:column;

  gap:16px;

  margin-bottom:34px;
}

.pricing-list li{
  color:#dbe4f0;
}

.pricing-button{
  width:100%;

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

  text-decoration:none;

  padding:18px;

  border-radius:18px;

  background:#2563ff;

  color:white;

  font-weight:bold;

  transition:.3s;
}

.pricing-button:hover{
  transform:translateY(-3px);
}

@media(max-width:1100px){

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

}

.pricing-hero{
  min-height:48vh;
  padding:135px 6% 35px;
}

.pricing-hero h1{
  font-size:58px;
  max-width:900px;
  margin-left:auto;
  margin-right:auto;
}

.pricing-section{
  padding:20px 6% 80px;
}

.services-explanation{
  padding:20px 6% 100px;
}

.services-explanation-content{
  max-width:900px;
  margin:0 auto;
  text-align:center;
  padding:60px 40px;
  border-radius:32px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
}

.services-explanation-content span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:2px;
}

.services-explanation-content h2{
  font-size:42px;
  line-height:1.2;
  margin:18px 0;
}

.services-explanation-content p{
  color:#cbd5e1;
  font-size:17px;
  line-height:1.8;
}

/* NOVA PÁGINA DE SERVIÇOS */

.pricing-page{
  padding:120px 5% 70px;
}

.pricing-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:60px;
  margin-bottom:45px;
}

.pricing-top-text span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:2px;
}

.pricing-top-text h1{
  font-size:56px;
  line-height:1.08;
  margin:18px 0;
}

.pricing-top-text p{
  color:#cbd5e1;
  font-size:18px;
  line-height:1.7;
  max-width:580px;
}

.pricing-tags{
  display:flex;
  gap:14px;
  margin-top:24px;
}

.pricing-tags small{
  padding:10px 16px;
  border-radius:12px;
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
  color:#cbd5e1;
}

.pricing-visual{
  position:relative;
  display:flex;
  justify-content:center;
}

.visual-panel{
  width:420px;
  height:230px;
  border-radius:24px;
  transform:rotate(-5deg);
  background:rgba(255,255,255,.035);
  border:1px solid rgba(255,255,255,.06);
  box-shadow:0 0 50px rgba(37,99,255,.12);
  padding:30px;
}

.visual-lines i{
  display:block;
  width:55%;
  height:12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  margin-bottom:12px;
}

.visual-calendar{
  margin-top:28px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}

.visual-calendar span{
  height:28px;
  border-radius:8px;
  background:rgba(255,255,255,.08);
}

.visual-calendar span:nth-child(7),
.visual-calendar span:nth-child(8){
  background:#2563ff;
}

.visual-floating{
  position:absolute;
  right:80px;
  top:65px;
  width:110px;
  height:110px;
  border-radius:22px;
  background:#2563ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:46px;
  box-shadow:0 0 45px rgba(37,99,255,.35);
}

.pricing-cards-new{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
}

.plan-card{
  position:relative;
  padding:34px;
  border-radius:26px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
}

.plan-featured{
  border-color:#2563ff;
  box-shadow:0 0 40px rgba(37,99,255,.16);
}

.plan-badge{
  position:absolute;
  top:22px;
  right:22px;
  padding:8px 14px;
  border-radius:999px;
  background:#2563ff;
  color:white;
  font-size:11px;
  font-weight:bold;
}

.plan-icon{
  width:58px;
  height:58px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(37,99,255,.12);
  color:#60a5fa;
  font-size:26px;
  margin-bottom:22px;
}

.plan-card h3{
  font-size:25px;
  margin-bottom:12px;
}

.plan-card p{
  color:#cbd5e1;
  line-height:1.6;
  font-size:14px;
  margin-bottom:24px;
}

.plan-price small{
  display:block;
  color:#94a3b8;
  margin-bottom:5px;
}

.plan-price strong{
  display:block;
  font-size:38px;
}

.plan-price.custom strong{
  font-size:30px;
  margin:20px 0 30px;
}

.plan-month{
  color:#94a3b8;
  margin:6px 0 22px;
}

.plan-card ul{
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:11px;
  margin-bottom:28px;
}

.plan-card li{
  color:#dbe4f0;
  font-size:14px;
}

.plan-btn{
  display:flex;
  justify-content:center;
  align-items:center;
  text-decoration:none;
  width:100%;
  padding:15px;
  border-radius:12px;
  background:#2563ff;
  color:white;
  font-weight:bold;
}

.plan-btn.secondary{
  background:rgba(255,255,255,.08);
}

.trust-strip{
  margin-top:24px;
  padding:24px;
  border-radius:20px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.trust-item{
  display:flex;
  gap:14px;
  align-items:center;
}

.trust-item span{
  width:50px;
  height:50px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  display:flex;
  align-items:center;
  justify-content:center;
}

.trust-item strong{
  display:block;
  font-size:15px;
}

.trust-item p{
  color:#94a3b8;
  font-size:13px;
  margin-top:4px;
}

@media(max-width:1000px){
  .pricing-top,
  .pricing-cards-new,
  .trust-strip{
    grid-template-columns:1fr;
  }

  .pricing-top-text{
    text-align:center;
  }

  .pricing-tags{
    justify-content:center;
  }

  .pricing-top-text p{
    margin:auto;
  }
}

/* PORTFOLIO NOVO */

.portfolio-page{
  padding:120px 5% 80px;
}

.portfolio-hero{
  text-align:center;
  margin-bottom:70px;
}

.portfolio-hero-content{
  max-width:900px;
  margin:auto;
}

.portfolio-hero span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:2px;
}

.portfolio-hero h1{
  font-size:64px;
  line-height:1.05;
  margin:20px 0;
}

.portfolio-hero p{
  color:#cbd5e1;
  font-size:19px;
  line-height:1.7;
}

.portfolio-grid-new{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:30px;
  align-items:stretch;
}

.project-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:white;
  overflow:hidden;
  border-radius:28px;
  min-height:560px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
  transition:.35s;
}

.project-card:hover{
  transform:translateY(-6px);

  border-color:
  rgba(37,99,255,.5);

  box-shadow:
  0 0 40px rgba(37,99,255,.12);
}

.project-image{
  height:280px;
  overflow:hidden;
  background:linear-gradient(135deg, #2563ff, #172554);
  display:flex;
  align-items:center;
  justify-content:center;
}

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

.project-card:hover img{
  transform:scale(1.04);
}

.project-info{
  padding:34px;
}

.project-info span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:1px;
}

.project-info h3{
  font-size:34px;
  line-height:1.15;
  margin:16px 0;
}

.project-info p{
  color:#cbd5e1;
  line-height:1.7;
  margin-bottom:28px;
}

.project-button{
  width:max-content;

  padding:14px 20px;

  border-radius:14px;

  background:#2563ff;

  color:white;

  font-weight:bold;
}

@media(max-width:1000px){

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

  .portfolio-hero h1{
    font-size:48px;
  }

}

/* SOBRE NOVO */

.about-page-new{
  padding:120px 5% 80px;
}

.about-hero-new{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
  margin-bottom:40px;
}

.about-left span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:2px;
}

.about-left h1{
  font-size:64px;
  line-height:1.05;
  margin:20px 0;
}

.about-left p{
  color:#cbd5e1;
  line-height:1.8;
  font-size:20px;
  max-width:620px;
}

.about-mini-grid{
  display:flex;
  gap:18px;
  margin-top:40px;
}

.mini-card{
  flex:1;
  display:flex;
  gap:14px;
}

.mini-icon{
  min-width:56px;
  height:56px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(37,99,255,.12);
  font-size:24px;
}

.mini-card h4{
  margin-bottom:8px;
}

.mini-card p{
  font-size:14px;
  line-height:1.7;
}

.about-image{
  overflow:hidden;
  border-radius:28px;
  border:1px solid rgba(37,99,255,.25);
  box-shadow:0 0 50px rgba(37,99,255,.12);
}

.about-image img{
  width:100%;
  display:block;
}

.about-trust{
  margin:40px 0 80px;
  padding:28px;
  border-radius:26px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
}

.trust-box{
  display:flex;
  align-items:center;
  gap:16px;
}

.trust-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(37,99,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
}

.trust-box h3{
  margin-bottom:6px;
}

.trust-box p{
  color:#94a3b8;
  font-size:14px;
}

.values-section{
  display:grid;
  grid-template-columns:350px 1fr;
  gap:40px;
  align-items:start;
}

.values-left span{
  color:#60a5fa;
  font-size:13px;
  font-weight:bold;
  letter-spacing:2px;
}

.values-left h2{
  font-size:54px;
  line-height:1.1;
  margin:20px 0;
}

.values-left p{
  color:#cbd5e1;
  line-height:1.8;
}

.values-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.value-card{
  padding:34px;
  border-radius:24px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
}

.value-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  background:rgba(37,99,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  margin-bottom:22px;
}

.value-card h3{
  font-size:28px;
  margin-bottom:12px;
}

.value-card p{
  color:#cbd5e1;
  line-height:1.7;
}

.about-cta{
  margin-top:80px;
  padding:34px;
  border-radius:28px;
  background:rgba(255,255,255,.025);
  border:1px solid rgba(255,255,255,.06);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.about-cta-left{
  display:flex;
  align-items:center;
  gap:20px;
}

.about-cta-icon{
  width:70px;
  height:70px;
  border-radius:20px;
  background:rgba(37,99,255,.12);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:30px;
}

.about-cta h2{
  font-size:38px;
  margin-bottom:8px;
}

.about-cta p{
  color:#cbd5e1;
}

@media(max-width:1100px){

  .about-hero-new,
  .values-section{
    grid-template-columns:1fr;
  }

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

}

@media(max-width:800px){

  .about-mini-grid,
  .about-trust,
  .values-grid{
    grid-template-columns:1fr;
    display:grid;
  }

  .about-left h1{
    font-size:46px;
  }

  .values-left h2{
    font-size:42px;
  }

  .about-cta{
    flex-direction:column;
    text-align:center;
  }

  .about-cta-left{
    flex-direction:column;
  }

}

.portfolio-image{
  width:100%;
  height:220px;
  overflow:hidden;
}

.portfolio-image img{
  width:72%;
  height:72%;

  object-fit:contain;
}

.portfolio-card{
  text-decoration:none;
  color:white;
  transition:.3s;
}

.portfolio-card:hover{
  transform:translateY(-6px);
}

.portfolio-image{
  width:100%;
  height:220px;
  overflow:hidden;
}

.portfolio-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.portfolio-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:12px;
}

.visit-site{
  font-size:13px;
  color:#3b82f6;
  white-space:nowrap;
}

/* SOBRE MODERNO */

.about-modern{
  width:min(1280px, 92%);
  margin:0 auto;
  padding:160px 0 100px;
}

.about-hero-modern{
  text-align:center;
  max-width:1000px;
  margin:0 auto 80px;
}

.about-hero-modern span{
  color:#3b82f6;
  font-size:14px;
  letter-spacing:4px;
  font-weight:700;
}

.about-hero-modern h1{
  font-size:78px;
  line-height:1.02;
  margin:24px 0;
  letter-spacing:-3px;
}

.about-hero-modern h1 strong{
  color:#2563ff;
}

.about-hero-modern p{
  font-size:24px;
  line-height:1.8;
  color:#cbd5e1;
}

.about-cards-modern{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:26px;
  margin-bottom:70px;
}

.about-modern-card{
  padding:38px;
  border-radius:30px;

  background:
  linear-gradient(
    135deg,
    rgba(10,20,48,.95),
    rgba(4,8,22,.98)
  );

  border:1px solid rgba(59,130,246,.18);

  box-shadow:
  0 0 40px rgba(37,99,255,.06);
}

.modern-icon{
  width:74px;
  height:74px;

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

  border-radius:22px;

  background:rgba(37,99,255,.12);

  font-size:34px;

  margin-bottom:28px;
}

.about-modern-card h3{
  font-size:36px;
  margin-bottom:18px;
}

.about-modern-card p{
  font-size:19px;
  line-height:1.9;
  color:#cbd5e1;
}

.about-contact-box{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:40px;

  padding:40px 44px;

  border-radius:32px;

  background:
  linear-gradient(
    135deg,
    rgba(10,20,48,.96),
    rgba(4,8,22,.98)
  );

  border:1px solid rgba(255,255,255,.05);
}

.contact-left{
  display:flex;
  align-items:center;
  gap:26px;
}

.contact-icon{
  width:82px;
  height:82px;

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

  border-radius:24px;

  background:rgba(37,99,255,.12);

  font-size:38px;
}

.contact-left h2{
  font-size:42px;
  margin-bottom:10px;
}

.contact-left p{
  font-size:18px;
  color:#cbd5e1;
}

.contact-right{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-right a{
  color:#3b82f6;
  text-decoration:none;
  font-size:18px;
  font-weight:600;
}

/* SOBRE MODERNO - VERSÃO PREMIUM COMPACTA */

.about-modern{
  width:min(1180px, 90%);
  margin:0 auto;
  padding:135px 0 80px;
}

.about-hero-modern{
  text-align:center;
  max-width:820px;
  margin:0 auto 55px;
}

.about-hero-modern span{
  color:#3b82f6;
  font-size:12px;
  letter-spacing:3px;
  font-weight:700;
}

.about-hero-modern h1{
  font-size:52px;
  line-height:1.08;
  margin:20px 0;
  letter-spacing:-2px;
}

.about-hero-modern h1 strong{
  color:#2563ff;
}

.about-hero-modern p{
  font-size:17px;
  line-height:1.8;
  color:#cbd5e1;
}

.about-cards-modern{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-bottom:46px;
}

.about-modern-card{
  padding:30px;
  border-radius:24px;
  background:linear-gradient(135deg, rgba(10,20,48,.9), rgba(4,8,22,.96));
  border:1px solid rgba(59,130,246,.14);
}

.modern-icon{
  width:58px;
  height:58px;
  border-radius:18px;
  background:rgba(37,99,255,.12);
  font-size:26px;
  margin-bottom:22px;
}

.about-modern-card h3{
  font-size:24px;
  margin-bottom:12px;
}

.about-modern-card p{
  font-size:15px;
  line-height:1.7;
  color:#cbd5e1;
}

.about-contact-box{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:30px 34px;
  border-radius:26px;
  background:linear-gradient(135deg, rgba(10,20,48,.92), rgba(4,8,22,.96));
  border:1px solid rgba(255,255,255,.05);
}

.contact-left{
  display:flex;
  align-items:center;
  gap:20px;
}

.contact-icon{
  width:62px;
  height:62px;
  border-radius:18px;
  background:rgba(37,99,255,.12);
  font-size:28px;
}

.contact-left h2{
  font-size:28px;
  margin-bottom:6px;
}

.contact-left p{
  font-size:15px;
  color:#cbd5e1;
}

.contact-right{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.contact-right a{
  color:#3b82f6;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
}

.payment-secure{
  margin-top:18px;

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

  gap:10px;

  padding:12px 16px;

  border-radius:16px;

  background:rgba(37,99,255,.06);

  border:1px solid rgba(59,130,246,.12);
}

.secure-dot{
  width:10px;
  height:10px;

  border-radius:50%;

  background:#22c55e;

  box-shadow:0 0 12px #22c55e;
}

.payment-secure p{
  font-size:13px;
  color:#cbd5e1;
  font-weight:500;
}

/* CORREÇÃO GERAL DESKTOP */

@media(min-width:769px){

  .mobile-menu,
  .mobile-menu-btn{
    display:none !important;
  }

  .page-hero{
    width:min(1180px, 90%);
    margin:140px auto 40px;
    padding:0;
    min-height:auto;
    text-align:center;
  }

  .page-hero-content{
    max-width:760px;
    margin:0 auto;
  }

  .page-hero-content span{
    color:#60a5fa;
    font-size:13px;
    letter-spacing:4px;
    font-weight:700;
  }

  .page-hero-content h1{
    font-size:52px;
    line-height:1.08;
    margin:24px 0 18px;
  }

  .page-hero-content p{
    font-size:18px;
    line-height:1.7;
    color:#cbd5e1;
  }

  .page-section{
    width:min(1180px, 90%);
    margin:0 auto 100px;
    padding:0;
  }

  .process-grid{
    display:grid;
    grid-template-columns:repeat(4, minmax(0, 1fr));
    gap:24px;
    width:100%;
  }

  .process-card{
    min-height:280px;
    padding:34px 28px;
    border-radius:26px;

    background:linear-gradient(
      135deg,
      rgba(10,20,48,.94),
      rgba(4,8,22,.98)
    );

    border:1px solid rgba(255,255,255,.06);
  }

  .process-number{
    font-size:42px;
    font-weight:800;
    color:#2563ff;
    margin-bottom:26px;
  }

  .process-card h3{
    font-size:24px;
    margin-bottom:16px;
  }

  .process-card p{
    font-size:16px;
    line-height:1.8;
    color:#cbd5e1;
  }
}

/* PROCESSO HOME */

.home-process{
  width:min(1280px, 92%);
  margin:120px auto;
}

.home-process .section-title{
  text-align:center;
  margin-bottom:54px;
}

.home-process-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:24px;
}

.home-process-card{
  min-height:260px;
  padding:32px 28px;
  border-radius:28px;

  background:
  linear-gradient(
    135deg,
    rgba(10,20,48,.94),
    rgba(4,8,22,.98)
  );

  border:1px solid rgba(255,255,255,.06);

  transition:.35s;
}

.home-process-card:hover{
  transform:translateY(-6px);

  border-color:rgba(37,99,255,.24);
}

.home-process-card .process-number{
  font-size:42px;
  font-weight:800;
  color:#2563ff;
  margin-bottom:24px;
}

.home-process-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.home-process-card p{
  font-size:16px;
  line-height:1.75;
  color:#cbd5e1;
}

.home-process{
  width:min(1280px, 92%);
  margin:120px auto;
}

.home-process .section-title{
  text-align:center;
  margin-bottom:54px;
}

.home-process-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:24px;
}

.home-process-card{
  min-height:260px;
  padding:32px 28px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(10,20,48,.94), rgba(4,8,22,.98));
  border:1px solid rgba(255,255,255,.06);
}

.home-process-card strong{
  display:block;
  color:#2563ff;
  font-size:42px;
  font-weight:800;
  margin-bottom:24px;
}

.home-process-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.home-process-card p{
  font-size:16px;
  line-height:1.75;
  color:#cbd5e1;
}

.home-process{
  width:min(1280px, 92%);
  margin:120px auto;
}

.home-process .section-title{
  text-align:center;
  margin-bottom:54px;
}

.home-process-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}

.home-process-card{
  min-height:260px;
  padding:32px 28px;
  border-radius:28px;
  background:linear-gradient(135deg, rgba(10,20,48,.94), rgba(4,8,22,.98));
  border:1px solid rgba(255,255,255,.06);
}

.home-process-card strong{
  display:block;
  color:#2563ff;
  font-size:42px;
  font-weight:800;
  margin-bottom:24px;
}

.home-process-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.home-process-card p{
  font-size:16px;
  line-height:1.75;
  color:#cbd5e1;
}

/* PROCESSO HOME - CORRIGIDO */

.home-process{
  width:min(1280px, 92%);
  margin:90px auto 120px;
}

.home-process .section-title{
  text-align:center;
  margin-bottom:54px;
}

.home-process .section-title span{
  display:block;
  margin-bottom:22px;
}

.home-process .section-title h2{
  font-size:48px;
  line-height:1.1;
}

.home-process-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}

.home-process-card{
  min-height:220px;
  padding:32px 34px;
  border-radius:26px;

  background:linear-gradient(
    135deg,
    rgba(10,20,48,.94),
    rgba(4,8,22,.98)
  );

  border:1px solid rgba(255,255,255,.06);
}

.home-process-card strong{
  display:block;
  color:#2563ff;
  font-size:38px;
  font-weight:800;
  margin-bottom:22px;
}

.home-process-card h3{
  font-size:24px;
  margin-bottom:14px;
}

.home-process-card p{
  font-size:16px;
  line-height:1.65;
  color:#cbd5e1;
}

.portfolio-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:26px;
  align-items:stretch;
}

.portfolio-card{
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border-radius:30px;
}

.portfolio-image{
  width:100%;
  height:220px;
  overflow:hidden;
  background:linear-gradient(135deg,#2563ff,#172554);

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

.portfolio-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.project-info{
  flex:1;
  padding:34px;
  display:flex;
  flex-direction:column;
}

.project-button{
  margin-top:auto;
}

/* PROMOÇÕES - CARDS SERVIÇOS */

.price-promo{
  margin:26px 0 6px;
}

.price-promo span{
  display:block;
  color:#cbd5e1;
  font-size:15px;
  font-weight:700;
  margin-bottom:6px;
}

.price-promo div{
  display:flex;
  align-items:center;
  gap:14px;
}

.price-promo s{
  color:#94a3b8;
  font-size:26px;
  font-weight:800;
  text-decoration-color:#ef4444;
  text-decoration-thickness:3px;
}

.price-promo strong{
  padding:6px 14px;
  border-radius:10px;
  background:#2563ff;
  color:white;
  font-size:14px;
  font-weight:800;
}

.plan-price{
  margin-top:8px;
}

.plan-price small{
  display:block;
  color:white;
  font-size:15px;
  font-weight:800;
  margin-bottom:6px;
}

.plan-price strong{
  font-size:44px;
  line-height:1;
  letter-spacing:-1px;
}

.plan-month{
  color:#cbd5e1;
  font-size:16px;
  margin:10px 0 26px;
}

.plan-card ul{
  padding-top:22px;
  border-top:2px solid #2563ff;
}

.plan-card li{
  font-size:15px;
  line-height:1.4;
}

.plan-card li::first-letter{
  color:#2563ff;
}

.pantux-modal{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,.75);

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

  z-index:99999;
}

.pantux-modal.active{
  display:flex;
}

.pantux-modal-content{
  width:min(520px,90%);
  padding:32px;

  border-radius:24px;

  background:#0f172a;
}

.pantux-modal-content h2{
  margin-bottom:10px;
}

.pantux-modal-content p{
  margin-bottom:24px;
  color:#cbd5e1;
}

.pantux-modal-content form{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.pantux-modal-content input,
.pantux-modal-content textarea{
  padding:14px;
  border-radius:12px;
  border:none;
}

/* LINK ATIVO NA HEADER */

.nav a{
  position:relative;
  padding:10px 14px;
  border-radius:999px;
}

.nav a.active{
  color:#60a5fa;
  background:rgba(37,99,255,.10);
  box-shadow:inset 0 0 0 1px rgba(37,99,255,.18);
}

.nav a.active::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:-10px;
  transform:translateX(-50%);
  width:22px;
  height:3px;
  border-radius:999px;
  background:#2563ff;
  box-shadow:0 0 14px rgba(37,99,255,.75);
}

/* CTA PROJETO PERSONALIZADO */

.custom-project-cta{
  width:min(1400px,92%);
  margin:70px auto 45px;
}

.custom-project-content{
  position:relative;
  overflow:hidden;
  text-align:center;
  padding:70px 80px;
  border-radius:32px;
  background:
    radial-gradient(circle at left center, rgba(37,99,255,.18), transparent 35%),
    radial-gradient(circle at right center, rgba(37,99,255,.12), transparent 35%),
    linear-gradient(135deg, rgba(8,14,32,.98), rgba(3,7,18,.98));
  border:1px solid rgba(59,130,246,.25);
  box-shadow:0 0 60px rgba(37,99,255,.10);
}

.custom-project-content::before,
.custom-project-content::after{
  content:"";
  position:absolute;
  top:28%;
  width:190px;
  height:230px;
  opacity:.18;
  background-image:radial-gradient(rgba(37,99,255,.75) 1.5px, transparent 1.5px);
  background-size:14px 14px;
  pointer-events:none;
}

.custom-project-content::before{
  left:0;
  transform:translateX(-20%);
}

.custom-project-content::after{
  right:0;
  transform:translateX(20%);
}

.custom-project-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:999px;
  color:#60a5fa;
  border:1px solid rgba(59,130,246,.35);
  background:rgba(37,99,255,.08);
  font-size:14px;
  font-weight:700;
  margin-bottom:30px;
}

.custom-project-content h2{
  font-size:72px;
  line-height:1.05;
  font-weight:900;
  max-width:900px;
  margin:0 auto 24px;
  letter-spacing:-2px;
}

.custom-project-content h2 span{
  color:#2563ff;
}

.custom-project-content p{
  max-width:820px;
  margin:0 auto 40px;
  color:#cbd5e1;
  font-size:20px;
  line-height:1.8;
}

.custom-project-divider{
  display:flex;
  align-items:center;
  gap:20px;
  max-width:900px;
  margin:0 auto 42px;
  color:white;
  font-size:18px;
  font-weight:700;
}

.custom-project-divider::before,
.custom-project-divider::after{
  content:"";
  flex:1;
  height:1px;
  background:linear-gradient(90deg, transparent, rgba(59,130,246,.6), transparent);
}

.custom-project-buttons{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:28px;
  max-width:980px;
  margin:0 auto;
}

.custom-project-buttons a{
  min-height:90px;
  padding:20px 24px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:18px;
  text-decoration:none;
  color:#fff;
  font-weight:700;
  font-size:1.15rem;
  background:linear-gradient(135deg, rgba(37,99,255,.18), rgba(29,78,216,.35));
  border:1px solid rgba(59,130,246,.25);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05), 0 10px 30px rgba(37,99,255,.12);
  transition:.25s ease;
}

.custom-project-buttons a:hover{
  transform:translateY(-4px);
  border-color:rgba(59,130,246,.45);
  box-shadow:0 20px 40px rgba(37,99,255,.20);
}

.custom-project-buttons a .contact-icon-svg{
  width:48px;
  height:48px;
  fill:#ffffff;
  flex-shrink:0;
  filter:drop-shadow(0 0 10px rgba(37,99,255,.35));
}

.custom-project-buttons a div{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  min-width:0;
}

.custom-project-buttons a small{
  display:block;
  margin-top:4px;
  color:#cbd5e1;
  font-size:.85rem;
  font-weight:500;
  opacity:.95;
  white-space:normal;
  word-break:break-word;
}
