/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

html, body {
    overflow-x: hidden;
}

body {
  font-family: 'Manrope', sans-serif;
  background: #001100;
  color: #fff789;
  line-height: 1.6;
}

:root {
  --vermelho: #d40000;
  --vermelho-escuro: #8b0000;
  --amarelo: #ffd700;
  --verde: #0a7d2c;
  --branco: #ffffff;
  --preto: #0b0b0b;
}

img {
  display: block;
  max-width: 100%;
}

* {
  -webkit-tap-highlight-color: transparent;
}

/* REMOVE ESTILO PADRÃO DOS LINKS */
a {
  text-decoration: none;
  color: inherit;
}


/* CONTAINER */
.container {
  width: min(1180px, 90%);
  max-width: 1200px;
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 24, 9, 0.85);
  z-index: 999;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#conteudo {
  padding-top: 90px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 100px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 20
}

.brand-icon {
  width: 140px;
  margin-top: 10px;
  margin-bottom: 10px;
}

/* MOBILE */
@media (max-width: 900px) {

  .nav-list {
    display: none;
  }

  .menu-toggle {
    display: block;
    font-size: 1.6rem;
    color: #5c7b69;
    cursor: pointer;
  }
  
  .nav-list a.active::after {
  transform: scaleX(1);
}
}

/* NAV */
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-list a {
  position: relative;
  font-size: 0.95rem;
}

.nav-list a::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  bottom: -4px;
  left: 0;
  background: #ff0000;
  transform: scaleX(0);
  transition: 0.3s;
}

.nav-list a.active::after {
  transform: scaleX(1);
}

.nav-list a:hover::after {
  transform: scaleX(1);
}

/* HAMBURGER (HIDDEN IN THE DESKTOP) */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  padding: 6px;

  background: none;
  border: none;
  outline: none;
  box-shadow: none;
}

.site-nav,
.menu-toggle {
  will-change: transform, opacity;
  transform: translateZ(0);
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ecff44;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle:hover span {
  background: #51fa02;
}

/* ANIMAÇÃO X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.site-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media(max-width: 900px){

  .site-nav {
  position: fixed;
  top: 20px;
  right: -100%;
  width: 70%;
  max-width: 280px;
  height: auto;

  background: rgba(5, 15, 8, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

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

  padding: 30px 20px;
  border-radius: 20px 0 0 20px;

  transition: 0.4s;

  box-shadow: -20px 0 60px rgba(0,0,0,0.6);

  border-left: 1px solid rgba(255,255,255,0.08);
}

  .site-nav.active {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .nav-list a {
    font-size: 16px;
    color: #e5f508;
  }

  .menu-toggle {
    display: flex;
  }

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



/* HERO BASE */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  
  background-size: cover;
}


/* OVERLAY SÓ PRA AJUDAR LEITURA */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(10, 0, 0, 0.92) 12%,
    rgba(20, 0, 0, 0.85) 22%,
    rgba(40, 0, 0, 0.7) 35%,
    rgba(60, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.25) 65%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 85%
  );
}

/* GRID */
.hero-grid {
  display: grid;
  align-items: stretch;
  min-height: 100vh;
}

.hero-left {
  display: flex;
  align-items: center;

  background: url("img/fundo2.webp") no-repeat center;
  background-size: cover;

  /* 🔥 CONTROLE TOTAL DO CORTE */
  background-position: 90% center;
}

/* TEXTO */
.hero-text {
  position: relative;
  z-index: 2;
  color: #faf5f5;
  max-width: 500px;
  margin-left: 40px;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.8;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeLuxury 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;

  text-shadow: 
  0 4px 20px rgba(0,0,0,0.6),
  0 2px 6px rgba(0,0,0,0.5);
}

