/* =========================
   FREELAAE - public.css (LIMPO)
   ========================= */

:root{
  --soft: #f5f5f5;                 /* cinza muito claro - estilo GetNinjas */
  --ink: #333333;                   /* texto mais suave */
  --muted: rgba(0,0,0,.6);
  --muted2: rgba(0,0,0,.7);
  --line: rgba(0,0,0,.12);
  --line2: rgba(0,0,0,.08);
  --shadow: rgba(0,0,0,.1);
  --primary: #00A8FF;               /* azul GetNinjas */
  --primary-hover: #0099e6;
  --accent: #22C55E;                /* verde esmeralda - cor de destaque */
  --accent-hover: #16A34A;          /* verde esmeralda hover */
  --accent-light: rgba(34, 197, 94, 0.1); /* verde esmeralda claro para backgrounds */
  --radius: 8px;                    /* border-radius menor, mais limpo */
  --bg-white: #ffffff;
}

/* =========================
   BASE
   ========================= */
.bg-soft{ background: var(--soft); }

/* =========================
   ANIMAÇÕES GLOBAIS
   ========================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animações de entrada - inicialmente ocultas */
@media (prefers-reduced-motion: no-preference) {
  .hero,
  #como-funciona,
  #metricas,
  #categorias,
  #depoimentos,
  #planos,
  #central-ajuda,
  #empresas,
  #o-que-e,
  #cadastro-profissional,
  #como-funciona-profissional,
  #pedidos-frequentes,
  #cta-profissional {
    opacity: 0;
  }
}

.hero.animate,
#como-funciona.animate,
#metricas.animate,
#categorias.animate,
#depoimentos.animate,
#planos.animate,
#central-ajuda.animate,
#empresas.animate,
#o-que-e.animate,
#cadastro-profissional.animate,
#como-funciona-profissional.animate,
#pedidos-frequentes.animate,
#cta-profissional.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero .col-lg-6 {
  opacity: 0;
}

.hero.animate .col-lg-6:first-child {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero.animate .col-lg-6:last-child {
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

#como-funciona .col-lg-6 {
  opacity: 0;
}

#como-funciona.animate .col-lg-6:first-child {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

#como-funciona.animate .col-lg-6:last-child {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

#metricas .col-md-4 {
  opacity: 0;
}

#metricas.animate .col-md-4:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

#metricas.animate .col-md-4:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

#metricas.animate .col-md-4:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.cat-item {
  opacity: 0;
}

#categorias.animate .cat-item:nth-child(1) { animation: scaleIn 0.5s ease-out 0.1s both; }
#categorias.animate .cat-item:nth-child(2) { animation: scaleIn 0.5s ease-out 0.15s both; }
#categorias.animate .cat-item:nth-child(3) { animation: scaleIn 0.5s ease-out 0.2s both; }
#categorias.animate .cat-item:nth-child(4) { animation: scaleIn 0.5s ease-out 0.25s both; }
#categorias.animate .cat-item:nth-child(5) { animation: scaleIn 0.5s ease-out 0.3s both; }
#categorias.animate .cat-item:nth-child(6) { animation: scaleIn 0.5s ease-out 0.35s both; }
#categorias.animate .cat-item:nth-child(7) { animation: scaleIn 0.5s ease-out 0.4s both; }
#categorias.animate .cat-item:nth-child(8) { animation: scaleIn 0.5s ease-out 0.45s both; }
#categorias.animate .cat-item:nth-child(9) { animation: scaleIn 0.5s ease-out 0.5s both; }
#categorias.animate .cat-item:nth-child(10) { animation: scaleIn 0.5s ease-out 0.55s both; }
#categorias.animate .cat-item:nth-child(11) { animation: scaleIn 0.5s ease-out 0.6s both; }
#categorias.animate .cat-item:nth-child(12) { animation: scaleIn 0.5s ease-out 0.65s both; }

#depoimentos .col-md-6 {
  opacity: 0;
}

#depoimentos.animate .col-md-6:nth-child(1) {
  animation: fadeInUp 0.8s ease-out 0.1s both;
}

#depoimentos.animate .col-md-6:nth-child(2) {
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

#depoimentos.animate .col-md-6:nth-child(3) {
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.plan-card {
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#planos.animate .plan-card:nth-child(1) {
  animation: scaleIn 0.6s ease-out 0.1s both;
}

#planos.animate .plan-card:nth-child(2) {
  animation: scaleIn 0.6s ease-out 0.2s both;
}

#central-ajuda {
  opacity: 0;
}

#central-ajuda.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}

.help-list-central li {
  opacity: 0;
}

#central-ajuda.animate .accordion-item:nth-child(1) { animation: fadeInUp 0.6s ease-out 0.1s both; }
#central-ajuda.animate .accordion-item:nth-child(2) { animation: fadeInUp 0.6s ease-out 0.2s both; }
#central-ajuda.animate .accordion-item:nth-child(3) { animation: fadeInUp 0.6s ease-out 0.3s both; }
#central-ajuda.animate .accordion-item:nth-child(4) { animation: fadeInUp 0.6s ease-out 0.4s both; }
#central-ajuda.animate .accordion-item:nth-child(5) { animation: fadeInUp 0.6s ease-out 0.5s both; }
#central-ajuda.animate .accordion-item:nth-child(6) { animation: fadeInUp 0.6s ease-out 0.6s both; }

#central-ajuda .accordion-item {
  opacity: 0;
}

.plan-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Animações de hover */
.btn {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.card-soft {
  transition: box-shadow 0.3s ease;
}

.card-soft:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Card Empresa com borda animada */
.card-empresa{
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0,168,255,.15);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.card-empresa::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 270deg,
    var(--primary) 270deg,
    var(--primary) 360deg
  );
  animation: traceBorder 6s linear infinite;
}

.card-empresa::after{
  content: '';
  position: absolute;
  inset: 2px;
  z-index: 0;
  background: var(--bg-white);
  border-radius: calc(var(--radius) - 2px);
}

.card-empresa > * {
  position: relative;
  z-index: 1;
}

.card-empresa:hover{
  box-shadow: 0 6px 16px rgba(0,168,255,.2);
}

