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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#071426;
  color:#fff;
  line-height:1.6;
}

.container{
  width:min(1200px,90%);
  margin:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:10;
  background:rgba(7,20,38,.95);
  border-bottom:1px solid rgba(255,255,255,.08);
}

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

.logo img{max-height:60px;}
.logo{
  font-size:28px;
  font-weight:800;
  color:#16b8ff;
}

nav{
  display:flex;
  gap:28px;
}

nav a{
  color:#fff;
  text-decoration:none;
  font-weight:600;
}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:36px;
  height:36px;
  background:none;
  border:none;
  cursor:pointer;
  padding:0;
}

.nav-toggle span{
  display:block;
  width:100%;
  height:2px;
  background:#fff;
  border-radius:2px;
  transition:transform .25s ease,opacity .25s ease;
}

.nav-toggle.is-active span:nth-child(1){
  transform:translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2){
  opacity:0;
}

.nav-toggle.is-active span:nth-child(3){
  transform:translateY(-7px) rotate(-45deg);
}

.hero{
  padding:120px 0;
  background:linear-gradient(135deg,#071426,#0d2441);
}

.hero-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:60px;
  align-items:center;
}

.tag,.mini-title{
  color:#16b8ff;
  font-size:14px;
  font-weight:700;
  letter-spacing:2px;
}

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

.hero p{
  font-size:20px;
  color:#d7e2ef;
}

.hero-buttons{
  margin-top:40px;
  display:flex;
  gap:20px;
}

.btn-primary,.btn-secondary{
  padding:16px 28px;
  border-radius:10px;
  text-decoration:none;
  font-weight:700;
}

.btn-primary{
  background:#16b8ff;
  color:#071426;
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.2);
  color:#fff;
}

.hero-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  padding:40px;
}

.numbers{
  display:flex;
  gap:40px;
  margin-top:50px;
}

.numbers strong{
  display:block;
  font-size:22px;
}

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

.section-title span{
  color:#16b8ff;
  font-weight:700;
  letter-spacing:2px;
  font-size:14px;
}

.section-title h2{
  font-size:48px;
  margin-top:15px;
}

.pain,.services,.consultor,.testimonials,.blog,.contact{
  padding:120px 0;
}

.pain-grid,.services-grid,.blog-grid{
  display:grid;
  gap:24px;
}

.pain-grid{
  grid-template-columns:repeat(3,1fr);
}

.services-grid{
  grid-template-columns:repeat(3,1fr);
}

.blog-grid{
  grid-template-columns:repeat(3,1fr);
}

.testimonial-card{
  background: rgba(13, 32, 55, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 36px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(32, 185, 242, 0.35);
  box-shadow: 0 20px 70px rgba(32, 185, 242, 0.1);
}

.pain-card,.service-card,.blog-card{
  background:#0d2037;
  border:1px solid rgba(255,255,255,.06);
  border-radius:20px;
  padding:30px;
}

.service-card{
  text-decoration:none;
  color:#fff;
  transition:.3s;
}

.service-card:hover{
  transform:translateY(-6px);
  border-color:#16b8ff;
}

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

.consultor-photo img{max-width:100%;}


.check-list{
  margin-top:30px;
  padding-left:20px;
}

.check-list li{
  margin-bottom:12px;
}

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

.stars{
  color:#16b8ff;
  margin-bottom:20px;
}

.contact-text{
  margin:20px 0 40px;
}

.contact-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:32px;
}

.contact-item{
  background:linear-gradient(145deg,rgba(255,255,255,.08),rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.12);
  border-radius:12px;
  padding:20px;
  transition:all .3s ease;
}

.contact-item:hover{
  border-color:rgba(32,185,242,.35);
  background:linear-gradient(145deg,rgba(255,255,255,.12),rgba(255,255,255,.04));
  box-shadow:0 12px 36px rgba(32,185,242,.12);
  transform:translateY(-2px);
}

.contact-item strong{
  display:block;
  color:#20b9f2;
  font-size:.9rem;
  font-weight:800;
  margin-bottom:8px;
  letter-spacing:.5px;
}

.contact-item span{
  display:block;
  color:#d7e5f2;
  font-size:.98rem;
  line-height:1.5;
}

.contact-item a{
  color:#20b9f2;
  text-decoration:none;
  transition:all .2s ease;
  font-weight:700;
}

.contact-item a:hover{
  color:#fff;
}

.socials{
  margin-top:30px;
  display:flex;
  gap:20px;
}

.socials a{
  color:#16b8ff;
  text-decoration:none;
}

.form{
  display:flex;
  flex-direction:column;
  gap:20px;
  background:linear-gradient(145deg,rgba(13,32,55,.95),rgba(13,32,55,.85));
  border:1px solid rgba(32,185,242,.15);
  border-radius:16px;
  padding:40px;
  backdrop-filter:blur(10px);
}