@keyframes fadeLuxury {
  0% {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

/* BOTÕES */

.store-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 2px; 
  border-radius: 10px;

  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(6px);

  box-shadow: 
    0 6px 20px rgba(0,0,0,0.25),
    inset 0 0 0 1px rgba(255,255,255,0.08);

  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* IMAGEM */
.store-btn img {
  display: block;
  width: auto; 
  height: 55px;
  border-radius: 10px;
  object-fit: contain;
  
}

/* HOVER IGUAL BOTÃO */
.store-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* BRILHO (igual aquele efeito do botão) */
.store-btn::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transform: translateX(-100%);
  transition: 0.6s;
}

.store-btn:hover::after {
  transform: translateX(100%);
}

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

  align-items: center;
  justify-content: center;
}



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

  .hero-left {
    padding: 40px 20px;
  }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* controla aqui a intensidade */
  z-index: 1;
}
}

.arrow {
  transition: 0.3s;
  margin-left: 8px;
  display: inline-block;
  animation: descer 1.2s infinite;
}

@keyframes descer {
  0% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }
}

/* SECTION */
.section {
  padding: 4rem 0;
}

.hero-text h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;

  font-size: clamp(1.4rem, 2.1vw, 2.1rem); 
  line-height: 1.8;
  margin-bottom: 20px;

  color: #fff;
  text-align: center;

  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-text p{
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;

  font-size: clamp(1.2rem, 1.3vw, 1.3rem); 
  line-height: 1.9;
  color: #fff; 
  text-align: center;

  text-shadow: 0 4px 20px rgba(0,0,0,0.4); 
}

.agenda{
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 1rem;
}

/* CONTADOR */
.contador {
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(10, 0, 0, 0.92) 12%,
    rgba(20, 0, 0, 0.85) 22%,
    rgba(40, 0, 0, 0.7) 35%,
    rgba(60, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.25) 65%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 85%
  );
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.contador::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(1, 54, 12, 0.1), transparent);
  pointer-events: none;
}

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

/* RESPONSIVO */
@media (max-width: 900px) {
  .contador-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.contador .item {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 30px 20px;
  backdrop-filter: blur(10px);
  transition: 0.3s;
}

.contador .item:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* NÚMERO */
.contador h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: bold;
}


/* ✨ GLOW NAS CORES DA MARCA */
.glow {
  color: #ffffff;

  text-shadow:
    /* VERDE */
    0 0 5px #011109,
    0 0 10px #022917,

    /* AMARELO */
    0 0 15px #ffd700,
    0 0 25px #ffd700,

    /* VERMELHO */
    0 0 35px #ff2b2b,
    0 0 50px #ff2b2b;

  animation: neonTaxi 1.5s ease-in-out infinite alternate;
}

/* ANIMAÇÃO PULSANDO COM MUDANÇA DE INTENSIDADE */
@keyframes neonTaxi {
  from {
    text-shadow:
      0 0 5px #022515,
      0 0 10px #04331d,
      0 0 15px #ffd700,
      0 0 20px #ffd700,
      0 0 25px #ff2b2b;
  }

  to {
    text-shadow:
      0 0 10px #075e35,
      0 0 20px #013a20,
      0 0 30px #ffd700,
      0 0 40px #ffd700,
      0 0 60px #ff2b2b;
  }
}

.contador p {
  color: #ccc;
  font-size: 0.98rem;
}