/* Card Freelancer com borda animada preta */
.card-freelancer{
  border: 2px solid #333333;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.card-freelancer::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 270deg,
    #333333 270deg,
    #333333 360deg
  );
  animation: traceBorderReverse 6s linear infinite;
}

@keyframes traceBorderReverse {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

.card-freelancer::after{
  content: '';
  position: absolute;
  inset: 2px;
  z-index: 0;
  background: var(--bg-white);
  border-radius: calc(var(--radius) - 2px);
}

.card-freelancer > * {
  position: relative;
  z-index: 1;
}

.card-freelancer:hover{
  box-shadow: 0 6px 16px rgba(0,0,0,.2);
}

.cat-item {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.t-card {
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mini-stat {
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

/* Scroll animations */
@media (prefers-reduced-motion: no-preference) {
  .animate-on-scroll {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
  }
}

/* =========================
   TIPOGRAFIA - Mais vida e contraste
   ========================= */

/* Títulos mais ousados e fortes */
h1, .h1, .display-5, .display-4, .display-3, .display-2, .display-1{
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  line-height: 1.15 !important;
}

h2, .h2{
  font-weight: 700 !important;
  letter-spacing: -0.02em;
  line-height: 1.2 !important;
}

h3, .h3{
  font-weight: 700 !important;
  letter-spacing: -0.01em;
  line-height: 1.25 !important;
}

h4, .h4, h5, .h5, h6, .h6{
  font-weight: 600 !important;
  line-height: 1.3 !important;
}

/* Textos mais soltos - line-height maior */
p, .lead, body, .text-muted{
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

.lead{
  font-weight: 400 !important;
  line-height: 1.65 !important;
  font-size: 1.15rem;
}

/* Textos pequenos também mais soltos */
small, .small{
  line-height: 1.6 !important;
  font-weight: 400 !important;
}

/* Logo */
.navbar-brand img{
  height: 50px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 991px){
  .navbar-brand img{
    height: 60px;
  }
}

@media (max-width: 575px){
  .navbar-brand img{
    height: 50px;
  }
}

/* Navbar responsiva */
@media (max-width: 991px){
  .navbar-nav .nav-item{ width: 100%; }
  .navbar-nav .btn{ 
    width: 100%; 
    text-align: center;
  }
}

/* Animação navbar */
.navbar {
  animation: fadeIn 0.6s ease-out;
}

.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

/* bolinhas do hero */
.dot{
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 999px;
  display: inline-block;
}

/* Override Bootstrap primary color */
.btn-primary{
  background-color: var(--primary);
  border-color: var(--primary);
  font-weight: 600;
}

.btn-primary:hover{
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 168, 255, 0.3);
}

.text-primary{
  color: var(--primary) !important;
}

.text-accent{
  color: var(--accent) !important;
}

.bg-accent{
  background-color: var(--accent) !important;
}

.bg-accent-light{
  background-color: var(--accent-light) !important;
}

/* =========================
   HERO - Estilo GetNinjas
   ========================= */
.hero{
  background: #ffffff;
  padding: 4rem 0;
}

/* Imagem de fundo responsiva */
.hero-background-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

/* Círculo branco responsivo - sempre visível */
.hero-circle {
  position: absolute;
  background: white;
  border-radius: 50%;
  z-index: 2;
  top: 50%;
  left: 15%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
}

/* =========================
   MEDIA QUERIES RESPONSIVAS
   ========================= */

/* Desktop extra grande (>1400px) */
@media (min-width: 1400px) {
  .hero-circle {
    width: 1000px;
    height: 1000px;
    left: 18%;
  }
}

/* Desktop grande (1200px - 1399px) - padrão já definido acima */

/* Desktop médio e menores (<1199px) - Remove círculo e adiciona overlay */
@media (max-width: 1199px) {
  /* Esconde o círculo */
  .hero-circle {
    display: none !important;
  }

  /* Imagem de fundo ocupa 100% */
  .hero-background-image {
    width: 100%;
    right: 0;
    left: 0;
  }

  /* Overlay azul claro semi-transparente sobre a imagem */
  .hero-background-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.75);
    z-index: 2;
    pointer-events: none;
  }

  /* Centraliza todo o conteúdo */
  .hero .container {
    text-align: center;
  }

  .hero .col-lg-6 {
    max-width: 100%;
    flex: 0 0 100%;
  }

  /* Centraliza título, texto e busca */
  .hero h1 {
    text-align: center;
  }

  .hero .lead {
    text-align: center;
  }

  .hero-search {
    margin-left: auto;
    margin-right: auto;
  }

  /* Centraliza tags populares */
  .popular-searches {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .popular-label {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }

  .popular-tags {
    justify-content: center;
    width: 100%;
  }

  /* Centraliza botões */
  .hero .d-flex.flex-column.flex-sm-row {
    justify-content: center;
  }
}

.hero-image{
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img{
  max-width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* Barra de busca hero */
.hero-search {
  max-width: 600px;
}

.search-bar-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.search-bar-wrapper:focus-within {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,.12);
}

.search-icon {
  color: var(--primary);
  font-size: 1.2rem;
  margin-right: 12px;
  flex-shrink: 0;
}

.search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  color: #333;
  background: transparent;
}

.search-input::placeholder {
  color: #999;
}

.search-clear {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0;
  margin-left: 12px;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.search-clear:hover {
  opacity: 1;
}

/* Sugestões populares */
.popular-searches {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 600px;
}

.popular-label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.popular-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.popular-tag {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.9rem;
  color: #333;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.popular-tag:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  transform: translateY(-1px);
}

.hero-card{
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}

.card-soft{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  background: var(--bg-white);
}

.mini-stat{
  background: var(--soft);
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  transition: all .2s ease;
}

.mini-stat:hover{
  background: var(--bg-white);
  box-shadow: 0 2px 4px rgba(0,0,0,.06);
}

/* steps */
.steps{
  padding-left: 18px;
  margin: 0;
}
.steps li{ 
  margin-bottom: 12px; 
  font-weight: 400;
  line-height: 1.7;
}

.steps li strong{
  font-weight: 600;
}

/* =========================
   MÉTRICAS (fundo branco + barra azul)
   ========================= */
.metrics-section{
  background: var(--soft);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2);
  padding: 64px 0;
}

.metric-item{
  max-width: 320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-item > div:first-child{
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  transition: transform 0.3s ease;
}

.metric-item:hover > div:first-child {
  transform: scale(1.1) rotate(5deg);
}

.metric-number-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  margin: 0;
  min-height: 60px;
  white-space: nowrap;
}

.metric-prefix {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.2;
  padding: 6px 10px;
  display: inline-block;
  white-space: nowrap;
}

.metric-value {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
  line-height: 1.2;
  padding: 6px 10px;
  display: inline-block;
  opacity: 0;
  margin-left: 0;
  white-space: nowrap;
}

.metric-value.counted {
  opacity: 1;
}

.metric-bar{
  display: block;
  width: 100px;
  height: 6px;
  margin: 16px auto;
  background: var(--primary);
  border-radius: 3px;
}

.metric-item p{
  margin: 0;
  font-size: 15px;
  color: var(--muted2);
  font-weight: 400;
  line-height: 1.7;
  text-align: center;
  max-width: 280px;
}

/* =========================
   CATEGORIAS
   ========================= */
#categorias{
  background: var(--bg-white);
  padding: 64px 0;
  border-top: 1px solid var(--line2);
}


.cat-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 24px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.cat-item{
  text-decoration: none;
  color: var(--ink);
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 16px;
  min-height: 130px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  box-shadow: 0 2px 4px rgba(0,0,0,.04);
  transition: all .2s ease;
}

.cat-item:hover{
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,168,255,.15);
  text-decoration: none;
  color: var(--ink);
}

.cat-ico{
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  flex-shrink: 0;
}

.cat-ico i{
  font-size: 24px;
  color: var(--primary);
}

.cat-name{
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  color: var(--ink);
}

/* =========================
   PLANOS
   ========================= */
#planos{
  background: var(--soft);
  padding: 64px 0;
}

