* {
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body {
  background:#0b0b0b;
  color:#fff;
}

.container {
  max-width:1200px;
  margin:auto;
  padding:0 20px;
}

/* HEADER */
header {
  position:fixed;
  width:100%;
  padding:20px 0;
  z-index:1000;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
}

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

.logo {
  color:orange;
  font-weight:600;
}

/* HERO */
.hero {
  position:relative;
  height:100vh;
  overflow:hidden;
}

/* SLIDES */
.hero-slider {
  position:absolute;
  width:100%;
  height:100%;
}

.slide {
  position:absolute;
  width:100%;
  height:100%;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity 1s ease-in-out;
}

.slide.active {
  opacity:1;
  animation:zoom 10s ease-in-out infinite alternate;
}

/* ZOOM */
@keyframes zoom {
  from { transform:scale(1); }
  to { transform:scale(1.1); }
}

/* OVERLAY */
.overlay {
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to bottom, rgba(0,0,0,0.7), rgba(0,0,0,0.95));
  z-index:1;
}

/* TEXTO */
.hero-content {
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero h2 {
  font-size:52px;
  color:orange;
}

.hero p {
  margin-top:15px;
  color:#ccc;
}

.btn {
  margin-top:25px;
  background:orange;
  padding:14px 30px;
  color:#000;
  border-radius:6px;
  text-decoration:none;
}

/* SERVIÇOS */
.servicos {
  padding:100px 0;
}

.servicos h2 {
  text-align:center;
  margin-bottom:50px;
  color:orange;
}

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

/* ================= AJUSTE HOVER CARDS SERVIÇOS ================= */

.card {
  position:relative;
  border-radius:12px;
  overflow:hidden;
  transition:0.3s;
  border:1px solid #222; /* adiciona borda igual diferenciais */
}

/* HOVER IGUAL DIFERENCIAIS */
.card:hover {
  transform:translateY(-8px);
  border:1px solid orange;
  box-shadow:0 10px 30px rgba(255,165,0,0.2);
}

/* ZOOM SUAVE NA IMAGEM */
.card img {
  width:100%;
  height:240px;
  object-fit:cover;
  transition:0.4s;
}

.card:hover img {
  transform:scale(1.05);
}

/* OVERLAY MAIS PREMIUM */
.card-overlay {
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  transition:0.3s;
}

.card:hover .card-overlay {
  background:linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.2));
}

.card-content {
  position:absolute;
  bottom:20px;
  left:20px;
}

.contato {
  padding:100px 0;
  text-align:center;
}

form {
  width:400px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:15px;
}

input, textarea {
  padding:12px;
  background:#111;
  border:1px solid #333;
  color:#fff;
}

button {
  background:orange;
  padding:12px;
  border:none;
}

.whatsapp {
  position:fixed;
  bottom:20px;
  right:20px;
  width:60px;
  height:60px;
  background:#111;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999;
  border:1px solid rgba(255,165,0,0.2);
  box-shadow:0 0 15px rgba(255,165,0,0.2);
}

/* ÍCONE */
.whatsapp-icon {
  width:28px;
  height:28px;
  fill:orange;
}

/* PULSO SUAVE */
@keyframes pulseWhats {
  0% {
    box-shadow:0 0 0 0 rgba(255,165,0,0.4);
  }
  70% {
    box-shadow:0 0 0 12px rgba(255,165,0,0);
  }
  100% {
    box-shadow:0 0 0 0 rgba(255,165,0,0);
  }
}

.whatsapp {
  animation:pulseWhats 2.5s infinite;
}

/* HOVER */
.whatsapp:hover {
  transform:scale(1.1);
  box-shadow:0 0 25px rgba(255,165,0,0.6);
}

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

  .hero h2 {
    font-size:32px;
  }

  form {
    width:90%;
  }
}

/* HERO NOVO ESTILO */

.grid-overlay {
  position:absolute;
  width:100%;
  height:100%;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size:50px 50px;
  z-index:1;
}

.overlay {
  position:absolute;
  width:100%;
  height:100%;
  background:linear-gradient(to right, rgba(0,0,0,0.95), rgba(0,0,0,0.6));
  z-index:2;
}