.form-group{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.form-label{
  color:#20b9f2;
  font-size:.85rem;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.5px;
}

.form input,.form textarea,.form select{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(32, 185, 242, 0.25);
  border-radius:10px;
  padding:14px 16px;
  color:#fff;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-family:inherit;
}

.form select{
  appearance:none;
  -webkit-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2320b9f2' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:44px;
  cursor:pointer;
}

.form select option{
  background:#0d2441;
  color:#fff;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: rgba(32, 185, 242, 0.6);
  background-color: rgba(255,255,255,.1);
  box-shadow: 0 0 0 3px rgba(32, 185, 242, 0.15);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form textarea{
  min-height:160px;
}

.form button{
  background: linear-gradient(135deg, #20b9f2, #12a8df);
  border:none;
  padding:16px 24px;
  border-radius:12px;
  font-weight:800;
  cursor:pointer;
  color: #061120;
  box-shadow: 0 16px 42px rgba(32, 185, 242, 0.34);
  transition: all 0.3s ease;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  min-height:54px;
  margin-top:8px;
}

.form button:hover{
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(32, 185, 242, 0.42);
}

.form button:active{
  transform: translateY(-1px);
}

.form-error{
  color:#ff8a8a;
  font-size:.85rem;
}

.form-feedback{
  margin-top:12px;
  font-size:.95rem;
  font-weight:600;
}

.form-feedback.success{
  color:#3ddc84;
}

.form-feedback.error{
  color:#ff8a8a;
}

.blog-empty{
  padding:48px 0;
  text-align:center;
}

.blog-empty h3{
  margin-bottom:8px;
  color:#06172c;
}

.blog-empty p{
  color:#56667b;
  margin-bottom:20px;
}

.post-cover-image{
  width:100%;
  border-radius:12px;
  margin-bottom:2rem;
}

.service-hero{
  padding:120px 0 60px;
}

.service-content{
  padding:60px 0 100px;
}

.narrow{
  max-width:800px;
}

@media(max-width:980px){

.hero-grid,
.consultor-grid,
.contact-grid,
.pain-grid,
.services-grid,
.blog-grid,
.testimonial-slider{
  grid-template-columns:1fr;
}

.hero h1{
  font-size:46px;
}

.nav-toggle{
  display:flex;
}

nav{
  display:none;
  position:absolute;
  top:100%;
  left:0;
  right:0;
  flex-direction:column;
  gap:0;
  background:#0a1c33;
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 20px 30px rgba(0,0,0,.25);
}

nav.is-open{
  display:flex;
}

nav a{
  padding:16px 24px;
  border-top:1px solid rgba(255,255,255,.06);
}

.numbers{
  flex-direction:column;
}

.contact-items{
  grid-template-columns:repeat(2,1fr);
}

.form{
  padding:30px;
}
}

@media(max-width:680px){
.contact-items{
  grid-template-columns:1fr;
}

.form{
  padding:24px;
}
}

.services {
  padding: 110px 0;
  background:
    radial-gradient(circle at top left, rgba(42, 177, 229, 0.08), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
}

.services .section-head {
  max-width: 850px;
  margin-bottom: 56px;
}

.services .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c59a3e;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.services .section-head h2 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #06172c;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services .section-head p {
  max-width: 760px;
  margin: 0;
  color: #5e6b7e;
  font-size: 1.14rem;
  line-height: 1.65;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 250px;
  padding: 36px 34px 32px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(9, 29, 54, 0.08);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(9, 29, 54, 0.08);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(42, 177, 229, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,0), rgba(42,177,229,0.04));
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.service-card span {
  display: block;
  margin-bottom: 18px;
  color: #c49a45;
  font-size: 1.03rem;
  font-weight: 800;
}

.service-card h3 {
  position: relative;
  margin: 0 0 16px;
  color: #06172c;
  font-size: clamp(1.33rem, 2vw, 1.73rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  z-index: 1;
}

.service-card p {
  position: relative;
  margin: 0 0 22px;
  color: #5d6a7d;
  font-size: 1.03rem;
  line-height: 1.65;
  z-index: 1;
}

.service-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #06172c;
  font-weight: 800;
  text-decoration: none;
  z-index: 1;
}

.service-card a::after {
  content: "→";
  transform: translateX(0);
  transition: transform 0.25s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(42, 177, 229, 0.38);
  box-shadow: 0 30px 80px rgba(9, 29, 54, 0.13);
}

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

.service-card:hover a::after {
  transform: translateX(5px);
}

.service-card.featured {
  background:
    linear-gradient(135deg, #071a31 0%, #102b4c 100%);
  border-color: rgba(42, 177, 229, 0.28);
}

.service-card.featured h3,
.service-card.featured a {
  color: #ffffff;
}

.service-card.featured p {
  color: #cbd7e6;
}

.service-card.featured span {
  color: #2ab1e5;
}

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .services {
    padding: 78px 0;
  }

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

  .service-card {
    min-height: auto;
    padding: 30px 26px;
    border-radius: 20px;
  }

  .services .section-head {
    margin-bottom: 38px;
  }
}
.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 110px;
  background:
    radial-gradient(circle at 78% 20%, rgba(42, 177, 229, 0.22), transparent 32%),
    linear-gradient(135deg, #061120 0%, #0a1e35 48%, #071426 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), transparent);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -210px;
  background: rgba(42, 177, 229, 0.18);
  filter: blur(90px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}

.hero-copy {
  max-width: 700px;
}

.hero .tag {
  display: inline-block;
  margin-bottom: 22px;
  color: #20b9f2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.4rem, 4.2vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero-copy > p {
  max-width: 640px;
  margin: 28px 0 0;
  color: #d7e5f2;
  font-size: 1.28rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 42px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #20b9f2, #12a8df);
  color: #061120;
  box-shadow: 0 18px 42px rgba(32, 185, 242, 0.26);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.4), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-secondary {
  color: #ffffff;
  border: 2px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.035);
  transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-3px);
}

.btn-primary:hover {
  box-shadow: 0 28px 60px rgba(32, 185, 242, 0.38);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-secondary:hover {
  border-color: rgba(32,185,242,0.6);
  background: rgba(32,185,242,0.1);
  box-shadow: 0 12px 36px rgba(32,185,242,0.18);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 690px;
  margin-top: 58px;
}

.hero-metrics div {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.hero-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 2.23rem;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hero-metrics span {
  display: block;
  margin-top: 8px;
  color: #adc0d4;
  font-size: 0.93rem;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
  min-height: 640px;
}

.hero-photo {
  position: absolute;
  right: 30px;
  bottom: 0;
  width: min(440px, 88%);
  height: 610px;
  border-radius: 34px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 40px 110px rgba(0,0,0,0.36);
}

.hero-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,17,32,0.42), transparent 45%),
    radial-gradient(circle at 50% 12%, rgba(32,185,242,0.16), transparent 35%);
  z-index: 1;
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.floating-card {
  position: absolute;
  z-index: 2;
  width: 270px;
  padding: 22px;
  border-radius: 22px;
  background: rgba(13, 32, 55, 0.78);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.28);
}

.floating-card span {
  display: block;
  margin-bottom: 10px;
  color: #20b9f2;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.floating-card strong {
  display: block;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.35;
}

.floating-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.floating-card li {
  position: relative;
  padding-left: 18px;
  color: #d8e4ef;
  font-size: 0.96rem;
  line-height: 1.65;
}

.floating-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  background: #20b9f2;
  border-radius: 50%;
}