.plan-toggle-wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

.plan-toggle{
  display: inline-flex;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 4px;
  gap: 4px;
}

.plan-toggle-btn{
  padding: 8px 20px;
  border: none;
  background: transparent;
  color: var(--muted);
  font-weight: 500;
  font-size: 14px;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: all 0.2s ease;
}

.plan-toggle-btn:hover{
  color: var(--ink);
  background: var(--soft);
}

.plan-toggle-btn.active{
  background: var(--primary);
  color: #ffffff;
  font-weight: 600;
  transform: scale(1.05);
}

.plan-toggle-btn {
  transition: all 0.3s ease;
}

.plan-card,
.card.plan-card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--bg-white);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.card.plan-card:hover{
  transform: translateY(-3px)!important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1)!important;
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.plan-price{
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
}

.plan-price .price{
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.plan-price .sub{
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.plan-pill{
  font-size: 12px;
  font-weight: 700;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
  color: rgba(0,0,0,.75);
}

.plan-pill-pro{
  background: rgba(0,168,255,.1);
  color: var(--primary);
}

.plan-list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.plan-list li{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(0,0,0,.78);
}

.plan-list i{
  width: 18px;
  min-width: 18px;
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(0,0,0,.60);
}

.plan-badge-inline{
  font-size: 12px;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,168,255,.1);
  color: var(--primary);
  white-space: nowrap;
}

.plan-badge{ display: none; }

.plan-pro{
  border: 2px solid var(--primary);
  box-shadow: 0 4px 12px rgba(0,168,255,.15);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
}

.plan-pro::before{
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  z-index: 0;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    transparent 270deg,
    var(--primary) 270deg,
    var(--primary) 360deg
  );
  animation: traceBorder 3s linear infinite;
}

.plan-pro::after{
  content: '';
  position: absolute;
  inset: 2px;
  z-index: 0;
  background: var(--bg-white);
  border-radius: calc(var(--radius) - 2px);
}

.plan-pro > * {
  position: relative;
  z-index: 1;
}

.plan-pro:hover{
  box-shadow: 0 6px 16px rgba(0,168,255,.2);
}

@keyframes traceBorder {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* =========================
   DEPOIMENTOS (FUNCIONA NO DESKTOP)
   ========================= */
#depoimentos{
  background: var(--bg-white);
  padding: 64px 0;
  border-top: 1px solid var(--line2);
}

#depoimentos .t-card{
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: all .2s ease;
  overflow: hidden;
}

#depoimentos .t-card:hover{
  transform: translateY(-2px);
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,168,255,.1);
}

#depoimentos .t-quote{
  position: absolute;
  top: 12px;
  left: 20px;
  font-size: 56px;
  line-height: 1;
  font-weight: 700;
  color: var(--soft);
  user-select: none;
  opacity: .5;
}

#depoimentos .t-stars{
  display: flex;
  gap: 4px;
  margin-bottom: 12px;
  color: #FFB800;
  font-size: 16px;
}

#depoimentos .t-text{
  margin: 0;
  color: rgba(0,0,0,.75);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
  padding-left: 6px;
}

#depoimentos .t-meta{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,.06);
}

#depoimentos .t-avatar{
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--primary);
  border: none;
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0;
  flex: 0 0 auto;
  font-size: 16px;
}

#depoimentos .t-name{
  font-weight: 700;
  color: rgba(0,0,0,.88);
  line-height: 1.3;
}

#depoimentos .t-sub{
  font-size: 13px;
  color: rgba(0,0,0,.58);
  font-weight: 400;
  line-height: 1.6;
}

/* =========================
   FOOTER PROFISSIONAL
   ========================= */
.footer-professional{
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
  border-top: 1px solid var(--line);
}

.footer-main{
  padding: 60px 0 40px;
}