.hero-inner {
  position:relative;
  z-index:3;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  max-width:700px;
}

.tag {
  color:orange;
  font-size:12px;
  letter-spacing:2px;
}

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

.hero h1 span {
  color:orange;
}

.hero-buttons {
  margin-top:30px;
  display:flex;
  gap:15px;
}

.btn-primary {
  background:orange;
  padding:15px 30px;
  color:#000;
  text-decoration:none;
  border-radius:6px;
  font-weight:600;
}

.btn-outline {
  border:1px solid #333;
  padding:15px 30px;
  color:#fff;
  text-decoration:none;
  border-radius:6px;
}

.hero-info {
  margin-top:40px;
  font-size:12px;
  color:#888;
}

/* DIFERENCIAIS */

.diferenciais {
  padding:120px 0;
  position: relative;
}

/* aura laranja suave (igual conceito do CTA) */
.diferenciais::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255,165,0,0.08), transparent 70%);
  pointer-events: none;
}

.diferenciais h2 {
  text-align:center;
  margin-bottom:60px;
  font-size:36px;
}

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

.box {
  background: linear-gradient(180deg, #111, #0b0b0b);
  border: 1px solid rgba(255,165,0,0.08);
  padding:30px;
  border-radius:12px;
  transition:0.35s;
  position: relative;
  overflow: hidden;
}

/* linha laranja no topo */
.box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: orange;
  opacity: 0;
  transition: 0.3s;
}

.box:hover {
  border: 1px solid rgba(255,165,0,0.4);
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(255,165,0,0.15);
}

.box:hover::before {
  opacity: 1;
}

.box:hover {
  border:1px solid orange;
  transform:translateY(-8px);
}

.box .icon {
  font-size:22px;
  color:orange;
  margin-bottom:15px;
}

.box h3 {
  margin-bottom:10px;
}

.box p {
  color:#aaa;
  font-size:14px;
}

.box .num {
  position:absolute;
  top:20px;
  right:20px;
  font-size:12px;
  color:#444;
}

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

/* ================= TARJA PREMIUM COMO FUNCIONA ================= */

.como-funciona {
  padding: 120px 0;
  text-align: center;
  position: relative;

  /* TARJA REAL */
  background: #0f0f0f;

  /* borda superior e inferior */
  border-top: 1px solid rgba(255,165,0,0.15);
  border-bottom: 1px solid rgba(255,165,0,0.15);
}

/* CONTAINER INTERNO COM DESTAQUE */
.como-funciona .container {
  background: linear-gradient(145deg, #111, #0a0a0a);
  padding: 60px 40px;
  border-radius: 16px;
  border: 1px solid #1a1a1a;

  /* glow MUITO sutil */
  box-shadow: 0 0 40px rgba(255,165,0,0.03);
}

/* TÍTULO MAIS FORTE */
.como-funciona h2 {
  font-size: 36px;
  margin-bottom: 50px;
  position: relative;
}

/* detalhe laranja elegante */
.como-funciona h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: orange;
  margin: 12px auto 0;
  opacity: 0.6;
}

.steps {
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  position:relative;
}

.step {
  padding:20px;
}

.step .icon {
  font-size:24px;
  color:orange;
  margin-bottom:10px;
}

.step span {
  display:block;
  color:orange;
  margin-bottom:5px;
  font-size:12px;
}

.step h3 {
  margin-bottom:10px;
}

.step p {
  color:#aaa;
  font-size:14px;
}

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

/* CEO */