/* EMPRESAS*/
.empresas {
  padding: 120px 20px;
  background: linear-gradient(135deg, #8b0000, #1a0000);
  position: relative;
  overflow: hidden;
}

.empresas-text {
    flex: 1;
    max-width: 580px;
}

.empresas-text h2 {
    margin-bottom: 20px;
    font-size: clamp(1.8rem, 2.5vw, 2.4rem);
    line-height: 1.3;
    text-align: left;
    
}

.empresas-text .sub {
    font-size: 18px;
    margin-bottom: 25px;
    color: #cbd5e1;
    text-align: left;
    max-width: 500px;
}

/* GRID */
.empresas-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TAG */
.tag {
  display: inline-block;
  background: #ffd700;
  color: #000;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

/* TITULO */
.empresas-text h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.3;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
}

/* SUB */
.empresas-text .sub {
  color: #ddd;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

/* ESCONDE IMAGEM MOBILE NO DESKTOP */
.empresas-image-mobile {
  display: none;
}

/* BOTÕES */
.cta {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.btn-primary {
  background: #ffd700;
  color: #000;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.3s;
}

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

.btn-secondary {
  border: 1px solid #fff;
  padding: 12px 22px;
  border-radius: 8px;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #fff;
  color: #000;
}

/* IMAGEM */
.empresas-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}

@media (max-width: 900px){

  .empresas {
    padding: 80px 20px;
  }

  .empresas-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }

  /* ESCONDE IMAGEM LATERAL */
  .empresas-image {
    display: none;
  }

  /* TEXTO */
  .empresas-text {
    text-align: center;
    max-width: 100%;
  }

  .empresas-text h2 {
    text-align: center;
    font-size: 22px;
  }

  .empresas-text .sub {
    text-align: center;
    font-size: 15px;
  }

  /* IMAGEM NO MEIO */
  .empresas-image-mobile {
    display: flex;
    width: 100%;
    margin: 15px 0 10px;
  }

  .empresas-image-mobile img {
    width: 100%;
    max-width: AUTO;
    border-radius: 16px;
  }

  /* BOTÕES CENTRALIZADOS */
  .cta {
    justify-content: center;
  }

}


/* ===== CONTAINER ===== */
.zap-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    animation: fadeInUp 1s ease forwards;
}

/* ===== BOTÃO ===== */
.zap-btn {
    position: relative;
    width: 65px;
    height: 65px;
    display: inline-block;
}

/* ===== AURA 1 ===== */
.zap-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.35);
    animation: aura1 2.5s infinite;
    z-index: 0;
}

/* ===== AURA 2 (ATRASADA) ===== */
.zap-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.25);
    animation: aura2 2.5s infinite;
    z-index: 0;
}

/* ===== ÍCONE ===== */
.zap-btn img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

/* ===== HOVER ===== */
.zap-btn:hover img {
    transform: scale(1.15) rotate(-5deg);
}

/* ===== ANIMAÇÕES ===== */

/* ENTRADA SUAVE */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PULSE DO BOTÃO */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.12); }
    100% { transform: scale(1); }
}

/* AURA 1 */
@keyframes aura1 {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(1.8);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* AURA 2 (DESINCRONIZADA) */
@keyframes aura2 {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    70% {
        transform: scale(2.2);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

/* TITULO */
.card-title{
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  margin: 0.5rem 0;
  color: #5a3e32;
  font-weight: 400; /* 👈 mais fino */
  line-height: 1.7;
  letter-spacing: 0.4px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.06);
  margin-bottom: -1rem;
}


.role {
  color: #29253a;
  font-size: 0.95rem;
  margin-bottom: 1.2rem;

}

.eyebrow{
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: -0.5rem;
  line-height: 1.8;
  color: #4c3427;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.from-left {
  transform: translateX(-60px);
}

.reveal.from-right {
  transform: translateX(60px);
}

.reveal.from-bottom {
  transform: translateY(60px);
}

/* padrão: de baixo */
.from-bottom {
  transform: translateY(40px);
  opacity: 0;
}

/* da esquerda */
.from-left {
  transform: translateX(-60px);
}

/* da direita */
.from-right {
  transform: translateX(60px);
}

.reveal.active {
  opacity: 1;
  transform: translate(0, 0);
}

/* quando ativa */
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}


/* =========================
   CARDS DE SERVIÇO
========================= */

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.service-card {
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(185, 137, 141, 0.18);
  border-radius: 18px;

  padding: 1.5rem;

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* hover elegante */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

/* título do card */
.service-card strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #5a3e32;
}

/* texto */
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* efeito suave de brilho */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.5),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.service-card:hover::before {
  transform: translateX(100%);
}


/* =========================
   RESPONSIVO
========================= */

@media (max-width: 900px) {
  #atendimento .split-grid {
    grid-template-columns: 1fr;
  }

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


.servicos {
  padding: 100px 20px;
  background: linear-gradient(180deg, #001100, #021d0c);
}

/* HEADER */
.servicos-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.servicos-header h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 15px;
}

.servicos-header p {
  color: #ccc;
}

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