.card-top {
  top: 70px;
  left: 0;
  animation: float-card 6s ease-in-out infinite;
}

.card-bottom {
  right: 0;
  bottom: 70px;
  animation: float-card 7s ease-in-out infinite;
  animation-delay: -2.5s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@media (prefers-reduced-motion: reduce) {
  .card-top,
  .card-bottom {
    animation: none;
  }
}

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

  .hero-visual {
    min-height: 560px;
  }

  .hero-photo {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }

  .card-top {
    left: 4%;
  }

  .card-bottom {
    right: 4%;
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 82px 0 70px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
    letter-spacing: -0.06em;
  }

  .hero-copy > p {
    font-size: 1.08rem;
  }

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

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

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-visual {
    min-height: 620px;
  }

  .hero-photo {
    width: 100%;
    height: 520px;
    border-radius: 28px;
  }

  .floating-card {
    width: calc(100% - 32px);
  }

  .card-top {
    top: 26px;
    left: 16px;
  }

  .card-bottom {
    right: 16px;
    bottom: 18px;
  }
}
.counter{font-size:30px !important;}
.pain {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 15% 10%, rgba(32, 185, 242, 0.12), transparent 32%),
    linear-gradient(180deg, #071426 0%, #08192d 100%);
}

.pain-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.026) 1px, transparent 1px);
  background-size: 70px 70px;
  opacity: 0.55;
  pointer-events: none;
}

.pain::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -180px;
  bottom: -190px;
  background: rgba(32, 185, 242, 0.12);
  filter: blur(90px);
  border-radius: 50%;
}

.pain .container {
  position: relative;
  z-index: 1;
}

.pain-head {
  max-width: 980px;
  margin: 0 auto 62px;
  text-align: center;
}

.pain-head .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #20b9f2;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.22em;
}

.pain-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.8vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.pain-head p {
  max-width: 760px;
  margin: 26px auto 0;
  color: #b8cadc;
  font-size: 1.16rem;
  line-height: 1.75;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.pain-card {
  position: relative;
  min-height: 285px;
  padding: 34px;
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.095);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(32, 185, 242, 0.13), transparent 38%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pain-number {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 26px;
  color: #c59a3e;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 6px 10px;
  background: rgba(197, 154, 62, 0.12);
  border-radius: 6px;
}

.pain-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.42rem;
  line-height: 1.23;
  letter-spacing: -0.035em;
}

.pain-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #b7c8d9;
  font-size: 1rem;
  line-height: 1.7;
}

.pain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(32, 185, 242, 0.45);
  background:
    linear-gradient(145deg, rgba(255,255,255,0.1), rgba(255,255,255,0.04));
  box-shadow: 0 28px 100px rgba(32, 185, 242, 0.14);
}

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

.pain-card-featured {
  background:
    linear-gradient(145deg, rgba(32,185,242,0.16), rgba(255,255,255,0.035));
  border-color: rgba(32,185,242,0.32);
}

.pain-bottom {
  max-width: 920px;
  margin: 54px auto 0;
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.pain-bottom p {
  margin: 0;
  color: #d9e6f2;
  font-size: 1.03rem;
  line-height: 1.6;
}

.pain-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 32px;
  border-radius: 14px;
  background: linear-gradient(135deg, #20b9f2, #12a8df);
  color: #061120;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(32, 185, 242, 0.28);
  transition: all 0.3s ease;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.pain-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(32, 185, 242, 0.38);
}

@media (max-width: 1080px) {
  .pain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pain-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 680px) {
  .pain {
    padding: 82px 0;
  }

  .pain-head {
    text-align: left;
    margin-bottom: 40px;
  }

  .pain-head h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

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

  .pain-card {
    min-height: auto;
    padding: 28px;
    border-radius: 22px;
  }

  .pain-bottom {
    padding: 28px;
  }

  .pain-link {
    width: 100%;
    text-align: center;
  }
}
.services {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(32, 185, 242, 0.10), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 23, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 23, 44, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.45), transparent 70%);
  pointer-events: none;
}

.services .container {
  position: relative;
  z-index: 1;
}

.services-head {
  margin-bottom: 58px;
}

.services .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #c59a3e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.services-title-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: end;
}

.services-title-grid h2 {
  margin: 0;
  color: #06172c;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.contact h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.services-title-grid p {
  margin: 0 0 10px;
  color: #5d6b7f;
  font-size: 1.13rem;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 280px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(6, 23, 44, 0.08);
  box-shadow: 0 22px 70px rgba(6, 23, 44, 0.08);
  overflow: hidden;
  transition: 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(32, 185, 242, 0.15), transparent 38%);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.service-card span,
.service-card h3,
.service-card p,
.service-card a {
  position: relative;
  z-index: 1;
}

.service-card span {
  margin-bottom: 26px;
  color: #c59a3e;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin: 0 0 16px;
  color: #06172c;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.055em;
  font-weight: 700;
}

.service-card p {
  margin: 0 0 26px;
  color: #5d6b7f;
  font-size: 1rem;
  line-height: 1.68;
}

.service-card a {
  margin-top: auto;
  color: #06172c;
  font-weight: 900;
  text-decoration: none;
}

.service-card a::after {
  content: " →";
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(32, 185, 242, 0.48);
  box-shadow: 0 36px 120px rgba(32, 185, 242, 0.16);
}

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