.ceo {
  padding:100px 0;
  background:linear-gradient(to right, #1a1a1a, #000);
}

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

.ceo-img {
  position:relative;
}

.ceo-img img {
  width:100%;
  border-radius:12px;
}

.ceo-img span {
  position:absolute;
  bottom:20px;
  left:20px;
  background:orange;
  padding:8px 15px;
  font-size:12px;
  border-radius:5px;
  color:#000;
}

.ceo-text h3 {
  font-size:22px;
  margin:20px 0;
  line-height:1.6;
}

.ceo-name {
  font-weight:600;
}

.ceo-role {
  color:#aaa;
  font-size:14px;
  margin-bottom:30px;
}

.ceo-stats {
  display:flex;
  gap:40px;
}

.ceo-stats strong {
  display:block;
  color:orange;
  font-size:24px;
}

.ceo-stats span {
  font-size:12px;
  color:#888;
}

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

.status-dot {
  display:inline-block;
  width:8px;
  height:8px;
  background:#00ff88;
  border-radius:50%;
  margin-right:8px;
  box-shadow:0 0 8px #00ff88;
}

/* DEPOIMENTOS */

.depoimentos {
  padding:100px 0;
  background:linear-gradient(to bottom, #0f0f0f, #050505);
}

.depoimentos h2 {
  text-align:center;
  margin-bottom:60px;
  font-size:36px;
}

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

.depoimento {
  background:linear-gradient(145deg, #111, #0a0a0a);
  border:1px solid #222;
  padding:30px;
  border-radius:12px;
  transition:0.3s;
  position:relative;
}

.depoimento:hover {
  border:1px solid orange;
  transform:translateY(-5px);
}

/* aspas decorativa */
.depoimento::before {
  content:"“";
  font-size:40px;
  color:orange;
  position:absolute;
  top:15px;
  left:10px;
  opacity:0.3;
}

.depoimento p {
  color:#ccc;
  font-size:15px;
  margin-bottom:20px;
  line-height:1.6;
}

.cliente strong {
  display:block;
  color:#fff;
}

.cliente span {
  font-size:12px;
  color:#888;
}

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

/* CTA */

.cta {
  padding:120px 0;
  background:linear-gradient(145deg, #111, #050505);
  text-align:center;
}

.cta h2 {
  font-size:48px;
  margin:20px 0;
}

.cta h2 span {
  color:orange;
}

.cta p {
  color:#aaa;
  max-width:600px;
  margin:0 auto 30px;
}

.btn-cta {
  display:inline-block;
  background:orange;
  color:#000;
  padding:18px 40px;
  border-radius:8px;
  font-weight:600;
  text-decoration:none;
  box-shadow:0 0 25px rgba(255,165,0,0.5);
  transition:0.3s;
}

.btn-cta:hover {
  transform:scale(1.05);
}

/* CONTATO FINAL CORRETO */

.contato {
  padding:120px 0;
}

/* TOPO CENTRAL */
.contato-topo {
  text-align:center;
  margin-bottom:60px;
}

.contato-topo h2 {
  font-size:42px;
  color:orange;
  margin:15px 0;
}

.contato-topo p {
  color:#aaa;
  max-width:600px;
  margin:auto;
}

/* GRID */
.contato-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:start;
}

/* ESQUERDA */
.contato-info {
  display:flex;
  flex-direction:column;
  gap:25px;
}

.contato-item {
  display:flex;
  align-items:center;
  gap:15px;
}

.contato-item .icon {
  width:45px;
  height:45px;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:8px;
  color:orange;
}

/* FORM */
.contato-form-box {
  background:linear-gradient(145deg, #111, #0a0a0a);
  border:1px solid #222;
  padding:30px;
  border-radius:12px;
}

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

/* ================= FOOTER NÍVEL EMPRESA GRANDE ================= */

.footer-industrial {
  background:#050505;
  padding:90px 0 0;
  position:relative;
}

/* LINHA SUPERIOR MAIS SUAVE */
.footer-line {
  width:100%;
  height:1px;
  background:linear-gradient(90deg, transparent, orange, transparent);
  opacity:0.25;
  margin-bottom:70px;
}

/* GRID MAIS ESTRUTURADO */
.footer-content {
  display:grid;
  grid-template-columns:1.6fr 1fr 1fr 1fr;
  gap:60px;
  align-items:flex-start;
}

/* COLUNAS */
.footer-col {
  display:flex;
  flex-direction:column;
  gap:14px;
}

/* TITULO PRINCIPAL */
.footer-col h3 {
  color:orange;
  font-size:20px;
  font-weight:600;
}

/* SUBTITULOS */
.footer-col h4 {
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#aaa;
  margin-bottom:5px;
}

/* TEXTO */
.footer-col p {
  color:#999;
  font-size:14px;
  line-height:1.7;
  max-width:300px;
}

/* LINKS */
.footer-col a {
  color:#888;
  text-decoration:none;
  position:relative;
  transition:0.25s;
}

/* efeito linha só em menus */
.footer-col a::after {
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:0%;
  height:1px;
  background:orange;
  transition:0.3s;
}

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

.footer-col a:hover::after {
  width:100%;
}

/* LISTA */
.footer-col ul {
  list-style:none;
}

.footer-col ul li {
  margin-bottom:12px;
}

/* CONTATO */
.footer-col .contato-item {
  display:flex;
  align-items:center;
  gap:10px;
  color:#aaa;
  font-size:14px;
}

/* ÍCONES */
.icon {
  color:orange;
  font-size:14px;
}

/* REDES SOCIAIS */
.socials {
  display:flex;
  gap:14px;
  margin-top:15px;
}

.socials a {
  width:42px;
  height:42px;
  border:1px solid #222;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  transition:0.3s;
  background:transparent;
}

/* SVG */
.socials svg {
  width:18px;
  height:18px;
  fill:#777;
  transition:0.3s;
}

/* HOVER PREMIUM */
.socials a:hover {
  border-color:orange;
  background:rgba(255,165,0,0.05);
  transform:translateY(-2px);
}

.socials a:hover svg {
  fill:orange;
}

/* FOOTER BOTTOM MAIS CORPORATIVO */
.footer-bottom {
  margin-top:70px;
  padding:20px 0;
  border-top:1px solid #111;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:12px;
  color:#666;
}

.footer-bottom .dev strong {
  color:orange;
}

/* RESPONSIVO */
@media(max-width:768px){

  .footer-content {
    grid-template-columns:1fr;
    gap:40px;
  }

  .footer-bottom {
    flex-direction:column;
    gap:10px;
    text-align:center;
  }

}

/* RODAPÉ FINAL */
.footer-bottom {
  margin-top:60px;
  padding:20px;
  text-align:center;
  font-size:13px;
  color:#666;
  border-top:1px solid #111;
}

/* ANIMAÇÃO SUAVE */
.fade-up {
  opacity:0;
  transform:translateY(20px);
  animation:fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVO */
@media(max-width:768px){
  .footer-content {
    grid-template-columns:1fr;
    text-align:center;
    gap:30px;
  }

  .socials {
    justify-content:center;
  }
}

/* LOGO AJUSTADO (MAIOR E EQUILIBRADO) */
.logo img {
  height: 80px; /* antes ~40px */
  width: auto;
  display: block;
  object-fit: contain;
  transition: 0.3s;
}

/* HEADER MAIS RESPIRADO PRA SUPORTAR O LOGO */
header {
  padding: 15px 0;
}

/* MOBILE */
@media(max-width:768px){
  .logo img {
    height: 45px;
  }
}

/* AJUSTE FINO HEADER */
.nav {
  align-items: center;
}

/* RESPONSIVO */
@media(max-width:768px){
  .logo img {
    height: 34px;
  }
}

/* ================= MENU PREMIUM (SEM QUEBRAR NADA) ================= */

#menu {
  display:flex;
  align-items:center;
  gap:25px;
}

#menu a {
  position:relative;
  color:#aaa;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  padding:8px 14px;
  border-radius:6px;
  transition:all 0.3s ease;
}

/* hover estilo botão leve */
#menu a:hover {
  color:orange;
  background:rgba(255,165,0,0.08);
}

/* underline animado (igual template que você quer) */
#menu a::after {
  content:"";
  position:absolute;
  left:50%;
  bottom:-6px;
  transform:translateX(-50%);
  width:0%;
  height:1px;
  background:orange;
  transition:0.3s;
}

#menu a:hover::after {
  width:60%;
}