/* Logo do Footer */
.footer-logo{
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-logo:hover{
  transform: scale(1.05);
  opacity: 0.8;
}

/* Descrição */
.footer-description{
  font-size: 14px;
  line-height: 1.7;
  color: rgba(0,0,0,.65);
  margin-bottom: 1.5rem;
}

.footer-description strong{
  color: var(--primary);
  font-weight: 600;
}

/* Labels */
.footer-label{
  font-size: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(0,0,0,.5);
  margin-bottom: 0.75rem;
}

/* Títulos das Colunas */
.footer-title{
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

/* Links das Colunas */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin-bottom: 10px;
}

.footer-links a{
  color: rgba(0,0,0,.65);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
}

.footer-links a::before{
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-links a:hover{
  color: var(--primary);
  transform: translateX(3px);
}

.footer-links a:hover::before{
  width: 100%;
}

/* Redes Sociais Footer */
.social-icons-footer{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icons-footer a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,.06);
  color: var(--ink);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons-footer a:hover{
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 12px rgba(0,168,255,.3);
}

/* Trust Badges */
.trust-badges{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-badge{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.2);
  border-radius: 6px;
  font-size: 13px;
  color: rgba(0,0,0,.7);
  font-weight: 500;
}

.trust-badge i{
  color: var(--accent);
  font-size: 18px;
}

.trust-badge-img{
  height: 40px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

/* Separator */
.footer-separator{
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 0;
}

/* Footer Bottom */
.footer-bottom{
  background: transparent;
  padding: 24px 0;
}

.footer-copyright{
  font-size: 13px;
  color: rgba(0,0,0,.6);
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-copyright strong{
  color: var(--ink);
  font-weight: 600;
}

.footer-link-highlight{
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.footer-link-highlight:hover{
  color: var(--primary-hover);
  text-decoration: underline;
}

.footer-cnpj{
  font-size: 12px;
  color: rgba(0,0,0,.45);
}

/* Responsividade Footer */
@media (max-width: 991px){
  .footer-main{
    padding: 48px 0 32px;
  }

  .footer-legal-links{
    justify-content: center;
    margin-top: 1rem;
  }

  .footer-title::after{
    left: 0;
  }
}

@media (max-width: 767px){
  .footer-main{
    padding: 40px 0 24px;
  }

  .footer-logo{
    height: 45px;
  }

  .footer-description{
    font-size: 13px;
  }

  .footer-title{
    font-size: 14px;
    margin-bottom: 1rem;
  }

  .footer-links a{
    font-size: 13px;
  }

  .social-icons-footer a{
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .trust-badge{
    font-size: 12px;
  }

  .footer-legal-links{
    gap: 16px;
  }

  .footer-copyright,
  .footer-cnpj{
    font-size: 12px;
  }
}

/* =========================
   CENTRAL DE AJUDA / FAQ
   ========================= */
#central-ajuda{
  background: var(--bg-white);
  padding: 64px 0;
  border-top: 1px solid var(--line2);
}

#central-ajuda .accordion{
  border: none;
}

#central-ajuda .accordion-item{
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--bg-white);
  transition: all 0.3s ease;
}

#central-ajuda .accordion-item:hover{
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(0,168,255,.1);
}

#central-ajuda .accordion-button{
  background: var(--bg-white);
  color: var(--ink);
  font-weight: 600;
  font-size: 16px;
  padding: 20px 24px;
  border: none;
  box-shadow: none;
}

.footer-social-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start; 
  text-align: left;       
  gap: 6px;
}

.footer-label {
  margin: 0;
  font-size: 11px;
}

.social-icon {
  font-size: 22px;
  line-height: 1;
  display: inline-flex;  
  justify-content: center;
  align-items: center;
}


#central-ajuda .accordion-button:not(.collapsed){
  background: var(--soft);
  color: var(--primary);
}

#central-ajuda .accordion-button:focus{
  box-shadow: none;
  border-color: var(--primary);
}

#central-ajuda .accordion-button i{
  color: var(--primary);
  font-size: 18px;
}

#central-ajuda .accordion-button:not(.collapsed) i{
  color: var(--primary);
}

#central-ajuda .accordion-body{
  padding: 20px 24px;
  color: var(--muted2);
  font-size: 15px;
  line-height: 1.7;
  background: var(--bg-white);
}

/* =========================
   CARROSSEL DE EMPRESAS
   ========================= */
#empresas{
  background: var(--bg-white);
  padding: 60px 0;
  border-top: 1px solid var(--line2);
  overflow: hidden;
  position: relative;
}