.service-card-large {
  grid-column: span 2;
  background:
    linear-gradient(135deg, #06172c 0%, #0d2948 100%);
}

.service-card-large span,
.service-card-featured span {
  color: #20b9f2;
}

.service-card-large h3,
.service-card-large a,
.service-card-featured h3,
.service-card-featured a {
  color: #ffffff;
}

.service-card-large p,
.service-card-featured p {
  color: #c7d5e4;
}

.service-card-large h3 {
  max-width: 620px;
  font-size: clamp(2rem, 3vw, 3.1rem);
}

.service-card-large p {
  max-width: 700px;
  font-size: 1.1rem;
}

.service-card-featured {
  background:
    linear-gradient(135deg, #08213b 0%, #06172c 100%);
  border-color: rgba(32, 185, 242, 0.28);
}

@media (max-width: 1024px) {
  .services-title-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card-large {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {
  .services {
    padding: 82px 0;
  }

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

  .service-card,
  .service-card-large {
    grid-column: span 1;
    min-height: auto;
    padding: 28px;
    border-radius: 22px;
  }

  .services-title-grid h2 {
    font-size: clamp(2.4rem, 13vw, 3.6rem);
  }
}
.about-company {
  position: relative;
  overflow: hidden;
  padding: 140px 0;
  background:
    radial-gradient(circle at 85% 20%, rgba(32, 185, 242, 0.13), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.about-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 23, 44, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 23, 44, 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.32), transparent 72%);
  pointer-events: none;
}

.about-company-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.about-company .eyebrow,
.pillars .eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  color: #c59a3e;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.about-company h2 {
  margin: 0 0 30px;
  color: #06172c;
  font-size: clamp(2.3rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.about-company-copy p {
  max-width: 820px;
  margin: 0 0 18px;
  color: #56667b;
  font-size: 1.08rem;
  line-height: 1.78;
}

.about-company-panel {
  position: relative;
  padding: 42px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, #06172c 0%, #0c2a4a 100%);
  border: 1px solid rgba(32, 185, 242, 0.22);
  box-shadow: 0 34px 100px rgba(6, 23, 44, 0.24);
  overflow: hidden;
}

.about-company-panel::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -90px;
  top: -90px;
  background: rgba(32, 185, 242, 0.22);
  filter: blur(65px);
  border-radius: 50%;
}

.about-company-panel > span,
.about-company-panel h3,
.about-company-stats {
  position: relative;
  z-index: 1;
}

.about-company-panel > span {
  display: inline-block;
  margin-bottom: 18px;
  color: #20b9f2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-company-panel h3 {
  margin: 0 0 34px;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-company-stats {
  display: grid;
  gap: 18px;
}

.about-company-stats div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
}

.about-company-stats strong {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1;
}

.about-company-stats small {
  display: block;
  margin-top: 8px;
  color: #bfd0df;
  font-size: 0.93rem;
  line-height: 1.4;
}

.pillars {
  position: relative;
  padding: 140px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(32, 185, 242, 0.11), transparent 30%),
    linear-gradient(180deg, #071426 0%, #08192d 100%);
}

.pillars-head {
  max-width: 960px;
  margin: 0 auto 58px;
  text-align: center;
}

.pillars-head h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 4.8vw, 3.7rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.pillars-head p {
  max-width: 720px;
  margin: 24px auto 0;
  color: #b8cadc;
  font-size: 1.12rem;
  line-height: 1.72;
}

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

.pillar-card {
  min-height: 370px;
  padding: 38px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.065), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 24px 80px rgba(0,0,0,0.18);
}

.pillar-card span {
  display: inline-block;
  margin-bottom: 32px;
  color: #20b9f2;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.pillar-card h3 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.pillar-card p {
  margin: 0;
  color: #b8cadc;
  font-size: 1.02rem;
  line-height: 1.72;
}

.pillar-card-featured {
  background:
    linear-gradient(145deg, rgba(32,185,242,0.18), rgba(255,255,255,0.035));
  border-color: rgba(32,185,242,0.35);
  box-shadow: 0 30px 100px rgba(32,185,242,0.22);
}

.pillars-bottom {
  max-width: 940px;
  margin: 46px auto 0;
  padding: 30px 36px;
  border-radius: 24px;
  text-align: center;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.10);
}

.pillars-bottom p {
  margin: 0;
  color: #d9e6f2;
  font-size: 1.1rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .about-company-grid,
  .pillars-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .about-company,
  .pillars {
    padding: 82px 0;
  }

  .about-company h2,
  .pillars-head h2 {
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .about-company-panel,
  .pillar-card {
    padding: 28px;
    border-radius: 24px;
  }

  .pillars-head {
    text-align: left;
  }
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 100px 0 40px;
  background:
    radial-gradient(circle at 15% 20%, rgba(32, 185, 242, 0.12), transparent 28%),
    linear-gradient(180deg, #061120 0%, #08192d 100%);
  border-top: 1px solid rgba(32, 185, 242, 0.15);
}

.footer-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.5;
  pointer-events: none;
}

.footer .container {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 0.7fr 1fr;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  width: 180px;
  margin-bottom: 24px;
}

.footer-brand p {
  max-width: 420px;
  margin: 0;
  color: #b8cadc;
  font-size: 1rem;
  line-height: 1.8;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-socials a:hover {
  background: rgba(32,185,242,0.16);
  border-color: rgba(32,185,242,0.28);
  transform: translateY(-2px);
}

.footer-column > span {
  display: inline-block;
  margin-bottom: 24px;
  color: #20b9f2;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-column nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-column nav a {
  color: #dbe7f2;
  font-size: 0.98rem;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-column nav a:hover {
  color: #20b9f2;
  transform: translateX(4px);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-contact-items strong {
  display: block;
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.98rem;
}

.footer-contact-items p {
  margin: 0;
  color: #b8cadc;
  font-size: 0.93rem;
  line-height: 1.65;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
}

.footer-bottom p {
  margin: 0;
  color: #7f94ab;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (max-width: 1080px) {
  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .footer {
    padding: 72px 0 26px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-bottom: 42px;
  }

  .footer-brand img {
    width: 160px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Blog / listagem */
.blog-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 78% 18%, rgba(32,185,242,0.18), transparent 32%),
    linear-gradient(135deg, #061120 0%, #0a1e35 52%, #071426 100%);
}

.blog-hero-bg,
.post-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.75), transparent);
  pointer-events: none;
}

.blog-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 70px;
  align-items: center;
}

.blog-hero h1 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.post-hero h1 {
  margin: 20px 0 0;
  color: #ffffff;
  font-size: clamp(3rem, 5.6vw, 6rem);
  line-height: .96;
  letter-spacing: -0.075em;
}

.blog-hero p,
.post-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: #d7e5f2;
  font-size: 1.22rem;
  line-height: 1.75;
}

.blog-hero-card {
  padding: 42px;
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 34px 100px rgba(0,0,0,.22);
}

.blog-hero-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: #20b9f2;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.blog-hero-card h2 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 2.13rem;
  line-height: 1.08;
  letter-spacing: -.055em;
}