/* ativo (opcional futuro) */
#menu a.active {
  color:orange;
}

/* RESPONSIVO */
@media(max-width:768px){
  #menu {
    display:none;
  }
}

/* ================= FLIP CARD SERVIÇOS ================= */

.flip-card {
  perspective: 1000px;
  cursor: pointer;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 240px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

/* ATIVO */
.flip-card.active .flip-inner {
  transform: rotateY(180deg);
}

/* FACES */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* FRENTE (SEU CARD NORMAL) */
.flip-front {
  background: #000;
}

/* VERSO */
.flip-back {
  background: orange;
  color: #000;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 25px;
  text-align: center;
  font-weight: 500;
}

.footer-bottom {
  margin-top:60px;
  padding:20px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:13px;
  color:#666;
  border-top:1px solid #111;
}

/* SEU NOME (AGÊNCIA) */
.footer-bottom .dev {
  color:#888;
}

.footer-bottom .dev strong {
  color:orange;
  font-weight:500;
  transition:0.3s;
}

/* efeito premium */
.footer-bottom .dev strong:hover {
  color:#fff;
  text-shadow:0 0 8px rgba(255,165,0,0.6);
}

/* MOBILE */
@media(max-width:768px){
  .footer-bottom {
    flex-direction:column;
    gap:10px;
    text-align:center;
  }
}


/* ================= SEPARAÇÃO DE SEÇÕES ================= */

/* cria respiro visual entre blocos */
.diferenciais {
  padding-bottom: 120px;
}

.como-funciona {
  background: linear-gradient(180deg, #0b0b0b 0%, #050505 100%);
  border-top: 1px solid rgba(255,165,0,0.05);
  border-bottom: 1px solid rgba(255,165,0,0.05);
}


/* ================= COMO FUNCIONA EM CARDS ================= */

.step {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  position: relative;
}

/* HOVER IGUAL DIFERENCIAIS */
.step:hover {
  border: 1px solid orange;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255,165,0,0.15);
}

/* ÍCONE MAIS DESTACADO */
.step .icon {
  font-size: 26px;
  color: orange;
  margin-bottom: 12px;
}

/* NUMERO MAIS SUAVE */
.step span {
  display: block;
  color: #444;
  margin-bottom: 5px;
  font-size: 11px;
  letter-spacing: 1px;
}

/* TEXTO */
.step h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.step p {
  color: #aaa;
  font-size: 13px;
}

/* GRID MAIS EQUILIBRADO */
.steps {
  gap: 25px;
}

/* ================= COMO FUNCIONA - CLEAN PREMIUM ================= */

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

/* CARD */
.step {
  position: relative;
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: 0.35s;
  overflow: hidden;
}

/* HOVER */
.step:hover {
  transform: translateY(-8px);
  border: 1px solid orange;
  box-shadow: 0 15px 35px rgba(255,165,0,0.18);
}

/* EFEITO DE "FLUXO" INTERNO (sem linha externa) */
.step::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  top: 0;
  left: -120%;
  background: linear-gradient(90deg, transparent, rgba(255,165,0,0.08), transparent);
  transition: 0.5s;
}