/* CARD */
.servico-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 25px;
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.servico-card i {
  font-size: 1.8rem;
  color: var(--amarelo);
  margin-bottom: 15px;
}

.servico-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.servico-card p {
  font-size: 0.95rem;
  color: #ccc;
}

/* HOVER */
.servico-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.08);
}

/* BRILHO */
.servico-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.3),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.6s;
}

.servico-card:hover::before {
  transform: translateX(100%);
}

/* DESTAQUE */
.servico-card.destaque {
  border: 1px solid var(--amarelo);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
}

/* FORMAS DE PEDIDO */
.formas-pedido {
  margin-top: 80px;
  text-align: center;
}

.formas-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.forma {
  background: rgba(255,255,255,0.05);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.forma i {
  font-size: 1.6rem;
  margin-bottom: 10px;
  color: var(--verde);
}

.forma:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.1);
}

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

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

.sobre {
  padding: 100px 20px;
  background: #000;
}

/* GRID */
.sobre-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXTO */
.sobre-texto h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.4rem);
  margin-bottom: 20px;
}

.sobre-texto p {
  color: #ccc;
  margin-bottom: 15px;
}

/* DIFERENCIAIS */
.sobre-diferenciais {
  margin-top: 30px;
}

.dif {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.dif i {
  font-size: 1.4rem;
  color: var(--verde);
}

.dif h4 {
  margin-bottom: 5px;
}

/* IMAGEM */
.sobre-imagem img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 0 40px rgba(0,255,100,0.15);
}

/* BLOCO EXTRA */
.sobre-extra {
  margin-top: 80px;
}

.sobre-extra-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sobre-extra-grid div {
  background: rgba(255,255,255,0.04);
  padding: 25px;
  border-radius: 16px;
  transition: 0.3s;
}

.sobre-extra-grid div:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.08);
}

.sobre-extra h3 {
  color: var(--amarelo);
  margin-bottom: 10px;
}

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

  .sobre-extra-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== SEÇÃO CTA FINAL (ISOLADA) ===== */
.cta-final {
  background: linear-gradient(135deg, #bb2e0b, #4b0404);
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* ===== RESET INTERNO (ANTI CONFLITO) ===== */
.cta-final * {
  box-sizing: border-box;
}

.cta-final a {
  text-decoration: none;
}

.cta-final button {
  border: none;
  cursor: pointer;
}

/* ===== CONTAINER ===== */
.cta-container {
  max-width: 900px;
  margin: 0 auto;
}

/* ===== TÍTULO ===== */
.cta-title {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 15px;
}

/* ===== SUBTÍTULO ===== */
.cta-subtitle {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

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

/* ===== BASE DOS BOTÕES ===== */
.cta-btn {
  all: unset;
  display: inline-block;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* ===== WHATSAPP ===== */
.cta-btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
  max-width: 120px;
}

.cta-btn-whatsapp:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.9);
}

/* ===== LIGAR ===== */
.cta-btn-ligar {
  background:  #4b0404;
  color: #fff;
  border: 1px solid #fff;
  max-width: 120px;
}

.cta-btn-ligar:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-subtitle {
    font-size: 16px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* ================= Beneficios ================= */

.beneficios {
  text-align: center;
  padding: 80px 20px;
}

/* BENEFICIOS GRID */
.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.beneficio-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 25px 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);

  display: flex;
  flex-direction: column;
  gap: 14px;
}
.beneficio-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;

  /* deixa amarelo padrão */
  filter: brightness(0) saturate(100%) invert(77%) sepia(83%) saturate(500%) hue-rotate(2deg);

  background: rgba(255, 215, 0, 0.08);
  padding: 10px;
  border-radius: 12px;
}

.beneficio-item:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255, 215, 0, 0.4);
}

.beneficio-item:hover img {
  background: rgba(255, 215, 0, 0.2);
}

.beneficio-item h3 {
  font-size: 1.05rem;
  color: #fff;
  margin-top: 10px;
  margin-bottom: 10px;
}

.beneficio-item p {
  font-size: 0.92rem;
  color: #ccc;
  line-height: 1.4;
}

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

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

  .beneficio-item {
    text-align: center;
    align-items: center;
  }
}