.blog-hero-card p {
  margin: 0;
  color: #b8cadc;
  font-size: 1rem;
}

.blog-list-page,
.related-posts {
  position: relative;
  padding: 110px 0;
  background:
    radial-gradient(circle at 8% 8%, rgba(32,185,242,.09), transparent 34%),
    linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

.blog-list-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 34px;
}

.blog-list-head .eyebrow,
.blog-cta .eyebrow {
  display: inline-block;
  color: #c59a3e;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .2em;
}

.blog-list-head h2 {
  margin: 0;
  color: #06172c;
  font-size: clamp(2.6rem, 4.8vw, 3rem);
  line-height: .96;
  letter-spacing: -.075em;
}

.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
}

.blog-filter a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(6,23,44,.08);
  color: #5d6b7f;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 40px rgba(6,23,44,.06);
}

.blog-filter a.active,
.blog-filter a:hover {
  color: #06172c;
  border-color: rgba(32,185,242,.36);
  background: rgba(32,185,242,.12);
}

.blog-grid-page {
  grid-template-columns: repeat(3, 1fr);
}

.blog-card {
  position: relative;
  min-height: 300px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(6,23,44,.08);
  box-shadow: 0 22px 70px rgba(6,23,44,.08);
  overflow: hidden;
  transition: .28s ease;
}

.blog-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(32,185,242,.15), transparent 38%);
  opacity: 0;
  transition: opacity .28s ease;
}

.blog-card span,
.blog-card h3,
.blog-card p,
.blog-card a {
  position: relative;
  z-index: 1;
}

.blog-card span {
  display: inline-block;
  margin-bottom: 24px;
  color: #c59a3e;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0 0 18px;
  color: #06172c;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  font-weight: 700;
}

.blog-card p {
  margin: 0 0 28px;
  color: #5d6b7f;
  font-size: 1rem;
  line-height: 1.7;
}

.blog-card a {
  margin-top: auto;
  color: #06172c;
  font-weight: 900;
  text-decoration: none;
}

.blog-card a::after {
  content: " →";
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(32,185,242,.48);
  box-shadow: 0 36px 120px rgba(32,185,242,.18);
}

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

.blog-cta {
  padding: 0 0 110px;
  background: #ffffff;
}

.blog-cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 44px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top right, rgba(32,185,242,.18), transparent 32%),
    linear-gradient(145deg, #06172c 0%, #0d2948 100%);
  border: 1px solid rgba(32,185,242,.22);
  box-shadow: 0 34px 100px rgba(6,23,44,.22);
}

.blog-cta-box h2 {
  max-width: 780px;
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.065em;
}

/* Post detalhe */
.post-article {
  background: white;
}

.post-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 78% 18%, rgba(32,185,242,0.18), transparent 32%),
    linear-gradient(135deg, #061120 0%, #0a1e35 52%, #071426 100%);
}

.post-hero-content {
  max-width: 800px;
}

.back-link {
  display: inline-flex;
  margin-bottom: 28px;
  color: #b8cadc;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
  font-size: .95rem;
}

.back-link:hover {
  color: #20b9f2;
}

.post-category {
  display: inline-block;
  background: #c59a3e;
  color: white;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 16px;
}

.post-hero h1 {
  color: white;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  margin-bottom: 20px;
  font-weight: 800;
}

.post-excerpt {
  color: #d7e5f2;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.post-info {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .95rem;
  color: #b8cadc;
}

.post-author, .post-date, .post-reading-time {
  display: inline-flex;
  align-items: center;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.post-meta span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  color: #d7e5f2;
  font-size: .86rem;
  font-weight: 800;
}

.post-content {
  padding: 80px 0 100px;
  background: #ffffff;
  color: #06172c;
}

.post-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 760px);
  gap: 60px;
  align-items: start;
}

.post-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.post-widget {
  padding: 24px;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid #e0e7f1;
}