.companies-carousel{
  width: 100%;
  overflow: visible;
  position: relative;
  padding: 10px 0;
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.companies-track{
  display: flex;
  gap: 40px;
  animation: scrollCompanies 20s linear infinite;
  width: max-content;
  will-change: transform;
}

.company-logo{
  transition: none;
  flex: 0 0 180px;
  width: 180px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: none;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  z-index: 1;
}

.company-logo img{
  width: 160px;
  height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.company-logo img.logo-coredev{
  width: 200px;
  height: 100px;
}

.company-logo:hover{
  transform: none;
  box-shadow: none;
  z-index: 10;
}

.company-logo:hover img{
  transform: none;
}

@keyframes scrollCompanies {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

#empresas {
  opacity: 0;
}

#empresas.animate {
  animation: fadeInUp 0.8s ease-out forwards;
}


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

/* Tablet e Desktop Médio (até 1199px) */
@media (max-width: 1199px){
  .hero-card{ padding: 1.5rem !important; }
  
  .cat-grid{ gap: 16px; }
  .cat-item{ width: 168px; }
  
  .plan-price .price{ font-size: 36px; }
}

/* Tablet (até 991px) */
@media (max-width: 991px){
  /* Hero Section */
  .hero{ padding: 3rem 0 !important; }
  
  .hero h1{ font-size: 2.5rem; }
  .hero .lead{ font-size: 1.1rem; }
  
  .hero-card{ margin-top: 2rem; }
  
  /* Métricas */
  .metrics-section{ padding: 64px 0; }
  .metric-number{ font-size: 38px; }
  .metric-bar{ width: 100px; }
  
  /* Categorias */
  #categorias{ padding: 64px 0; }
  
  /* Planos */
  .plan-price .price{ font-size: 32px; }
  
  /* Footer */
  .footer-help .row > div{ margin-bottom: 2rem; }
  .footer-help .text-md-end{ text-align: left !important; }
}

/* Mobile Grande (até 767px) */
@media (max-width: 767px){
  /* Navbar */
  .navbar-brand{ font-size: 18px; }
  .brand-text{ font-size: 18px; }
  
  /* Hero Section */
  .hero{ padding: 2.5rem 0 !important; }
  .hero h1{ 
    font-size: 2rem; 
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero .lead{ 
    font-size: 1rem; 
    margin-bottom: 1.5rem;
  }
  
  .hero .badge{ 
    font-size: 0.875rem; 
    padding: 0.5rem 1rem;
    display: inline-block;
    margin-bottom: 1rem;
  }
  
  .hero .d-flex.flex-wrap{ 
    gap: 0.75rem;
    font-size: 0.875rem;
  }
  
  .hero-card{ 
    padding: 1.25rem !important;
    margin-top: 1.5rem;
  }
  
  .hero-card h5{ 
  font-size: 1.1rem; 
  font-weight: 600;
  line-height: 1.3;
}
  .hero-card .form-control-lg{ font-size: 1rem; }
  .hero-card .btn-lg{ font-size: 1rem; padding: 0.75rem 1.5rem; }
  
  .mini-stat{ padding: 0.75rem !important; }
  .mini-stat .fw-bold{ font-size: 0.95rem; }
  .mini-stat .small{ font-size: 0.8rem; }
  
  /* Como funciona */
  #como-funciona{ padding: 3rem 0; }
  #como-funciona h2{ font-size: 2rem; }
  #como-funciona .card-soft{ margin-bottom: 1rem; }
  #como-funciona h5{ font-size: 1.25rem; }
  
  /* Métricas */
  .metrics-section{ padding: 3.5rem 0; }
  .metric-number{ font-size: 32px; }
  .metric-bar{ width: 80px; height: 6px; margin: 10px auto 12px; }
  .metric-item p{ font-size: 13px; }
  
  /* Categorias */
  #categorias{ padding: 3.5rem 0; }
  #categorias h2{ font-size: 22px; }
  #categorias p{ font-size: 14px; }
  .cat-grid{ 
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 12px; 
    margin-top: 1.5rem;
  }
  .cat-item{
    min-height: 110px;
    padding: 16px 12px;
  }
  .cat-ico{ 
    width: 48px; 
    height: 48px; 
  }
  .cat-ico i{ font-size: 20px; }
  .cat-name{ font-size: 13px; }
  
  /* Empresas */
  #empresas{ padding: 3rem 0; }
  .company-logo{
    width: 140px;
    height: 80px;
    padding: 15px;
  }
  
  /* Depoimentos */
  #depoimentos{ padding: 3.5rem 0; }
  #depoimentos h2{ font-size: 2rem; margin-bottom: 2rem; }
  #depoimentos .t-card{ padding: 1.25rem 1rem; }
  #depoimentos .t-quote{ font-size: 48px; top: 6px; left: 10px; }
  #depoimentos .t-text{ font-size: 14px; }
  #depoimentos .t-avatar{ width: 40px; height: 40px; font-size: 0.9rem; }
  #depoimentos .t-name{ font-size: 0.95rem; }
  #depoimentos .t-sub{ font-size: 12px; }
  
  /* Planos */
  #planos{ padding: 3.5rem 0; }
  #planos h2{ font-size: 2rem; }
  #planos .plan-card{ margin-bottom: 1.5rem; }
  .plan-price .price{ font-size: 28px; }
  .plan-price .sub{ font-size: 13px; }
  .plan-list li{ font-size: 13px; }
  .plan-list i{ font-size: 15px; width: 16px; min-width: 16px; }
  .plan-badge-inline{ font-size: 11px; padding: 5px 8px; }
  .plan-pill{ font-size: 11px; padding: 5px 8px; }
  
  /* Footer */
  .footer-help{ padding: 3rem 0; }
  .footer-help h3{ font-size: 1.25rem; }
  .footer-help .text-muted{ font-size: 0.9rem; }
  .help-list a{ font-size: 13px; padding: 10px 0; }
  .social-icons{ margin-top: 1rem; }
  .social-icons a{ 
    width: 40px; 
    height: 40px; 
    font-size: 18px; 
    margin-left: 6px;
  }
  .footer-bottom{ font-size: 12px; padding: 10px; }
}

/* Mobile Pequeno (até 575px) */
@media (max-width: 575px){
  /* Container padding */
  .container{ padding-left: 1rem; padding-right: 1rem; }
  
  /* Navbar */
  .navbar{ padding: 0.5rem 0; }
  .navbar-brand{ font-size: 16px; }
  .brand-text{ font-size: 16px; }
  .navbar-toggler{ padding: 0.25rem 0.5rem; }
  
  .navbar-nav .btn{ 
    width: 100%; 
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
  .navbar-nav .nav-link{ padding: 0.5rem 0; }
  
  /* Hero Section */
  .hero{ padding: 2rem 0 !important; }
  .hero h1{ 
    font-size: 1.75rem; 
    line-height: 1.15;
  }
  .hero .lead{ font-size: 0.95rem; }
  
  .hero .badge{ 
    font-size: 0.8rem; 
    padding: 0.4rem 0.8rem;
    line-height: 1.4;
    text-align: center;
  }
  
  .hero .d-flex.flex-wrap{ 
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8rem;
  }
  
  .hero .btn-lg{ 
    width: 100%; 
    font-size: 0.95rem; 
    padding: 0.75rem 1rem;
  }
  
  .hero-card{ padding: 1rem !important; }
  .hero-card h5{ font-size: 1rem; margin-bottom: 1rem; }
  
  .hero-card .d-flex{ flex-direction: column; }
  .hero-card .btn-lg{ width: 100%; }
  
  .mini-stat{ 
    padding: 0.625rem !important; 
    margin-bottom: 0.5rem;
  }
  .mini-stat .fw-bold{ font-size: 0.9rem; }
  .mini-stat .small{ font-size: 0.75rem; }
  
  /* Como funciona */
  #como-funciona{ padding: 2.5rem 0; }
  #como-funciona h2{ font-size: 1.75rem; }
  #como-funciona p{ font-size: 0.95rem; }
  #como-funciona .card-soft{ padding: 1.25rem !important; }
  #como-funciona h5{ font-size: 1.1rem; }
  .steps{ padding-left: 20px; }
  .steps li{ font-size: 0.95rem; margin-bottom: 0.75rem; }
  #como-funciona .btn{ width: 100%; margin-top: 1rem; }
  
  /* Métricas */
  .metrics-section{ padding: 2.5rem 0; }
  .metric-number{ font-size: 28px; line-height: 1.1; }
  .metric-bar{ width: 70px; height: 5px; margin: 8px auto 10px; }
  .metric-item p{ font-size: 12px; line-height: 1.4; }
  
  /* Categorias */
  #categorias{ padding: 2.5rem 0; }
  #categorias h2{ font-size: 1.5rem; }
  #categorias p{ font-size: 0.875rem; }
  .cat-grid{ 
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; 
  }
  .cat-item{
    min-height: 100px;
    padding: 14px 10px;
  }
  .cat-ico{ 
    width: 44px; 
    height: 44px; 
    border-radius: 12px;
  }
  .cat-ico i{ font-size: 18px; }
  .cat-name{ font-size: 12px; line-height: 1.2; }
  
  /* Depoimentos */
  #depoimentos{ padding: 2.5rem 0; }
  #depoimentos h2{ font-size: 1.75rem; }
  #depoimentos p.text-muted{ font-size: 0.875rem; }
  #depoimentos .t-card{ padding: 1rem 0.875rem; }
  #depoimentos .t-quote{ font-size: 40px; top: 4px; left: 8px; }
  #depoimentos .t-stars{ font-size: 12px; gap: 3px; }
  #depoimentos .t-text{ font-size: 13px; line-height: 1.5; padding-left: 4px; }
  #depoimentos .t-meta{ 
    margin-top: 12px; 
    padding-top: 12px; 
    gap: 10px;
  }
  #depoimentos .t-avatar{ 
    width: 36px; 
    height: 36px; 
    font-size: 0.85rem;
    border-radius: 10px;
  }
  #depoimentos .t-name{ font-size: 0.9rem; }
  #depoimentos .t-sub{ font-size: 11px; line-height: 1.3; }
  
  /* Planos */
  #planos{ padding: 2.5rem 0; }
  #planos h2{ font-size: 1.75rem; }
  #planos p.text-muted{ font-size: 0.875rem; }
  .plan-card{ padding: 1.25rem !important; }
  .plan-card h5{ font-size: 1.25rem; }
  .plan-card .d-flex.justify-content-between{ 
    flex-direction: column; 
    align-items: flex-start;
    gap: 0.75rem;
  }
  .plan-badge-inline{ font-size: 10px; padding: 4px 7px; }
  .plan-pill{ font-size: 10px; padding: 4px 7px; }
  .plan-price .price{ font-size: 32px; }
  .plan-price .sub{ font-size: 12px; }
  .plan-list{ gap: 8px; }
  .plan-list li{ font-size: 12px; gap: 8px; }
  .plan-list i{ font-size: 14px; width: 14px; min-width: 14px; }
  .plan-card .btn{ font-size: 0.95rem; padding: 0.75rem; }
  
  /* Footer */
  .footer-help{ padding: 2.5rem 0; }
  .footer-help h3{ font-size: 1.1rem; margin-bottom: 1rem; }
  .footer-help .text-muted{ font-size: 0.85rem; margin-bottom: 1rem; }
  .help-list a{ font-size: 12px; padding: 8px 0; }
  .social-icons{ margin-top: 1rem; margin-left: -6px; }
  .social-icons a{ 
    width: 36px; 
    height: 36px; 
    font-size: 16px; 
    margin-left: 6px;
  }
  .footer-bottom{ 
    font-size: 11px; 
    padding: 12px 1rem; 
    line-height: 1.5;
  }
}

/* Mobile Extra Pequeno (até 375px) */
@media (max-width: 375px){
  .hero h1{ font-size: 1.5rem; }
  .metric-number{ font-size: 24px; }
  .cat-item{ min-height: 85px; padding: 10px 6px; }
  .plan-price .price{ font-size: 28px; }
}

/* =========================
   PEDIDOS MAIS FREQUENTES
   ========================= */
#pedidos-frequentes .card {
  min-height: 420px;
}