/* ================= DEPOIMENTOS ================= */
.depoimentos {
  text-align: center;
  padding: 80px 20px;
  background: #000301;
}

.depoimentos h2 {
  color: rgb(212, 210, 41);
  margin-top: 10px;
  margin-bottom: 10px;
}

/* WRAPPER */
.carousel-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* AREA */
.carousel {
  overflow: hidden;
  width: 900px;
  padding: 40px 0;
}

/* TRACK */
.track {
  display: flex;
  gap: 20px; /* 🔥 espaço real entre cards */
  transition: transform 0.4s ease;
}

/* CARD */
.card {
  flex: 0 0 280px; /* 🔥 melhor que min-width */
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  transition: all 0.3s ease;
  padding: 25px 20px;
  text-align: center;
}

.card:hover {
  transform: translateY(-6px) scale(1.02);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255, 215, 0, 0.4);
}

.card h3 {
  font-size: 1.05rem;
  color: #fff;
  margin: 0;
}

.card p {
  font-size: 0.92rem;
  color: #ccc;
  line-height: 1.4;
}

/* AVATAR */
.avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #c29a18;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin: 0 auto 10px;
}

/* TEMPO */
.tempo {
  font-size: 12px;
  color: #777;
}

/* ESTRELAS */
.stars {
  color: #fbbc04;
  margin: 10px 0;
}

/* SETAS */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255, 215, 0, 0.3);
  color: #ffd700;
  font-size: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.arrow:hover {
  background: rgba(255, 215, 0, 0.15);
  transform: translateY(-50%) scale(1.1);
}

.arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.arrow.left {
  left: -1%; 
}

.arrow.right {
  right: 1%;
}


/* ========================= */
/* 📱 MOBILE PERFEITO */
/* ========================= */

@media (max-width: 900px) {

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

  .track {
    gap: 0;
  }

  /* 🔥 SEGREDO DO CENTRO PERFEITO */
  .card {
    flex: 0 0 80%;
    margin: 0 10%; /* 🔥 CENTRALIZA PERFEITO */
    padding: 20px 15px;
  }

  .card h3 {
    font-size: 0.95rem;
  }

  .card p {
    font-size: 0.85rem;
  }

  .avatar {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  /* SETAS MOBILE */
  .arrow {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .arrow.left {
    left: -5px;
  }

  .arrow.right {
    right: 5px;
  }

}


.servico-card,
.beneficio-item,
.card {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: all 0.7s ease;
}

.servico-card.active,
.beneficio-item.active,
.card.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* FOOTER */
.footer {
  width: 100%;
  padding: 40px 15px;
    background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.96) 0%,
    rgba(10, 0, 0, 0.92) 12%,
    rgba(20, 0, 0, 0.85) 22%,
    rgba(40, 0, 0, 0.7) 35%,
    rgba(60, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.25) 65%,
    rgba(0, 0, 0, 0.1) 75%,
    transparent 85%
  );
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #012015;
  border-bottom: 2px solid #044b10;
  backdrop-filter: blur(10px);

}

.footer-container {
  width: 100%;
  max-width: 520px;
  text-align: center;
}

/* MARCA */
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.footer-brand img {
  width: 48px;
  height: auto;
}

.footer-brand h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: #f5dd02;/* escuro suave, não preto */
  margin-top: 5px;
}

/* CRP */
.footer-crp {
  font-size: 12px;
  color: #f3f182;
  letter-spacing: 0.5px;
}

/* TEXTO */
.footer-text {
  font-size: 13px;
  color:  #fffed6;
  margin-top: 14px;
  line-height: 1.6;
}

/* LINHA */
.footer-line {
  width: 35px;
  height: 2px;
  background:  #f5dd02; /* sua cor principal */
  margin: 20px auto;
  border-radius: 2px;
}

/* COPYRIGHT */
.footer-copy {
  font-size: 12px;
  color:  #f3f182;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer {
    padding: 30px 10px;
  }

  .footer-brand h2 {
    font-size: 18px;
  }

  .footer-text {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 11px;
  }
}