.post-widget h4 {
  color: #06172c;
  font-size: .95rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.post-toc {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.post-toc a {
  color: #56667b;
  text-decoration: none;
  font-size: .9rem;
  transition: .2s ease;
  border-left: 2px solid transparent;
  padding-left: 12px;
}

.post-toc a:hover {
  color: #20b9f2;
  border-left-color: #20b9f2;
}

.post-share {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.share-btn {
  display: block;
  padding: 13px 16px;
  background: white;
  border: 1px solid rgba(6, 23, 44, .12);
  border-radius: 10px;
  color: #06172c;
  text-decoration: none;
  text-align: center;
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .3px;
  transition: all .3s ease;
  cursor: pointer;
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .1);
}

.share-linkedin {
  border-color: rgba(10, 102, 194, .2);
}

.share-linkedin:hover {
  background: #0a66c2;
  color: white;
  border-color: #0a66c2;
}

.share-whatsapp {
  border-color: rgba(37, 211, 102, .2);
}

.share-whatsapp:hover {
  background: #25d366;
  color: white;
  border-color: #25d366;
}

.share-copy {
  border-color: rgba(32, 185, 242, .2);
}

.share-copy:hover {
  background: #20b9f2;
  color: white;
  border-color: #20b9f2;
}

.post-sidebar-cta {
  background: linear-gradient(135deg, #061120 0%, #0a1e35 100%);
  color: white;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
}

.post-sidebar-cta h4 {
  color: white;
  margin-bottom: 8px;
  font-size: 1rem;
}

.post-sidebar-cta p {
  color: #d7e5f2;
  font-size: .9rem;
  margin-bottom: 16px;
}

.post-body {
  max-width: 760px;
}

.post-lead {
  color: #06172c;
  font-size: 1.33rem;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 40px;
}

.post-body h2 {
  margin: 50px 0 22px;
  color: #06172c;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
}

.post-body p {
  margin: 0 0 22px;
  color: #56667b;
  font-size: 1.08rem;
  line-height: 1.8;
}

.post-body blockquote {
  margin: 44px 0;
  padding: 28px 32px;
  border-left: 5px solid #20b9f2;
  border-radius: 12px;
  background: #f7f9fc;
  color: #06172c;
  font-size: 1.15rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: -.02em;
}

.post-highlight {
  margin: 48px 0;
  padding: 38px;
  border-radius: 16px;
  background:
    linear-gradient(135deg, #061120 0%, #0a1e35 100%);
  border: 1px solid rgba(32, 185, 242, .2);
  color: #ffffff;
}

.post-highlight h3 {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.post-highlight ul {
  margin: 0;
  padding-left: 20px;
}

.post-highlight li {
  margin-bottom: 12px;
  color: #d7e5f2;
  line-height: 1.7;
}

.post-cta {
  margin: 60px 0;
  padding: 40px;
  border-radius: 16px;
  background: linear-gradient(135deg, #061120 0%, #0a1e35 100%);
  border: 1px solid rgba(32, 185, 242, .2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.post-cta-content {
  flex: 1;
}

.post-cta h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.post-cta p {
  color: #c7d5e4;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.post-cta .btn-primary {
  margin-top: 12px;
}

/* AUTOR */
.post-author-section {
  padding: 60px 0;
  background: #f7f9fc;
  border-top: 1px solid #e0e7f1;
}

.author-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e0e7f1;
  max-width: 600px;
}

.author-info h4 {
  color: #20b9f2;
  font-size: .85rem;
  font-weight: 800;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.author-info h3 {
  color: #06172c;
  font-size: 1.4rem;
  margin-bottom: 12px;
  font-weight: 800;
}

.author-info p {
  color: #56667b;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.author-link {
  color: #20b9f2;
  font-weight: 800;
  text-decoration: none;
  transition: .2s ease;
}

.author-link:hover {
  color: #0d47a1;
}

/* ARTIGOS RELACIONADOS */
.related-posts {
  padding: 100px 0;
  background: #ffffff;
}

.related-posts .section-title h2 {
  color: #06172c;
}

@media (max-width: 1024px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

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

  .post-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .blog-grid-page {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-cta-box {
    flex-direction: column;
    align-items: flex-start;
  }

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

@media (max-width: 680px) {
  .post-sidebar {
    grid-template-columns: 1fr;
  }

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

  .post-cta {
    padding: 28px;
  }

  .author-card {
    padding: 28px;
  }
}

@media (max-width: 680px) {
  .blog-hero,
  .post-hero {
    padding: 78px 0;
  }

  .blog-hero h1,
  .post-hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .blog-list-page,
  .post-content,
  .related-posts {
    padding: 78px 0;
  }

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

  .blog-card,
  .blog-hero-card,
  .blog-cta-box,
  .post-highlight,
  .post-cta {
    padding: 28px;
    border-radius: 24px;
  }

  .post-body blockquote {
    padding: 28px;
    font-size: 1.18rem;
  }
}
.blog-preview-action{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:60px;
}

.blog-preview-action .btn-primary{
    min-width:280px;
    min-height:60px;
    padding:0 34px;
    border-radius:14px;
    font-size:1rem;
    font-weight:800;
    text-decoration:none;
    transition:.3s ease;
}

.blog-preview-action .btn-primary:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(32,185,242,.28);
}

/* WHATSAPP FLUTUANTE */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.32);
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  color:#fff;
  font-size: 30px;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 14px 48px rgba(37, 211, 102, 0.42);
}

.whatsapp-float:active {
  transform: scale(0.98);
}

.whatsapp-icon {
  font-size: 1.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.whatsapp-text {
  display: none;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
  }

  /* Selo do reCAPTCHA usa position fixed via inline style do script do
     Google — sem !important ele fica embaixo do botão do WhatsApp. */
  .grecaptcha-badge {
    bottom: 90px !important;
  }
}

/* NOVO BLOG LAYOUT */
.blog-content{
  position:relative;
  padding:100px 0;
  background:linear-gradient(180deg,#f7f9fc 0%,#ffffff 100%);
}

.blog-layout{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:40px;
  align-items:start;
}

.blog-main{
  display:flex;
  flex-direction:column;
  gap:40px;
}

/* ARTIGO DESTAQUE */
.blog-featured-card{
  background:white;
  border:1px solid #e0e7f1;
  border-radius:16px;
  padding:40px;
  box-shadow:0 4px 16px rgba(6,23,44,.08);
  transition:all .3s ease;
}

.blog-featured-card:hover{
  border-color:#20b9f2;
  box-shadow:0 12px 40px rgba(32,185,242,.15);
}

.blog-featured-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:20px;
}

.blog-category{
  display:inline-block;
  background:#c59a3e;
  color:white;
  padding:6px 12px;
  border-radius:6px;
  font-size:.8rem;
  font-weight:800;
  letter-spacing:.5px;
}

.blog-meta{
  display:flex;
  gap:16px;
  font-size:.9rem;
  color:#56667b;
}

.blog-featured-card h2{
  margin:0 0 16px;
  color:#06172c;
  font-size:2rem;
  line-height:1.1;
  letter-spacing:-.035em;
}

.blog-excerpt{
  color:#56667b;
  font-size:1.1rem;
  line-height:1.7;
  margin-bottom:24px;
}

.blog-featured-footer{
  border-top:1px solid #e0e7f1;
  padding-top:20px;
}

.blog-read-link{
  color:#06172c;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

.blog-read-link:hover{
  color:#20b9f2;
}

/* GRID DE ARTIGOS */
.blog-articles-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.blog-article-card{
  background:white;
  border:1px solid #e0e7f1;
  border-radius:12px;
  padding:28px;
  transition:all .3s ease;
  display:flex;
  flex-direction:column;
}

.blog-article-card:hover{
  border-color:#20b9f2;
  box-shadow:0 8px 28px rgba(32,185,242,.12);
  transform:translateY(-3px);
}

.blog-article-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:12px;
  font-size:.85rem;
}

.blog-article-card h3{
  margin:0 0 12px;
  color:#06172c;
  font-size:1.2rem;
  line-height:1.3;
  letter-spacing:-.025em;
}

.blog-article-card p{
  color:#56667b;
  font-size:.95rem;
  line-height:1.6;
  margin-bottom:auto;
  padding-bottom:16px;
}

.blog-article-footer{
  border-top:1px solid #e0e7f1;
  padding-top:12px;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.blog-link{
  color:#06172c;
  font-weight:800;
  text-decoration:none;
  font-size:.9rem;
}

/* PAGINAÇÃO */
.blog-pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:24px;
  padding:40px 0;
}

.pagination-prev,.pagination-next{
  color:#06172c;
  font-weight:800;
  text-decoration:none;
  transition:.2s ease;
}

.pagination-prev:hover,.pagination-next:hover{
  color:#20b9f2;
}

.pagination-prev.disabled{
  color:#c0c7d0;
  cursor:not-allowed;
}

.pagination-dots{
  display:flex;
  gap:8px;
}

.pagination-dot{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:white;
  border:1px solid #e0e7f1;
  color:#06172c;
  font-weight:700;
  text-decoration:none;
  transition:all .2s ease;
}

.pagination-dot:hover,.pagination-dot.active{
  background:#20b9f2;
  color:white;
  border-color:#20b9f2;
}

/* SIDEBAR */
.blog-sidebar{
  position:sticky;
  top:120px;
  display:flex;
  flex-direction:column;
  gap:24px;
}

.sidebar-widget{
  background:white;
  border:1px solid #e0e7f1;
  border-radius:12px;
  padding:24px;
}

.sidebar-widget h4{
  color:#06172c;
  font-size:1rem;
  margin-bottom:16px;
  font-weight:800;
}

.sidebar-search{
  width:100%;
  padding:12px;
  border:1px solid #e0e7f1;
  border-radius:8px;
  font-size:.95rem;
  transition:all .2s ease;
}

.sidebar-search:focus{
  outline:none;
  border-color:#20b9f2;
  box-shadow:0 0 0 3px rgba(32,185,242,.1);
}

.sidebar-categories{
  list-style:none;
  padding:0;
}

.sidebar-categories li{
  margin-bottom:12px;
}

.sidebar-categories a{
  color:#56667b;
  text-decoration:none;
  font-size:.95rem;
  display:flex;
  justify-content:space-between;
  transition:.2s ease;
}

.sidebar-categories a:hover{
  color:#20b9f2;
}

.sidebar-categories span{
  color:#c0c7d0;
  font-size:.85rem;
}

.sidebar-recent{
  list-style:none;
  padding:0;
}

.sidebar-recent li{
  margin-bottom:16px;
  padding-bottom:16px;
  border-bottom:1px solid #e0e7f1;
}

.sidebar-recent li:last-child{
  margin-bottom:0;
  padding-bottom:0;
  border-bottom:none;
}

.recent-title{
  color:#06172c;
  text-decoration:none;
  font-size:.95rem;
  font-weight:600;
  line-height:1.4;
  display:block;
  margin-bottom:6px;
  transition:.2s ease;
}

.recent-title:hover{
  color:#20b9f2;
}

.recent-date{
  color:#c0c7d0;
  font-size:.8rem;
}

/* CTA SIDEBAR */
.sidebar-cta{
  background:linear-gradient(135deg,#061120 0%,#0a1e35 100%);
  color:white;
  border-radius:12px;
  padding:24px;
  text-align:center;
}

.sidebar-cta span{
  display:block;
  font-size:.8rem;
  color:#20b9f2;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:8px;
}

.sidebar-cta h4{
  color:white;
  margin-bottom:8px;
}

.sidebar-cta p{
  color:#d7e5f2;
  font-size:.95rem;
  margin-bottom:16px;
}

/* TÓPICOS PRINCIPAIS */
.blog-topics{
  padding:100px 0;
  background:#f7f9fc;
}

.blog-topics .section-title h2{
  color:#06172c;
}

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

.topic-card{
  background:white;
  border:1px solid #e0e7f1;
  border-radius:12px;
  padding:28px;
  text-align:center;
  text-decoration:none;
  transition:all .3s ease;
}

.topic-card:hover{
  border-color:#20b9f2;
  box-shadow:0 12px 36px rgba(32,185,242,.15);
  transform:translateY(-4px);
}

.topic-card h3{
  color:#06172c;
  font-size:1.2rem;
  margin-bottom:12px;
  font-weight:700;
}

.topic-card p{
  color:#56667b;
  font-size:.95rem;
}

/* NEWSLETTER */
.blog-newsletter{
  padding:100px 0;
  background:linear-gradient(135deg,#061120 0%,#0a1e35 100%);
}

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

.newsletter-content h2{
  color:white;
  font-size:2.2rem;
  margin-bottom:16px;
  letter-spacing:-.03em;
}

.newsletter-content p{
  color:#d7e5f2;
  font-size:1.1rem;
  margin-bottom:32px;
}

.newsletter-form{
  display:flex;
  gap:12px;
  margin:0 auto;
}

.newsletter-form input{
  flex:1;
  padding:14px 20px;
  border:none;
  border-radius:10px;
  font-size:1rem;
  min-height:54px;
}

.newsletter-form button{
  padding:14px 36px;
  background:linear-gradient(135deg,#20b9f2,#12a8df);
  color:#061120;
  border:none;
  border-radius:10px;
  font-weight:800;
  font-size:1rem;
  cursor:pointer;
  transition:all .3s ease;
  min-height:54px;
}

.newsletter-form button:hover{
  transform:translateY(-2px);
  box-shadow:0 12px 36px rgba(32,185,242,.28);
}

/* SERVIÇO */

.service-tag {
  display: inline-block;
  background: rgba(32, 185, 242, 0.12);
  color: #20b9f2;
  padding: 5px 12px;
  border-radius: 5px;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  border: 1px solid rgba(32, 185, 242, 0.25);
  text-transform: uppercase;
  white-space: nowrap;
  width: fit-content;
}

.service-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 60px;
  background:
    radial-gradient(circle at 78% 18%, rgba(32,185,242,0.18), transparent 32%),
    linear-gradient(135deg, #061120 0%, #0a1e35 52%, #071426 100%);
}

.service-hero-content {
  max-width: 800px;
}

.service-hero-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-excerpt {
  color: #d7e5f2;
  font-size: 1.2rem;
  line-height: 1.6;
}

.service-content {
  padding: 80px 0 100px;
  background: #ffffff;
  color: #06172c;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
}

.service-main {
  max-width: 100%;
}

.service-lead {
  color: #06172c;
  font-size: 1.12rem;
  line-height: 1.75;
  font-weight: 600;
  margin-bottom: 50px;
  padding: 24px 28px;
  border-left: 4px solid #20b9f2;
  border-radius: 12px;
  background: linear-gradient(135deg, #f9fbfe 0%, #f5f8fc 100%);
  border: 1px solid rgba(32, 185, 242, 0.15);
  box-shadow: 0 4px 12px rgba(32, 185, 242, 0.08);
  transition: all .3s ease;
}

.service-lead:hover {
  border-color: rgba(32, 185, 242, 0.25);
  box-shadow: 0 8px 24px rgba(32, 185, 242, 0.12);
}

.service-main h2 {
  margin: 40px 0 18px;
  color: #06172c;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 800;
}

.service-main p {
  margin: 0 0 22px;
  color: #56667b;
  font-size: 1.08rem;
  line-height: 1.8;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 30px 0 50px;
}

.service-list-item {
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f9fbfe 0%, #f5f8fc 100%);
  border: 1px solid rgba(32, 185, 242, 0.12);
  transition: all .3s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.service-list-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #20b9f2, #12a8df);
  opacity: 0;
  transition: opacity .3s ease;
}

.service-list-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(32,185,242,.15);
  border-color: rgba(32, 185, 242, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f9fbfe 100%);
}

.service-list-item:hover::before {
  opacity: 1;
}

.service-list-item strong {
  display: block;
  color: #06172c;
  font-size: 1.1rem;
  margin-bottom: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.service-list-item p {
  color: #56667b;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

.service-process-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin: 30px 0 50px;
  align-items: start;
}

.service-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.process-step {
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f9fbfe 0%, #f5f8fc 100%);
  border: 1px solid rgba(32, 185, 242, 0.12);
  position: relative;
  transition: all .3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(32,185,242,.15);
  border-color: rgba(32, 185, 242, 0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f9fbfe 100%);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-size: 1.8rem;
  font-weight: 900;
  color: white;
  letter-spacing: -.05em;
  margin-bottom: 20px;
  line-height: 1;
  background: linear-gradient(135deg, #20b9f2, #12a8df);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(32, 185, 242, 0.25);
}

.process-step h3 {
  color: #06172c;
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 12px;
  line-height: 1.3;
}

.process-step p {
  color: #56667b;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

.service-process-image {
  position: sticky;
  top: 140px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #f9fbfe 0%, #f5f8fc 100%);
  border: 1px solid rgba(32, 185, 242, 0.12);
  min-height: 500px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b8cadc;
  font-size: .95rem;
  font-weight: 500;
  text-align: center;
  box-shadow: 0 12px 40px rgba(32, 185, 242, 0.1);
}

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

.service-benefits {
  margin: 30px 0 60px;
  padding-left: 0;
  list-style: none;
}

.service-benefits li {
  margin-bottom: 18px;
  color: #56667b;
  font-size: 1.05rem;
  line-height: 1.8;
  position: relative;
  padding-left: 28px;
}

.service-benefits li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #20b9f2;
  font-weight: 900;
  font-size: 1.3rem;
  line-height: 1;
}

.service-cta-section {
  margin: 80px 0;
  padding: 50px;
  border-radius: 16px;
  background: linear-gradient(135deg, #061120 0%, #0a1e35 100%);
  border: 1px solid rgba(32, 185, 242, .2);
  text-align: center;
}

.service-cta-section h2 {
  color: white;
  margin: 0 0 20px;
  font-size: 1.8rem;
  font-weight: 800;
}

.service-cta-section p {
  color: #d7e5f2;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.service-sidebar {
  position: sticky;
  top: 140px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: fit-content;
}

.service-widget {
  padding: 24px;
  border-radius: 12px;
  background: #f7f9fc;
  border: 1px solid #e0e7f1;
  transition: all .3s ease;
}

.service-widget:hover {
  border-color: #20b9f2;
  box-shadow: 0 6px 20px rgba(32,185,242,.08);
}

.service-widget h4 {
  color: #06172c;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.3;
}

.service-info-list,
.service-next-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-info-list li,
.service-next-list li {
  padding: 12px 0;
  border-bottom: 1px solid #e0e7f1;
  color: #56667b;
  font-size: .9rem;
  line-height: 1.6;
}

.service-info-list li:last-child,
.service-next-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-info-list strong,
.service-next-list strong {
  display: block;
  color: #06172c;
  font-weight: 800;
  margin-bottom: 4px;
  font-size: .9rem;
}

.service-cta-sidebar {
  background: linear-gradient(135deg, #061120 0%, #0a1e35 100%);
  color: white;
  padding: 28px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(32,185,242,.2);
}

.service-cta-sidebar h4 {
  color: white;
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.3;
}

.service-cta-sidebar p {
  color: #d7e5f2;
  font-size: .85rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-faq {
  padding: 100px 0;
  background: linear-gradient(135deg, #061120 0%, #0a1e35 100%);
  color: white;
}

.service-faq h2 {
  color: white;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 60px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.faq-item {
  padding: 40px;
  border-radius: 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(32,185,242,.25);
  transition: all .3s ease;
  backdrop-filter: blur(10px);
}

.faq-item:hover {
  background: rgba(255,255,255,.12);
  border-color: rgba(32,185,242,.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(32, 185, 242, 0.15);
}

.faq-item h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.4;
}

.faq-item p {
  color: #d7e5f2;
  font-size: .95rem;
  line-height: 1.7;
  margin: 0;
}

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

  .blog-sidebar{
    position:static;
  }

  .topics-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

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

  .blog-featured-header{
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
  }

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

  .newsletter-form{
    flex-direction:column;
  }

  .sidebar-widget{
    padding:20px;
  }

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

  .service-sidebar {
    position: static;
  }

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

  .service-process-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-process-image {
    position: static;
    min-height: 350px;
  }

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

/* ================================
   SCROLL REVEAL
   ================================ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cascata leve nos grids de cards, pra não entrarem todos de uma vez */
.pain-grid .reveal,
.pillars-grid .reveal,
.service-grid .reveal,
.services-grid .reveal,
.blog-grid .reveal,
.blog-articles-grid .reveal,
.testimonial-slider .reveal,
.topics-grid .reveal {
  transition-delay: calc(var(--reveal-index, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}