*{
 margin:0;
 padding:0;
 box-sizing:border-box
}
section {
  scroll-margin-top: 110px;
}

:root{
    --dark:#050b16;
    --navy:#071426;
    --blue:#198cff;
    --green:#13c653;
    --white:#fff;
    --muted:#6d7890;
    --light:#f4f8ff
}


html{
    scroll-behavior:smooth
}


body{
    font-family:Arial,Helvetica,sans-serif;
    background:var(--light);
    color:#071426
}


a{
    text-decoration:none;
    color:inherit
}


.container{
    width:min(1180px,92%);
    margin:0 auto
}


.header{
    width: 100%;
    height: 90px;
    padding: 0 50px;
    background: rgba(5, 11, 22, 0.86);
    backdrop-filter: blur(14px);

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

    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    box-sizing: border-box;
}


.logo{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-text{
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text strong{
    color: white;
    font-size: 25px;
    letter-spacing: 1px;
}
.logo-text span{
    font-size: 16px;
    color: #4da3ff;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
}

.logo img{
    width: 100px;
    height: auto;
    display: block;
}


.nav{
    display:flex;
    align-items: center;
    gap: 50px;
}
.nav a{
    color:white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.btn-whats{
    background: #15c85a;
    color: white;
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 0 25px rgba(21, 200, 90, 0.45);
}

.hero{
  min-height:720px;
  position:relative;

  background:
  linear-gradient(90deg, rgba(5,11,22,.98) 0%, rgba(5,11,22,.85) 42%, rgba(5,11,22,.35) 100%),
  url("https://images.unsplash.com/photo-1607472586893-edb57bdc0e39?q=80&w=1600");

  background-size:cover;
  background-position:center;

  color:var(--white);
  display:flex;
  align-items:center;
  padding-top:100px;
}


.hero-text{
    max-width:660px
}
.badge{
    display:inline-flex;
    background:rgba(25,140,255,.18);
    border:1px solid #ff3b3b;
    color:#ff3b3b;
    padding:12px 18px;
    border-radius:999px;
    font-weight:800;
    margin-bottom:28px;
    text-transform:uppercase;
    font-size:14px;
    align-items: center;
    gap: 8px;
}
.icon{
    width: 16px;
    height: 16px;
    display: flex;
    transform: translateY(1px);
}

.hero h1{
    font-size:clamp(44px,7vw,82px);
    line-height:.95;
    margin-bottom:22px;
}
.hero h1 span{
    color:var(--blue)
}
.hero p{
    font-size:24px;
    line-height:1.35;
    color:#e5edf8;
    max-width:560px
}


.features-inline{
    display:flex;
    gap:30px;
    margin:25px 0;
}

.feature-item{
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-item img{
    width: 40px;
    height: auto;
    object-fit: contain;
}

.feature-item span{
    color: #fff;
    font-size: 14px;
    color: #9fb3d1;
}
.icon{
    width: 20px;
    height: 20px;
    fill: #2f80ed;
}


.hero-buttons{
    display:flex;
    align-items: center;
    gap:18px;
    margin-top: 28px;
}

.btn img{
    width: 22px;
    height: 22px;
}

.btn-whatsapp{
    height: 54px;
    padding: 0 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}
.btn-whatsapp{
    background: #14c957;
    color: #ffff;
    box-shadow: 0 0 25px rgba(20, 201, 87, 0.35);
}

.btn-ligar{
    height: 54px;
    padding: 0 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;

    background: transparent;
    color: #fff;
    border: 2px solid #ff3b3b;
}
.btn-ligar:hover{
    background: #ff3b3b;
    color: white;
}


.trust-card{
    width: 90%;
    margin: -30px auto 0;
    background: #fff;
    border-radius: 14px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    position: relative;
    z-index: 5;
}
.trust-item{
    padding:35px 25px 32px;
    text-align:center;
    border-right:1px solid #e4ecf7;
}
.trust-item:last-child{
    border-right:none
}

.trust-item img{
    display: block;
    margin: 0 auto 12px;
    width: 48px;
    height: 48px;
    
}

.trust-item h3{
    font-size:16px;
    font-weight: 800;
    color: #06172f;
    margin-bottom: 12px;
    text-transform: uppercase;
}
.trust-item p{
    font-size: 14px;
    color: #53627a;
    line-height: 1.0;
}


.services{
    padding:90px 0;
    text-align:center
}
.section-label{
    color:var(--blue);
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:8px
}
.services h2,.testimonial h2{
    font-size:clamp(28px,4vw,42px);
    text-transform:uppercase;
    color:#06142a;
    margin-bottom:45px
}


.cards{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    width: 90%;
    margin: 60px auto;
}
.card{
    background:#f5f7fb;
    border-radius: 14px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}
.card:hover{
    transform: translateY(-5px);
}
.card img{
    width: 60px;
    height: auto;
    margin-bottom: 20px;
}
.card h3{
    font-size: 15px;
    font-weight: 800;
    color: #0b1f3a;
    margin-bottom: 10px;
}
.card p{
    font-size: 14px;
    color: #5a6b85;
}



.why{
    background:linear-gradient(135deg,#050b16,#08224a);
    color:#fff;
    padding:80px 0
}
.why-grid{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:60px;
    align-items:center
}
.why h2{
    font-size:48px;
    color:var(--blue);
    margin-bottom:18px
}
.why p{
    color:#cbd6e8;
    line-height:1.6
}
.benefits{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:28px
}
.benefits div{
    padding:22px;
    border:1px solid rgba(255,255,255,.15);
    border-radius:14px
}
.benefits h3{
    margin-bottom:10px
}

.about {
  padding: 90px 0;
  background: #ffffff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

.about h2 {
  font-size: 42px;
  color: #06142a;
  margin-bottom: 20px;
  text-transform: uppercase;
  line-height: 1.15;
}

.about p {
  color: #4c5a70;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-box {
  background: linear-gradient(135deg, #050b16, #08224a);
  color: white;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(5,11,22,0.18);
}

.about-box h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.about-box ul {
  list-style: none;
}

.about-box li {
  margin-bottom: 14px;
  font-size: 17px;
}

.testimonial {
  padding: 80px 0;
  background: #f5f7fb;
}

.testimonial h2 {
  text-align: center;
  font-size: 32px;
  color: #0b1f3a;
  margin-bottom: 50px;
}

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

.testimonial-card {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s ease;
  background: #274a87;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
  position: relative;
}

.testimonial-card.show{
    opacity: 1;
    transform: translateY(0);
}

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.user strong {
  display: block;
  font-size: 16px;
}

.user small {
  font-size: 12px;
  color: #cbd6e2;
}

.testimonial-card::after {
  content: "”";
  position: absolute;
  bottom: 10px;
  right: 15px;
  font-size: 60px;
  color: rgba(255,255,255,0.2);
}

.area{
    padding:70px 0;
    background:linear-gradient(135deg,#003f9b,#071426);
    color:#fff
}

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

.area h2{
    font-size:42px;
    margin-bottom:12px
}
.area p{color:#d6e4f8;
    line-height:1.6
}
.mapa-sp{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mapa-sp img{
    width: 260px;
    opacity: 0.25;
    filter: brightness(0) invert(1);
}
.mapa-sp::before{
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(22,136,255,0.4), transparent 70%);
    z-index: -1;
}

.pin{
    position: absolute;
    top: 30%;
    left: 45%;
    width: 28px;
    height: 28px;
    background: #1688ff;
    border-radius: 50% 50% 50% 0;
    transform: translate(-50%, -100%) rotate(-45deg);
    box-shadow: 0 0 25px rgba(22,136,255, .9);
}
.pin::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background: #071426;
  border-radius: 50%;
  top: 9px;
  left: 9px;
}
    


.final-cta {
  padding: 70px 0;
  background: linear-gradient(90deg, #050b16, #0a1931);
  color: white;
}

.final-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-text {
  max-width: 620px;
}

.final-text h2 {
  font-size: 42px;
  line-height: 1.1;
  margin-bottom: 14px;
}

.final-text p {
  font-size: 18px;
  margin-bottom: 24px;
}

.final-image img {
  width: 600px;
  max-width: 100%;
  filter: drop-shadow(0 16px 35px rgba(0,0,0,0.45));
}


.floating-whats{
    position:fixed;
    right:22px;
    bottom:22px;
    width:62px;
    height:62px;
    background:var(--green);
    color:#fff;
    display:grid;
    place-items:center;
    border-radius:50%;
    font-size:28px;
    box-shadow:0 14px 35px rgba(19,198,83,.35);
    z-index:80
}

.service-card {
  background: #f5f7fb !important;
  color: #333 !important;
  text-align: center;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card h3 {
  color: #1e2a38; /* mesmo padrão dos outros */
}

.service-card p {
  color: #666;
}

.service-card {
  min-height: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.service-card img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  margin-bottom: 18px;
}

.service-card h3 {
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.25;
}





@media(max-width:900px) {
    .nav{
        display:none
    }
    .hero{
        min-height:650px
    }
    .hero p{
        font-size:19px
    }
    .trust-card,.cards,.why-grid,.benefits,.area-grid{
        grid-template-columns:1fr
    }
    .trust-item{
        border-right:none;
        border-bottom:1px solid #e7edf7
    }
    .testimonial-box{
        flex-direction:column
    }
}


@media(max-width:520px) {
    .header{
        padding:14px 4%
    }
    .logo strong{
        font-size:19px
    }
    .header .btn{
        display:none
    }
    .hero{
        padding-top:120px
    }
    .hero-buttons .btn{
        width:100%
    }
    .features-inline{
        flex-direction:column
    }
}


@media (max-width: 768px) {
  .final-grid {
    flex-direction: column;
    text-align: center;
  }

  .final-text h2 {
    font-size: 32px;
  }

  .final-image img {
    width: 300px;
  }
}

body {
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 20px;
    text-align: left;
  }

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

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

  .hero .container {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .btn-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .btn-whats,
  .btn-call {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .grid,
  .why-grid {
    grid-template-columns: 1fr;
  }
}

img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  * {
    max-width: 100%;
  }

  .container {
    width: 100%;
    padding: 0 20px;
  }

  .header {
    width: 100%;
    padding: 12px 20px;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 120px 20px 60px;
  }

  .hero-content,
  .hero-text {
    width: 100%;
    max-width: 100%;
  }

  .features-inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .trust-card,
  .cards,
  .benefits,
  .area-grid,
  .final-grid,
  .about-grid {
    grid-template-columns: 1fr !important;
    width: 100%;
  }

  .testimonial-box {
    width: 100%;
  }
}


/* ===== CORREÇÃO MOBILE FINAL ===== */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .container {
    width: 100%;
    padding: 0 20px;
  }

  .header {
    height: auto;
    padding: 12px 18px;
  }

  .nav {
    display: none;
  }

  .header > .btn-whats {
    display: none;
  }

  .logo img {
    width: 70px;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 11px;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 70px;
    background-position: center;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.05;
  }

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

  .features-inline {
    flex-direction: column;
    gap: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-whatsapp,
  .btn-ligar {
    width: 100%;
  }

  .trust-card {
    width: 90%;
    grid-template-columns: 1fr;
    margin-top: -25px;
  }

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

  .why-grid,
  .benefits,
  .about-grid,
  .testimonial-grid,
  .area-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-grid {
    gap: 20px;
  }

  .testimonial-card {
    width: 100%;
  }

  .final-grid {
    flex-direction: column;
    text-align: center;
  }

  .final-image img {
    width: 300px;
  }
}