#pedidos-frequentes .card h5 {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pedidos-frequentes .carousel-control-prev,
#pedidos-frequentes .carousel-control-next {
  opacity: 1;
}

#pedidos-frequentes .carousel-control-prev:hover,
#pedidos-frequentes .carousel-control-next:hover {
  background: rgba(0,0,0,0.2) !important;
}

@media (max-width: 768px) {
  /* Esconder setas no mobile */
  #pedidos-frequentes .carousel-control-prev,
  #pedidos-frequentes .carousel-control-next {
    display: none !important;
  }

  /* Carousel-inner como container scrollável */
  #pedidos-frequentes .carousel-inner {
    display: block !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  /* Wrapper criado via JS - linha flex horizontal */
  #pedidos-frequentes .mobile-cards-wrapper {
    display: flex !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
    padding: 10px 0;
  }

  /* Cards com largura fixa - 2 visíveis por vez */
  #pedidos-frequentes .mobile-cards-wrapper > .col-md-4 {
    flex: 0 0 45% !important;
    max-width: 45% !important;
    min-width: 45% !important;
    scroll-snap-align: start;
  }

  /* Ajustar altura e conteúdo dos cards */
  #pedidos-frequentes .card {
    height: 320px;
    overflow: hidden;
  }

  #pedidos-frequentes .card-body {
    padding: 1rem !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  /* Ajustar container da imagem */
  #pedidos-frequentes .card-body > div:first-child {
    margin-bottom: 0.5rem !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
  }

  #pedidos-frequentes .card-body .d-inline-flex {
    width: 100% !important;
    height: auto !important;
    max-width: 100px !important;
    max-height: 100px !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  /* Ajustar imagem */
  #pedidos-frequentes .card-body img {
    width: 100px !important;
    height: 100px !important;
    max-width: 100px !important;
    max-height: 100px !important;
    object-fit: cover !important;
    border-radius: 12px !important;
    display: block !important;
    margin: 0 auto !important;
  }

  /* Reduzir tamanhos no mobile */
  #pedidos-frequentes .card h5 {
    font-size: 0.95rem !important;
    margin-bottom: 0.5rem !important;
    min-height: 40px;
  }

  #pedidos-frequentes .badge {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
  }

  #pedidos-frequentes .card-body small {
    font-size: 0.7rem !important;
  }

  #pedidos-frequentes .card-body .bi {
    font-size: 0.8rem !important;
  }

  #pedidos-frequentes .card-body .fw-bold:not(h5) {
    font-size: 0.9rem !important;
  }
}

