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

html {
  scroll-behavior: smooth;
}

/* Se o seu header for fixo/sticky, isso evita que o título fique “por baixo” */
#sobre, #servicos, #diferenciais, #impactos, #contato {
  scroll-margin-top: 110px; /* ajuste conforme a altura do header */
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f3f3f3;
    color: #222;
}
/* HEADER */

.header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: #f3f3f3;
}

.header-container{
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 8%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo */
.header-logo img{
  width: 150px;
}

/* nav */
.header-nav ul{
  display: flex;
  gap: 40px;
  list-style: none;
}

.header-nav a{
  text-decoration: none;
  font-size: 15px;
  color: #1e2143;
  font-weight: 500;
  position: relative;
  transition: .2s;
}

/* ativo */
.header-nav a:hover{
  color: #1e7d84;
  font-weight: 700;
}

/* hover */
.header-nav a:hover{
  color: #1e7d84;
}

/* contato destacado */
.contact-link{
  font-weight: 600;
}

/* menu mobile */
.menu-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span{
  display: block;
  width: 24px;
  height: 2px;
  background: #1e2143;
  margin: 5px 0;
}

/* RESPONSIVO */

@media (max-width: 900px){

  .menu-toggle{
    display: block;
  }

  .header-nav{
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background: #f3f3f3;
    padding: 30px;
    display: none;
  }

  .header-nav ul{
    flex-direction: column;
    gap: 20px;
  }

  .header-nav.active{
    display: block;
  }

}

/* HERO (igual ao layout) */

.hero{
  background:#f3f3f3;
  position:relative;
  overflow:hidden;
  padding: 55px 8% 90px;
}

/* shape laranja no topo direito */
.hero::after{
  content:"";
  position:absolute;
  top:-140px;
  right:-220px;
  width: 560px;
  height: 560px;
  background:#f3a484;            /* ajuste se quiser mais claro/escuro */
  border-radius: 52% 48% 65% 35% / 55% 55% 45% 45%;
  z-index:0;
}

/* layout */
.hero-wrap{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items:center;
  position:relative;
  z-index:1;
}

.hero-kicker{
  color:#1e7d84;
  font-weight:700;
  letter-spacing:.6px;
  font-size:12px;
  margin:0 0 18px;
  text-transform:uppercase;
}

.hero-title{
  font-size:64px;
  line-height:1.05;
  color:#111;
  margin:0 0 18px;
  font-weight:800;
}

.hero-sub{
  color:#6f728c;
  font-size:14px;
  line-height:1.7;
  max-width: 520px;
  margin:0 0 26px;
}

.hero-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:#1e7d84;
  color:#fff;
  text-decoration:none;
  padding:14px 26px;
  border-radius:10px;
  font-size:14px;
  font-weight:600;
  transition:.2s;
}

.hero-btn:hover{
  transform: translateY(-1px);
  filter: brightness(.97);
}

/* underline “pincel” em pessoas */
.u-brush{
  position:relative;
  display:inline-block;
}

.u-brush::after{
  content:"";
  position:absolute;
  left:-6px;
  right:-8px;
  bottom: 8px;                  /* sobe o traço para ficar “dentro” */
  height: 12px;
  background:#f3a484;
  border-radius: 10px;
  transform: rotate(-1.5deg);
  z-index:-1;
  opacity:.95;
}

/* imagem da direita */
.hero-right{
  display:flex;
  justify-content:flex-end;
}

.hero-image{
  width: 100%;
  max-width: 520px;
  border-radius: 26px;
  overflow:hidden;
  position:relative;
}

/* “cartão” claro atrás da imagem (igual ao print) */
.hero-image::before{
  content:"";
  position:absolute;
  inset: -14px -14px auto auto;
  width: 100%;
  height: 100%;
  background: rgba(255,255,255,.55);
  border-radius: 30px;
  transform: translate(-22px, 18px);
  z-index:0;
}

.hero-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius: 26px;
  position:relative;
  z-index:1;
}

/* RESPONSIVO */
@media (max-width: 1024px){
  .hero-wrap{
    grid-template-columns:1fr;
    gap: 34px;
  }
  .hero-right{ justify-content:center; }
  .hero-title{ font-size:46px; }
  .hero-sub{ max-width: 620px; }
  .hero::after{
    width: 520px;
    height: 520px;
    top:-220px;
    right:-260px;
  }
}

@media (max-width: 520px){
  .hero{ padding: 35px 6% 70px; }
  .hero-title{ font-size:36px; }
  .hero-sub{ font-size:13.5px; }
  .hero-image::before{ transform: translate(-14px, 14px); }
}


/* QUEM SOMOS (ABOUT2) */

.about2{
  padding: 110px 8%;
  background: #f3f3f3;
  position: relative;
  overflow: hidden;
}