.step:hover::before {
  left: 120%;
}

/* ÍCONE */
.step .icon {
  font-size: 26px;
  color: orange;
  margin-bottom: 12px;
  transition: 0.3s;
}

.step:hover .icon {
  transform: scale(1.15);
}

/* NUMERO */
.step span {
  display: block;
  font-size: 11px;
  color: #555;
  margin-bottom: 6px;
}

/* TEXTO */
.step h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.step p {
  font-size: 13px;
  color: #aaa;
}

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

/* ================= CTA URGENTE PREMIUM ================= */

.cta-urgente {
  padding: 140px 0;
  text-align: center;
  position: relative;

  /* 🔥 AGORA USANDO APENAS O ORANGE DO SEU SITE */
  background: linear-gradient(135deg, orange, orange);

  overflow: hidden;
}

/* TEXTURA SUTIL */
.cta-urgente::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(0,0,0,0.2), transparent 40%);
  opacity: 0.4;
}

/* CONTAINER */
.cta-urgente .container {
  position: relative;
  z-index: 2;
}

/* BADGE */
.cta-badge {
  display: inline-block;
  background: rgba(0,0,0,0.25);
  color: #000;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 25px;
  font-weight: 600;
}

/* TÍTULO */
.cta-urgente h2 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 900;
  color: #000;
}

.cta-urgente h2 span {
  display: block;
}

