:root {
  --bg-color: rgb(18, 17, 31, 100%);
  --surface-color: #141414;
  --surface-border: #262626;
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --accent-color: #ff7518;
  --accent-hover: #ff8c3a;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

section[id] {
  scroll-margin-top: 7rem;
}

html.has-scroll-smoother {
  scroll-behavior: auto;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: poppins, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-color);
  transition:
    opacity 0.45s ease,
    visibility 1s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-content {
  width: min(320px, calc(100vw - 3rem));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.preloader-logo {
  width: min(220px, 72vw);
  height: auto;
  padding: 1rem;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.preloader-bar {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
}

.preloader-progress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  box-shadow: 0 0 18px rgba(255, 117, 24, 0.45);
  transition: width 0.2s ease;
}

.container {
  max-width: 1680px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar */
.navbar {
  padding: 1rem 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(18, 17, 31, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-sizing: border-box;
}

#smooth-content {
  padding-top: 5.5rem;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-icon img {
  width: 50%;
  height: 50%;
  background-color: var(--surface-border);
  border-radius: 10px;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  color: rgb(255, 255, 255, 70%);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav-link:hover {
  color: var(--text-primary);
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 0.5rem 0;
  min-width: 200px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(15px); /* Espaçamento da nav */
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition:
    background 0.2s,
    color 0.2s;
}

.dropdown-menu li a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--accent-color);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--accent-color);
  color: rgb(255, 255, 255, 0.8);
  border: none;
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  box-shadow: 0 4px 20px rgba(255, 117, 24, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--surface-border);
}

.btn-secondary:hover {
  border-color: var(--text-secondary);
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0rem 2rem 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--surface-border);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-color);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.highlight {
  color: rgb(255, 117, 24, 0.8);
  text-shadow:
    0 0 10px rgba(255, 117, 24, 0.8),
    /* Brilho interno mais forte */ 0 0 20px rgba(255, 117, 24, 0.6),
    /* Brilho médio */ 0 0 40px rgba(255, 117, 24, 0.4); /* Brilho externo mais espalhado */
}

.subtitle {
  color: rgb(255, 255, 255, 0.8);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 90%;
}

.cta-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.features-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.feature-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/* Hero Image */
.hero-image-wrapper {
  width: 60%;
  height: 60%;
  position: relative;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(255, 117, 24, 0.4) 0%,
    transparent 50%,
    transparent 100%
  );
  box-shadow: 0 0 80px rgba(255, 117, 24, 0.15);
  margin-left: auto;
  max-width: 90%;
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
  object-fit: cover;
}

.hero-content {
  max-width: 1200px;
}

.image-overlay-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.overlay-text {
  display: flex;
  flex-direction: column;
}

.overlay-text strong {
  font-size: 0.95rem;
  font-weight: 600;
}

.overlay-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.dot-orange {
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

/* Hero Carousel */
.hero.hero-carousel {
  display: block;
  padding: 2.5rem 0 2rem;
  min-height: auto;
}

.hero-carousel-header {
  max-width: 980px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

/* WhatsApp floating button */
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(180deg, #25D366, #128C7E);
  box-shadow: 0 8px 30px rgba(18, 140, 126, 0.25);
  color: #fff;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 2000;
  transition: transform 0.18s ease, opacity 0.18s ease;
}

/* When using smooth scroller (#smooth-content) keep the button inside content so it follows the flow */
#smooth-content .whatsapp-float {
  position: absolute;
  top: calc(5.5rem + 12px);
  right: 24px;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
  display: block;
}

.whatsapp-float:active {
  transform: scale(0.96);
}

.whatsapp-fixed {
  position: fixed !important;
  bottom: 24px !important;
  right: 24px !important;
  top: auto !important;
}

@media (max-width: 600px) {
  .whatsapp-float {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
  }
  .whatsapp-float img {
    width: 22px;
    height: 22px;
  }
}

.hero-carousel .badge {
  margin-bottom: 1rem;
}

.hero-carousel h1 {
  margin: 0;
  color: var(--text-primary);
  font-size: 4.1rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-slider {
  position: relative;
  min-height: 520px;
  perspective: 1200px;
}

.hero-slider::before,
.hero-slider::after {
  content: "";
  position: absolute;
  top: 9%;
  bottom: 15%;
  width: min(22vw, 280px);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.06);
  opacity: 0.45;
  pointer-events: none;
}

.hero-slider::before {
  left: 0;
  transform: translateX(-34%) scale(0.88) rotateY(14deg);
}

.hero-slider::after {
  right: 0;
  transform: translateX(34%) scale(0.88) rotateY(-14deg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  min-height: 520px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    radial-gradient(circle at 20% 15%, rgba(255, 117, 24, 0.2), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: rgba(255, 255, 255, 0.18);
  border-left-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
  opacity: 0;
  visibility: hidden;
  transform: translateX(36px) scale(0.97);
  transition:
    opacity 0.55s ease,
    visibility 0.55s ease,
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
  z-index: 2;
}

.hero-slide-image {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.hero-slide-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 17, 31, 0) 48%, rgba(18, 17, 31, 0.82) 100%);
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 6s ease;
}

.hero-slide.is-active .hero-slide-image img {
  transform: scale(1);
}

.hero-slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 4.5rem);
}