.about2-wrap{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

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

/* imagem */
.about2-image img{
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: 26px;
}

/* texto */
.about2-text h2{
  font-size: 44px;
  color: #1e2143;
  margin: 0 0 18px;
  font-weight: 800;
}

.about2-text p{
  font-size: 14px;
  color: #6f728c;
  line-height: 1.7;
  margin: 0 0 14px;
  max-width: 520px;
}

/* decoração + (cantos) */
.about2-plus{
  position: absolute;
  top: 15px;
  left: 0;
  display: grid;
  grid-template-columns: repeat(5, 14px);
  gap: 10px;
  opacity: 0.35;
}

.about2-plus span{
  width: 14px;
  height: 14px;
  position: relative;
}

.about2-plus span::before,
.about2-plus span::after{
  content:"";
  position: absolute;
  background: #1e2143;
  opacity: 0.45;
  border-radius: 2px;
}

.about2-plus span::before{
  width: 10px;
  height: 2px;
  top: 6px;
  left: 2px;
}

.about2-plus span::after{
  width: 2px;
  height: 10px;
  top: 2px;
  left: 6px;
}

/* destaque de alguns + (como no print) */
.about2-plus span:nth-child(3)::before,
.about2-plus span:nth-child(3)::after{
  background:#ff6b57;
  opacity: 0.9;
}

.about2-plus span:nth-child(8)::before,
.about2-plus span:nth-child(8)::after{
  background:#3b82f6;
  opacity: 0.9;
}

/* RESPONSIVO */
@media (max-width: 1024px){
  .about2-grid{
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .about2-image img{
    margin: 0 auto;
    max-width: 560px;
  }

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

  .about2-text p{
    margin-left: auto;
    margin-right: auto;
  }

  .about2-plus{
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
}

@media (max-width: 520px){
  .about2{ padding: 80px 6%; }
  .about2-text h2{ font-size: 32px; }
}

/* SERVICES */

.services {
    padding: 120px 8%;
    background: #f3f3f3;
    text-align: center;
}

.services-header h2 {
    font-size: 48px;
    color: #1e2143;
    margin-bottom: 60px;
}

/* GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    align-items: stretch;
}

/* CARD */

.service-card {
    background: transparent;
    padding: 40px 25px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.service-card h3 {
    margin: 20px 0 15px;
    color: #1e2143;
    font-size: 18px;
}

.service-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.icon {
    font-size: 38px;
}

/* ELEMENTO LARANJA */



/* HOVER EFFECT */

.service-card:hover,
.service-card.active {
    background: #fff;
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.service-card:hover::after,
.service-card.active::after {
    opacity: 1;
}

/* RESPONSIVO */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .services-header h2 {
        font-size: 32px;
    }
}

/* DIFERENCIAIS */

.diff{
  padding: 110px 8%;
  background: linear-gradient(to right, #f3f3f3 55%, #eaf2f4 100%);
}

.diff-wrap{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.diff-title{
  font-size: 52px;
  line-height: 1.05;
  color: #1e2143;
  margin-bottom: 44px;
  font-weight: 800;
}

.diff-list{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.diff-item{
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.diff-text h4{
  font-size: 15px;
  color: #1e2143;
  margin: 0 0 6px;
  font-weight: 700;
}

.diff-text p{
  font-size: 13.5px;
  color: #6f728c;
  line-height: 1.5;
  margin: 0;
  max-width: 420px;
}

/* ÍCONES (SPRITE) */
.diff-ico{
  width: 47px;
  height: 48px;
  border-radius: 14px;
  background-color: #1e7d84;
  background-image: url("icons-diferenciais.png");
  background-repeat: no-repeat;
  background-size: 54px 270px; /* 5 ícones (5 x 54) */
  flex-shrink: 0;
}

/* Cada ícone ocupa 54px de altura no sprite */
.diff-ico--1{ background-position: 0 0; }
.diff-ico--2{ background-position: 0 -54px; }
.diff-ico--3{ background-position: 0 -108px; }
.diff-ico--4{ background-position: 0 -162px; }
.diff-ico--5{ background-position: 0 -216px; }

/* CARD DIREITA */
.diff-card{
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,0.10);
  padding: 22px;
}

.diff-card-inner{
  border-radius: 22px;
}

.diff-card-img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  margin-bottom: 20px;
}

.diff-card-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.diff-card-copy h3{
  margin: 0 0 6px;
  color: #1e2143;
  font-size: 18px;
  font-weight: 700;
}

.diff-card-copy p{
  margin: 0;
  color: #6f728c;
  font-size: 13px;
  line-height: 1.35;
}

.diff-card-btn{
  background: #1e7d84;
  color: #fff;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: .2s;
}

.diff-card-btn:hover{
  transform: translateY(-1px);
}

.diff-card-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
}

.diff-social{
  display: flex;
  gap: 12px;
}

.diff-soc{
 
  border-radius: 50%;
  background: #f1f2f6;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #6f728c;
  font-size: 12px;
  font-weight: 700;
}

.diff-like{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: transparent;
  color: #1e7d84;
  font-size: 18px;
  cursor: pointer;
}

/* RESPONSIVO */
@media (max-width: 1024px){
  .diff-wrap{
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .diff-title{ font-size: 34px; }
  .diff-text p{ max-width: 100%; }
  .diff-card-img{ height: 200px; }
}

@media (max-width: 520px){
  .diff{ padding: 80px 6%; }
  .diff-card{ padding: 18px; }
  .diff-card-row{ flex-direction: column; align-items: flex-start; }
  .diff-card-btn{ width: 100%; text-align: center; }
}



/* IMPACTOS E BENEFÍCIOS */

.benefits {
  padding: 110px 8%;
  background: #f3f3f3;
  position: relative;
  overflow: hidden;
}

.benefits-wrap {
  max-width: 1200px;
  margin: 0 auto;
}

.benefits-title {
  text-align: center;
  font-size: 44px;
  line-height: 1.1;
  color: #1e2143;
  margin-bottom: 60px;
  font-weight: 800;
}

/* Detalhe “rabisco” do lado direito (decorativo) */
.benefits::after {
  content: "";
  position: absolute;
  top: 90px;
  right: -40px;
  width: 220px;
  height: 320px;
  opacity: 0.25;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: radial-gradient(#1e2143 1px, transparent 1px);
  /* se você tiver o rabisco em SVG/PNG, troque por:
     background-image: url('rabisco.png');
  */
  pointer-events: none;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

/* CARD */
.benefit-card {
  border-radius: 22px;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.12);
}

.benefit-media {
  height: 253px;
  background: #ddd;
}

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

/* parte branca inferior */
.benefit-body {
  background: #fff;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 82px;
}

.benefit-icon {
  width: 34px;
  height: 34px;
  object-fit: contain;
  flex-shrink: 0;
}

.benefit-text {
  color: #5c5f77;
  font-size: 13px;
  line-height: 1.25;
  margin: 0;
  text-align: left;
  font-weight: 600;
}

/* RESPONSIVO */
@media (max-width: 1200px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-title { font-size: 36px; }
}

@media (max-width: 820px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-media { height: 180px; }
}

@media (max-width: 520px) {
  .benefits { padding: 80px 6%; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-title { font-size: 28px; }
}

/* CTA FINAL */

.cta-final {
    padding: 120px 8%;
    background: #f3f3f3;
    display: flex;
    justify-content: center;
}

.cta-box {
    background: #e9e8f1;
    padding: 80px 60px;
    border-radius: 30px;
    text-align: center;
    max-width: 900px;
    width: 100%;
    position: relative;
}

.cta-box h2 {
    font-size: 32px;
    color: #5c5f77;
    margin-bottom: 25px;
}

.cta-box p {
    font-size: 16px;
    color: #6f728c;
    margin-bottom: 40px;
}

.cta-box button {
    background: #1e7d84;
    color: #fff;
    padding: 14px 35px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
	border:none; text-decoration: none;
}
.cta-box button a{
    background: #1e7d84;
    color: #fff;
    padding: 14px 35px;
    border-radius: 12px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
	border:none; text-decoration: none;
}

.cta-box button a:hover, .cta-box button:hover {
    background: #166369;
}

/* RESPONSIVO */

@media (max-width: 768px) {

    .cta-box {
        padding: 50px 25px;
    }

    .cta-box h2 {
        font-size: 22px;
    }

    .cta-box p {
        font-size: 14px;
    }

}

/* FOOTER */

.footer {
  background: #f3f3f3;
  padding: 70px 8% 40px;
}

.footer-container {
  display: grid;
  grid-template-columns: 220px 1fr 180px;
  gap: 50px;
  align-items: start;
}

.footer-logo {
  width: 160px;
  height: auto;
}

/* Colunas */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 60px;
}

.footer-col h4 {
  color: #1e2143;
  font-size: 16px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  text-decoration: none;
  color: #6f728c;
  font-size: 14px;
  margin-bottom: 10px;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #1e7d84;
}

/* Social */
.footer-social {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: #1e2143;
  opacity: 0.85;
}

.social-btn:hover {
  transform: translateY(-2px);
}

.social-btn:hover {
  background: #1e7d84;
}

.social-btn:hover svg {
  fill: #fff;
  opacity: 1;
}

/* Bottom */
.footer-bottom {
  padding-top: 60px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: #6f728c;
}

/* RESPONSIVO */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-cols {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 30px;
  }
}

@media (max-width: 520px) {
  .footer-cols {
    grid-template-columns: 1fr;
  }
}