/* =========================
   CTA PROFISSIONAL
   ========================= */
#cta-profissional {
  position: relative;
  overflow: hidden;
}

#cta-profissional .cta-image-wrapper {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

#cta-profissional .cta-image-wrapper img {
  transition: transform 0.4s ease;
}

#cta-profissional .cta-image-wrapper:hover img {
  transform: scale(1.02);
}

#cta-profissional .badge {
  animation: pulse 2s ease-in-out infinite;
}

#cta-profissional .d-flex.align-items-start {
  transition: transform 0.3s ease;
}

#cta-profissional .d-flex.align-items-start:hover {
  transform: translateX(8px);
}

#cta-profissional .btn {
  transition: all 0.3s ease;
}

#cta-profissional .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 168, 255, 0.3);
}

#cta-profissional .btn-outline-dark:hover {
  transform: translateY(-2px);
}

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Responsividade */
@media (max-width: 991px) {
  #cta-profissional .col-lg-6:first-child {
    order: 1;
  }

  #cta-profissional .col-lg-6:last-child {
    order: 0;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  #cta-profissional h2 {
    font-size: 1.75rem;
  }

  #cta-profissional .lead {
    font-size: 1rem;
  }

  #cta-profissional .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem;
  }

  /* Diminuir badge flutuante no mobile para mostrar o rosto */
  #cta-profissional .position-absolute {
    top: 10px !important;
    right: 10px !important;
    padding: 6px 12px !important;
    border-radius: 20px !important;
  }

  #cta-profissional .position-absolute .fw-bold {
    font-size: 0.65rem !important;
  }

  #cta-profissional .position-absolute .rounded-circle {
    width: 8px !important;
    height: 8px !important;
  }

  #cta-profissional .position-absolute .rounded-circle .bg-white {
    width: 4px !important;
    height: 4px !important;
  }
}

/* =========================
   BREADCRUMB ESTRUTURADO
   ========================= */

.breadcrumb-nav {
  background: #f8f9fa;
  padding: 16px 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.875rem;
}

.breadcrumb {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  background: transparent;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "›";
  padding: 0 8px;
  color: #6c757d;
  font-weight: 400;
}

.breadcrumb-item a {
  color: #00A8FF;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: #0090e0;
  text-decoration: underline;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* =========================
   PÁGINA SOBRE NÓS - DESIGN PROFISSIONAL CLEAN
   ========================= */

.about-professional {
  background: #ffffff;
  padding: 80px 0 100px;
  min-height: 70vh;
}

/* Imagem de Destaque */
.about-featured-image {
  margin-bottom: 40px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Header Section - Estilo Limpo */
.about-header {
  margin-bottom: 48px;
  text-align: center;
  border-bottom: 2px solid var(--line);
  padding-bottom: 32px;
}

.about-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.about-title-main {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 0;
  letter-spacing: -0.02em;
}

/* Introduction Section - Com destaque visual */
.about-intro {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--soft);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}

.about-lead {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 0;
}

/* Quote Section - Destaque profissional */
.about-quote {
  margin: 40px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  position: relative;
}

.about-quote p {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 0;
  font-style: italic;
  letter-spacing: -0.01em;
}

/* Body Content - Tipografia clean */
.about-body {
  margin-bottom: 40px;
}

.about-body p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted2);
  font-weight: 400;
  margin-bottom: 16px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* Principles List - Estilo limpo com bullets */
.about-principles-list {
  margin: 32px 0;
  padding: 0;
  list-style: none;
}

.principle-item {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted2);
}

.principle-icon {
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}

.principle-text {
  font-weight: 500;
  color: var(--ink);
}

/* Closing Statement - Destaque final */
.about-closing {
  margin-bottom: 48px;
  padding: 20px 24px;
  background: var(--soft);
  border-radius: var(--radius);
  text-align: center;
}

.about-closing p {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 0;
}

/* Divider - Separador suave */
.about-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 40px 0;
}

/* CTA Actions - Cards profissionais */
.about-actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.about-action-link {
  padding: 28px 24px;
  background: #ffffff;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.about-action-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: var(--radius) var(--radius) 0 0;
}

.about-action-link:hover::before {
  transform: scaleX(1);
}

.about-action-link:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(0, 168, 255, 0.12);
}

.about-action-primary {
  background: var(--soft);
}

.action-label {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 4px;
}

.action-text {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
  transition: color 0.25s ease;
}

.about-action-link:hover .action-text {
  color: var(--primary);
}

/* Responsividade Tablet */
@media (max-width: 991px) {
  .about-professional {
    padding: 60px 0 80px;
  }

  .about-title-main {
    font-size: 2rem;
  }

  .about-lead {
    font-size: 1rem;
  }

  .about-quote p {
    font-size: 1.25rem;
  }

  .about-actions {
    grid-template-columns: 1fr;
  }

}

/* Responsividade Mobile */
@media (max-width: 767px) {
  .about-professional {
    padding: 40px 0 60px;
  }

  .about-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .about-title-main {
    font-size: 1.75rem;
  }

  .about-intro {
    padding: 20px;
    margin-bottom: 32px;
  }

  .about-quote {
    padding: 20px 24px;
    margin: 32px 0;
  }

  .about-quote p {
    font-size: 1.125rem;
  }

  .about-closing {
    margin-bottom: 40px;
    padding: 16px 20px;
  }

  .about-divider {
    margin: 32px 0;
  }

  .about-actions {
    gap: 16px;
  }

  .about-action-link {
    padding: 24px 20px;
  }

  .action-text {
    font-size: 1rem;
  }

  .breadcrumb-nav {
    padding: 12px 0;
    font-size: 0.8125rem;
  }

  .breadcrumb-item + .breadcrumb-item::before {
    padding: 0 4px;
  }

  .about-featured-image {
    margin-bottom: 24px;
  }
}

/* =========================
   PÁGINA TERMOS DE USO
   ========================= */
.terms-page {
  background: #ffffff;
  padding: 80px 0 100px;
  min-height: 70vh;
}

/* Cabeçalho */
.terms-header {
  margin-bottom: 48px;
  text-align: center;
  border-bottom: 2px solid var(--line);
  padding-bottom: 32px;
}

.terms-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 16px;
}