.hero-slide-count {
  width: max-content;
  margin-bottom: 1.25rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 117, 24, 0.32);
  background-color: rgba(255, 117, 24, 0.1);
  color: var(--accent-color);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-slide-content h2 {
  margin: 0 0 1.25rem;
  color: var(--text-primary);
  font-size: 3.1rem;
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-slide-content p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
  line-height: 1.7;
}

.hero-slide-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
  padding: 0;
  list-style: none;
}

.hero-slide-tags li {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-progress {
  display: grid;
  grid-template-columns: repeat(5, minmax(44px, 1fr));
  gap: 0.8rem;
  max-width: 640px;
  margin: 1.35rem auto 0;
}

.hero-progress-dot {
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hero-progress-track {
  display: block;
  height: 5px;
  overflow: hidden;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.14);
}

.hero-progress-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-hover));
  box-shadow: 0 0 18px rgba(255, 117, 24, 0.45);
  transform: scaleX(0);
  transform-origin: left;
}

.hero-progress-dot.is-active .hero-progress-fill {
  animation: heroSlideProgress 5.4s linear forwards;
}

.hero-carousel.is-paused .hero-progress-dot.is-active .hero-progress-fill {
  animation-play-state: paused;
}

.hero-progress-dot:hover .hero-progress-track,
.hero-progress-dot:focus-visible .hero-progress-track {
  background-color: rgba(255, 255, 255, 0.28);
}

.hero-progress-dot:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 6px;
  border-radius: 999px;
}

@keyframes heroSlideProgress {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 1.5rem 0rem;
  margin-top: 4rem;
  margin-bottom: 4rem;
  text-align: center;
}