/* TEXTO */
.cta-urgente p {
  margin-top: 20px;
  font-size: 18px;
  color: #111;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* BOTÕES */
.cta-buttons {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* WHATS */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 18px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

/* CALL */
.btn-call {
  background: #000;
  color: #fff;
  padding: 18px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-call:hover {
  background: #111;
  transform: translateY(-3px);
}

/* RESPONSIVO */
@media(max-width:768px){
  .cta-urgente h2 {
    font-size: 36px;
  }

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

/* ================= SERVIÇOS NOVOS ================= */

.servicos-topo {
  text-align: center;
  margin-bottom: 60px;
}

.servicos-topo h2 {
  font-size: 42px;
  margin: 15px 0;
}

.servicos-topo p {
  max-width: 700px;
  margin: auto;
  color: #999;
}

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

/* FLIP BACK */
.flip-back ul {
  list-style: none;
  text-align: left;
  width: 100%;
}

.flip-back li {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
}

/* SUBTITULO */
.servicos-subtitulo {
  text-align: center;
  margin: 90px 0 40px;
}

.servicos-subtitulo h3 {
  font-size: 28px;
}

/* MINI CARDS */
.servicos-secundarios {
  grid-template-columns: repeat(3, 1fr);
}

.mini-card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  border: 1px solid #222;
  border-radius: 12px;
  padding: 30px;
  transition: 0.3s;
}

.mini-card:hover {
  transform: translateY(-6px);
  border: 1px solid orange;
  box-shadow: 0 10px 25px rgba(255,165,0,0.12);
}

.mini-card h4 {
  margin-bottom: 12px;
  color: orange;
}

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

/* EQUIPAMENTOS */

.equipamentos-box {
  margin-top: 100px;
  padding: 50px;
  border-radius: 16px;
  background: linear-gradient(145deg, #111, #050505);
  border: 1px solid #222;
}

.equipamentos-info {
  text-align: center;
  margin-bottom: 40px;
}

.equipamentos-info h3 {
  font-size: 32px;
  margin: 15px 0;
}

.equipamentos-info p {
  color: #999;
  max-width: 700px;
  margin: auto;
}

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

.equipamento-item {
  background: #0b0b0b;
  border: 1px solid #1f1f1f;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}

.equipamento-item:hover {
  border: 1px solid orange;
  transform: translateY(-5px);
}

.equipamento-item strong {
  display: block;
  color: orange;
  margin-bottom: 6px;
}

.equipamento-item span {
  color: #888;
  font-size: 13px;
}

/* RESPONSIVO */
@media(max-width:768px){

  .servicos-principais,
  .servicos-secundarios,
  .equipamentos-grid {
    grid-template-columns: 1fr;
  }

  .servicos-topo h2 {
    font-size: 32px;
  }

  .equipamentos-box {
    padding: 30px;
  }

}

/* ================= MISSÃO VISÃO VALORES ================= */

.como-funciona .steps {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1100px;
  margin: 40px auto 0;
}

.como-funciona .step {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.como-funciona .step p {
  line-height: 1.8;
  font-size: 14px;
  max-width: 260px;
  margin: auto;
}

.como-funciona .step .icon {
  font-size: 38px;
  margin-bottom: 18px;
}

/* RESPONSIVO */
@media(max-width:768px){

  .como-funciona .steps {
    grid-template-columns: 1fr;
  }

  .como-funciona .step {
    min-height: auto;
  }

}

/* ================= VALORES AJUSTE ================= */

.valores-lista {
  display: flex;
  flex-direction: column;
  gap: 18px;

  margin-top: 25px;

  text-align: left;

  width: 100%;
  max-width: 260px;

  margin-left: auto;
  margin-right: auto;
}

.valores-lista div {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

/* ================= TARJA TEXTO SERVIÇOS ================= */

.card-content {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;

  background: rgba(0,0,0,0.55);

  backdrop-filter: blur(6px);

  border: 1px solid rgba(255,255,255,0.06);

  border-radius: 12px;

  padding: 14px 16px;

  z-index: 5;

  transition: 0.3s;
}

/* TÍTULO */
.card-content h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;

  font-weight: 700;

  line-height: 1.3;
}

/* SUBTEXTO */
.card-content p {
  color: #ddd;

  font-size: 13px;

  line-height: 1.5;
}

/* HOVER PREMIUM */
.card:hover .card-content {
  background: rgba(0,0,0,0.72);

  border: 1px solid rgba(255,165,0,0.25);

  transform: translateY(-2px);
}