.terms-title {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.terms-subtitle {
  font-size: 1.125rem;
  color: var(--muted2);
  font-weight: 500;
  margin-bottom: 0;
}

/* Introdução */
.terms-intro {
  margin-bottom: 40px;
  padding: 24px;
  background: var(--soft);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius);
}

.terms-intro-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--ink);
  margin-bottom: 16px;
}

.terms-intro-text:last-child {
  margin-bottom: 0;
}

.terms-intro-text strong {
  color: var(--ink);
  font-weight: 600;
}

/* Separador */
.terms-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 40px 0;
}

/* Conteúdo */
.terms-content {
  margin-bottom: 48px;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.terms-subsection {
  margin-top: 16px;
}

.terms-subsection-item {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--muted2);
  margin-bottom: 16px;
  padding-left: 8px;
}

.terms-subsection-item:last-child {
  margin-bottom: 0;
}

.terms-subsection-item strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}

/* Listas */
.terms-prohibited-intro,
.terms-exemption-intro {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
}

.terms-prohibited-list,
.terms-exemption-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.terms-prohibited-list li,
.terms-exemption-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted2);
}

.terms-prohibited-list li::before,
.terms-exemption-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Versão do Documento */
.terms-version {
  margin-top: 8px;
  margin-bottom: 0;
}

.terms-version small {
  display: inline-block;
  padding: 4px 12px;
  background: var(--soft);
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.05em;
}

/* Footer */
.terms-footer {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 2px solid var(--line);
  text-align: center;
}

.terms-update {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--muted2);
}

.terms-update strong {
  color: var(--ink);
  font-weight: 600;
}

.terms-update time {
  color: var(--ink);
  font-weight: 500;
}

/* Responsividade */
@media (max-width: 991px) {
  .terms-page {
    padding: 60px 0 80px;
  }

  .terms-title {
    font-size: 2rem;
  }

  .terms-section-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .terms-page {
    padding: 40px 0 60px;
  }

  .terms-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
  }

  .terms-title {
    font-size: 1.75rem;
  }

  .terms-subtitle {
    font-size: 1rem;
  }

  .terms-intro {
    padding: 20px;
  }

  .terms-intro-text {
    font-size: 1rem;
  }

  .terms-section-title {
    font-size: 1.25rem;
  }

  .terms-subsection-item {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  .terms-prohibited-list li,
  .terms-exemption-list li {
    font-size: 0.9375rem;
    line-height: 1.75;
  }

  .terms-divider {
    margin: 32px 0;
  }
}

@media (max-width: 575px) {
  .terms-page {
    padding: 32px 0 48px;
  }

  .terms-title {
    font-size: 1.5rem;
  }

  .terms-intro {
    padding: 16px;
    border-left-width: 3px;
  }

  .terms-section {
    margin-bottom: 32px;
  }

  .terms-section-title {
    font-size: 1.125rem;
  }
}

/* =========================
   CENTRAL DE AJUDA
   ========================= */
.help-page {
  background: var(--bg-white);
  padding: 48px 0 80px;
  min-height: 60vh;
}

/* Header */
.help-header {
  text-align: center;
  margin-bottom: 48px;
}

.help-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.help-eyebrow i {
  font-size: 18px;
}

.help-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.help-subtitle {
  font-size: 1.125rem;
  color: var(--muted2);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Barra de Busca */
.help-search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto 48px;
}

.help-search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--muted);
  pointer-events: none;
}

.help-search-input {
  width: 100%;
  padding: 16px 20px 16px 56px;
  font-size: 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  transition: all 0.3s ease;
  background: var(--bg-white);
}

.help-search-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 168, 255, 0.1);
}

.help-search-input::placeholder {
  color: var(--muted);
}

/* Divider */
.help-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line), transparent);
  margin: 48px 0;
}

/* Accordion FAQ */
.help-content .accordion {
  border: none;
}

.help-content .accordion-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--bg-white);
  overflow: hidden;
  transition: all 0.3s ease;
}

.help-content .accordion-item:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.help-content .accordion-button {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink);
  padding: 20px 24px;
  background: var(--bg-white);
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.help-content .accordion-button:not(.collapsed) {
  background: var(--soft);
  color: var(--primary);
}

.help-content .accordion-button:focus {
  box-shadow: none;
  border-color: var(--primary);
}

.help-content .accordion-button i {
  color: var(--primary);
  font-size: 18px;
}

.help-content .accordion-button:not(.collapsed) i {
  color: var(--primary);
}

.help-content .accordion-body {
  padding: 20px 24px 24px;
  color: var(--muted2);
  font-size: 15px;
  line-height: 1.7;
  background: var(--bg-white);
  border-top: 1px solid var(--line2);
}

.help-content .accordion-body strong {
  color: var(--ink);
  font-weight: 600;
}

/* CTA de Contato */
.help-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--soft) 0%, #e3f4ff 100%);
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  margin-top: 64px;
}

.help-contact-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
}

.help-contact-text {
  flex: 1;
}

.help-contact-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.help-contact-text p {
  font-size: 15px;
  color: var(--muted2);
  margin: 0;
}

.help-contact-cta .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Responsivo */
@media (max-width: 991px) {
  .help-title {
    font-size: 2rem;
  }

  .help-contact-cta {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .help-contact-text h3 {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .help-page {
    padding: 32px 0 48px;
  }

  .help-title {
    font-size: 1.75rem;
  }

  .help-subtitle {
    font-size: 1rem;
  }

  .help-header {
    margin-bottom: 32px;
  }

  .help-search-box {
    margin-bottom: 32px;
  }

  .help-search-input {
    padding: 14px 16px 14px 48px;
    font-size: 15px;
  }

  .help-search-box i {
    left: 16px;
    font-size: 18px;
  }

  .help-content .accordion-button {
    font-size: 1rem;
    padding: 16px 20px;
  }

  .help-content .accordion-body {
    padding: 16px 20px;
    font-size: 0.9375rem;
  }

  .help-contact-cta {
    padding: 20px;
    margin-top: 48px;
  }

  .help-contact-icon {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

@media (max-width: 575px) {
  .help-title {
    font-size: 1.5rem;
  }

  .help-divider {
    margin: 32px 0;
  }

  .help-content .accordion-item {
    margin-bottom: 12px;
  }
}