.stat-item {
  border-right: 1px solid var(--surface-border);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item h2 {
  color: var(--accent-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.stat-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* Utils / Animations */
.fade-in {
  opacity: 0;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.split-reveal {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.split-line,
.split-line-mask {
  overflow: hidden;
}

.split-line {
  display: block;
  will-change: opacity, transform;
}

.split-word {
  display: inline-block;
  will-change: opacity, transform;
}

/* =========================================
   SEÇÃO DE SERVIÇOS
   ========================================= */

.services-section {
  padding: 6rem 0;
  border-top: 1px solid var(--surface-border); 
  display: flex;
  flex-direction: column;
  align-items: center;
}


.services-header {
  max-width: 800px;
  margin-bottom: 4rem;
  align-items: center;
  justify-content: center;
  
}

.kicker {
  display: block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}

.services-header h2 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  text-align: center;
}

.services-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 800px;
  text-align: center;
}

/* Grid de Cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-content {
  position: relative;
  z-index: 2;
  border-radius: 24px;
}

.luz {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(
    circle,
    rgba(255, 117, 24, 0.55) 0%,
    rgba(255, 117, 24, 0.28) 35%,
    rgba(255, 117, 24, 0) 70%
  );
  filter: blur(105px);
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: opacity 0.25s ease;
}

/* Design do Card */
.service-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(80px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover {
  background-color: rgba(20, 20, 20, 0.8);
  border-color: rgba(255, 117, 24, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Parte superior do Card (Ícone e Seta) */
.service-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 117, 24, 0.3); /* Bordinha laranja no ícone */
  background-color: rgba(
    255,
    117,
    24,
    0.05
  ); /* Fundo laranja bem translúcido */
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.service-icon i {
  line-height: 1;
}

.service-icon .ph-seal-check::before {
  content: "\2713";
  font-family: inherit;
  font-weight: 700;
}

.service-arrow {
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition:
    color 0.3s ease,
    transform 0.3s ease;
}

/* Animação da setinha ao focar no card */
.service-card:hover .service-arrow {
  color: var(--accent-color);
  transform: translate(2px, -2px); /* Puxa a setinha para a diagonal */
}

/* Textos do Card */
.service-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================
   SEÇÃO SOBRE A EMPRESA
   ========================================= */

.about-section {
  padding: 8rem 0; /* Espaçamento generoso para respiro na tela de 1680px */
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8rem; /* Distância entre a imagem e o texto */
  align-items: center;
}

/* Coluna da Imagem e Efeito Neon */
.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  padding: 2px;
 
  background: linear-gradient(
    135deg,
    rgba(255, 117, 24, 0.4) 0%,
    transparent 40%,
    transparent 100%
  );
  box-shadow: 0 0 60px rgba(255, 117, 24, 0.15);
  max-width: 80%; 
}

.about-image {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
  object-fit: cover;
}



/* Coluna de Texto */
.about-content h2 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Grid de Diferenciais (Checkmarks) */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 500;
}

.about-feature-item i {
  color: var(--accent-color);
  font-size: 1.4rem; /* Ícone com destaque laranja */
}

/* =========================================
   SEÇÃO COMO TRABALHAMOS (PROCESSO)
   ========================================= */

.process-section {
  padding: 8rem 0;
}

.process-header {
  text-align: center;
  margin-bottom: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-header h2 {
  font-size: 3rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

/* Grid de 4 Colunas */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* Estilo do Card (reaproveitando a lógica de hover dos serviços) */
.process-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-card:hover {
  background-color: rgba(20, 20, 20, 0.8);
  border-color: rgba(255, 117, 24, 0.8);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Topo do card com Número e Ícone */
.process-card-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

/* Número grande em background sutil */
.process-number {
  font-size: 4rem;
  font-weight: 700;
  line-height: 0.8;
  color: rgba(255, 117, 24, 0.7); /* Laranja escurecido e transparente */
  letter-spacing: -0.05em;
}

/* Ícone circular alinhado com o número */
.process-card-top .process-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 117, 24, 0.3);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-left: -15px; /* Puxa o ícone levemente para cima do número para dar um efeito de profundidade */
  background-color: var(
    --surface-color
  ); /* Garante que o ícone cubra a parte do número que fica embaixo */
}

/* Textos do Card */
.process-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.process-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* =========================================
   SEÇÃO DE PARCEIROS
   ========================================= */

.partners-section {
  padding: 5rem 0 6rem;
  text-align: center;
}

.partners-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.partners-header h2 {
  font-size: clamp(2.5rem, 5vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.partners-header p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.5;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partner-card {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.5rem 1.25rem;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.015) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 16px 40px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.partner-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 117, 24, 0.14), transparent 45%);
  opacity: 0.9;
  pointer-events: none;
}

.partner-logo,
.partner-name,
.partner-tag {
  position: relative;
  z-index: 1;
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 62px;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.partner-logo-atomax {
  letter-spacing: -0.08em;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  color: #f5f5f5;
}


.partner-logo-fly {
  font-size: 2.5rem;
  font-weight: 900;
  color: #f5f5f5;
}


.partner-logo-camilly {
  font-size: 1.3rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: #f5f5f5;
}

.partner-logo-arena {
  font-size: 1.9rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  color: #f5f5f5;
}

.partner-logo-arena::first-line {
  color: #fff;
}



.partner-name {
  font-size: 1.1rem;
  color: #f5f5f5;
  font-weight: 500;
}

.partner-tag {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.partners-footer
 {
  margin-left: 50px;
  margin-top: 2.5rem;
  font-size: clamp(1.2rem, 2vw, 2rem);
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.partners-footer::first-line {
  color: #fff;
}



/* =========================================
   SEÇÃO CTA (CALL TO ACTION) FINAL
   ========================================= */

.cta-section {
  padding: 2rem 0 8rem 0;
}

.cta-card {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  padding: 5rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  max-width: 650px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

.glow-btn {
  box-shadow: 0 0 30px rgba(255, 117, 24, 0.35);
}

.glow-btn:hover {
  box-shadow: 0 0 45px rgba(255, 117, 24, 0.5);
  transform: translateY(-2px);
}

.phone-btn {
  background-color: var(--surface-color);
}

.phone-btn i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* =========================================
   SEÇÃO DE CONTATO / FORMULÁRIO
   ========================================= */

.contact-section {
  padding: 4rem 0 8rem 0;
}

.contact-card-wrapper {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 24px;
  padding: 5rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(255, 117, 24, 0.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: flex-start;
}

/* Coluna de Informações */
.contact-info h2 {
  font-size: 2.8rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.contact-info > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.channel-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.channel-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(255, 117, 24, 0.3);
  background-color: rgba(255, 117, 24, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.channel-text {
  display: flex;
  flex-direction: column;
}

.channel-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.channel-text strong {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 600;
}

/* Coluna do Formulário */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.contact-form input,
.contact-form textarea {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.06) 0%,
    rgba(255, 255, 255, 0.01) 100%
  ) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  color: var(--text-primary);
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #555555;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(255, 117, 24, 0.15);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  justify-content: center;
  margin-top: 1rem;
  padding: 1rem;
}

/* =========================================
   RODAPÉ (FOOTER)
   ========================================= */

.footer {
  border-top: 1px solid var(--surface-border);
  padding: 5rem 0 2rem 0;
  background-color: var(--bg-color);
}

.footer-container {
  max-width: 1680px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--surface-border);
}

/* Coluna da Marca */
.footer-col-brand p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 1.5rem 0 2rem 0;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background-color: rgba(255, 255, 255, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background-color: rgba(255, 117, 24, 0.05);
  transform: translateY(-2px);
}

/* Colunas de Links */
.footer-col-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footer-col-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-col-links ul li a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-col-links ul li a:hover {
  color: var(--accent-color);
}

/* Rodapé Inferior */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}

.footer-copy {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-copy i {
  color: var(--accent-color);
}

.footer-legal {
  color: var(--text-secondary);
  font-size: 0.9rem;
}
/* =========================================
   PÁGINA DE PROJETOS (INTERNA)
   ========================================= */
.services-page {
  padding: 6rem 0 6rem 0;
  background-color: var(--bg-color);
  background-image: radial-gradient(
    circle at 80% 20%,
    rgba(255, 117, 24, 0.05) 0%,
    transparent 50%
  );
}

.services-container {
  max-width: 1720px; /* Container bem largo para acomodar os 5 cards */
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Hero Section --- */
.services-hero {
  margin-bottom: 4rem;
  max-width: 800px;
}

.services-hero .kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-hero .kicker .dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.services-hero h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.services-hero h1 .text-accent {
  color: var(--accent-color);
}

.services-hero .subtitle {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* --- Classe utilitária do Glassmorphism --- */
.glass-panel {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}

/* --- Grid de Cards (5 colunas) --- */
.services-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.detailed-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  overflow: hidden; /* Para a imagem não vazar do border-radius */
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.detailed-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 117, 24, 0.3);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
}

.card-img {
  height: 180px;
  width: 100%;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.detailed-card:hover .card-img img {
  transform: scale(1.05);
}

.card-body {
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255, 117, 24, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-body h3 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.card-body p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.card-arrow {
  align-self: flex-end;
  color: var(--accent-color);
  font-size: 1.2rem;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.detailed-card:hover .card-arrow {
  opacity: 1;
}

/* --- Banner Inferior (Trust Banner) --- */
.trust-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2.5rem 3rem;
  gap: 2rem;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

.trust-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex: 1.2;
  padding-right: 2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-icon-large {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.8rem;
  flex-shrink: 0;
}

.trust-main-text h4 {
  color: var(--text-primary);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.trust-main-text p {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.trust-features {
  display: flex;
  gap: 3rem;
  flex: 2;
  justify-content: space-around;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.trust-item-text h5 {
  color: var(--text-primary);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.trust-item-text span {
  color: var(--text-secondary);
  font-size: 0.8rem;
}



/* =========================================
   PÁGINA DE LAUDOS (ADAPTAÇÕES)
   ========================================= */

.hero-laudos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 8rem 0 6rem 0;
  min-height: 88vh;
}

.hero-laudos .hero-content h1 {
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

/* Imagem do hero de laudos: ocupa toda a coluna com altura expressiva */
.hero-laudos .hero-image-wrapper {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 24px;
  padding: 3px;
  background: linear-gradient(
    135deg,
    rgba(255, 117, 24, 0.5) 0%,
    transparent 55%,
    transparent 100%
  );
  box-shadow:
    0 0 100px rgba(255, 117, 24, 0.2),
    0 40px 120px rgba(0, 0, 0, 0.5);
  margin-left: 0;
}

.hero-laudos .hero-image {
  width: 100%;
  height: 580px;
  border-radius: 22px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.text-accent {
    color: var(--accent-color);
}

/* Ajuste Grid Benefícios */
.benefits-laudos {
    padding: 2rem 0;
}
.benefits-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Grid de Laudos (6 Cards) */
.laudos-portfolio {
    padding: 4rem 0 6rem;
}
.laudos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.saiba-mais {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
    transition: gap 0.3s ease;
}
.detailed-card:hover .saiba-mais {
    gap: 0.8rem;
}

/* Processo e Timeline */
.process-faq-section {
    padding: 6rem 0;
}
.process-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
    gap: 2rem;
}
.timeline-steps {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-grow: 1;
    justify-content: flex-end;
}
.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 117, 24, 0.3);
    background-color: var(--surface-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    font-size: 1.2rem;
}
.step span {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 500;
}
.step small {
    font-size: 0.75rem;
    color: var(--text-secondary);
}
.step-line {
    height: 1px;
    width: 40px;
    background-color: rgba(255, 117, 24, 0.3);
    margin-bottom: 2rem;
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: flex-start;
}
.faq-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    padding: 1rem;
}
.faq-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

/* Accordion Dúvidas Frequentes */
.accordion {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.accordion-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.accordion-item[open] {
    border-color: rgba(255, 117, 24, 0.3);
}
.accordion-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    list-style: none;
}
.accordion-item summary::-webkit-details-marker {
    display: none;
}
.accordion-item summary i.ph-minus { display: none; }
.accordion-item[open] summary i.ph-plus { display: none; }
.accordion-item[open] summary i.ph-minus { display: block; color: var(--accent-color); }

.accordion-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Stats Banner Inferior */
.trust-banner-section {
    padding: 2rem 0;
}
.trust-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
}
.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 3rem;
}
.trust-stat-item:last-child {
    border-right: none;
    padding-right: 0;
}
.trust-stat-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    background: rgba(255, 117, 24, 0.1);
    padding: 0.8rem;
    border-radius: 12px;
}
.trust-stat-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}
.trust-stat-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* CTA Banner Inferior */
.cta-banner-bottom {
    padding: 2rem 0 6rem;
}
.cta-banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4rem;
    gap: 3rem;
}
.cta-banner-icon {
    font-size: 4rem;
    color: var(--accent-color);
}
.cta-banner-text {
    flex: 1;
}
.cta-banner-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.cta-banner-text p {
    color: var(--text-secondary);
    font-size: 1rem;
    max-width: 80%;
}

