/* ==========================================================================
   PREMIUM POLISH — Barba & Cia
   Camada de polimento visual de alto padrão.
   Nenhuma estrutura alterada. Apenas acabamentos premium.
   ========================================================================== */

/* ============================================================
   GLOBAL — Scrollbar, Seleção, Tipografia, Animações Base
   ============================================================ */

::selection {
  background: rgba(201, 166, 70, 0.25);
  color: #fff;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #c9a646, #8a6e25);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover { background: #d4a832; }

/* ============================================================
   NOVA LOGO — Dimensionamento e Integração do Header
   ============================================================ */

.logo-full-img {
  width: 180px; /* Entre 170px e 200px, conforme solicitado */
  height: auto !important;
  max-height: none !important;
  max-width: 100% !important;
  display: block;
  object-fit: contain;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Ajuste fino da altura e espaçamento do cabeçalho para integrar a logo */
.main-header {
  padding: 16px 0 !important; /* Evita que o cabeçalho fique gigante com a nova logo */
}

.main-header.sticky {
  padding: 10px 0 !important;
}

/* Garante alinhamento vertical centralizado perfeito de todos os itens do cabeçalho */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* Evita quebra de linha dos itens do menu */
}

.logo, .logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Header sticky — logo proporcional e menor */
.main-header.sticky .logo-full-img {
  width: 150px;
}

/* Remove estilos da logo antiga */
.logo-icon-img { display: none !important; }
.logo-svg      { display: none !important; }

/* Responsividade para evitar quebras de layout */
@media (max-width: 1200px) {
  .logo-full-img {
    width: 170px; /* Mantém na faixa ideal de 170px a 200px */
  }
  .main-header.sticky .logo-full-img {
    width: 140px;
  }
  .nav-menu {
    gap: 10px !important; /* Espaçamento menor para não empurrar os links */
  }
}

@media (max-width: 991px) {
  /* No mobile, deixa a logo proporcional */
  .logo-full-img {
    width: 145px; /* Aproximadamente 140px a 160px, proporcional */
  }
  .main-header.sticky .logo-full-img {
    width: 135px;
  }
}

/* Linha dourada sutil entre seções */
.section-padding + .section-padding {
  border-top: 1px solid rgba(201, 166, 70, 0.04);
}

/* Reveal animation aprimorada — múltiplas direções */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.from-left  { transform: translateX(-40px); }
.reveal.from-right { transform: translateX(40px); }
.reveal.from-scale { transform: scale(0.94); }
.reveal.active {
  opacity: 1;
  transform: none;
}

/* Stagger delay helpers */
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }
.reveal:nth-child(5) { transition-delay: 0.32s; }
.reveal:nth-child(6) { transition-delay: 0.40s; }

/* Divisor dourado premium */
.divider-gold {
  width: 50px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  position: relative;
}
.divider-gold::before {
  content: '◆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 6px;
  color: var(--color-gold);
  background: inherit;
  line-height: 1;
}

/* Separador de seção dourado horizontal */
.section-gold-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  margin: 0 auto 30px;
  opacity: 0.6;
}

/* ============================================================
   HEADER / MENU — Polimento premium
   ============================================================ */

.main-header {
  transition: padding 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.5s ease,
              box-shadow 0.5s ease;
}

/* Botão CTA do header mais premium */
.header-cta .btn-primary {
  position: relative;
  overflow: hidden;
  letter-spacing: 2px;
  font-size: 0.72rem;
}
.header-cta .btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}
.header-cta .btn-primary:hover::after { transform: translateX(200%); }

/* Nav links — hover com traço dourado crescendo do centro */
.nav-link {
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  transform-origin: center !important;
  height: 1.5px !important;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent) !important;
}
.nav-link.active {
  color: var(--color-white) !important;
}

/* Scroll spy — item ativo com glow */
.nav-link.spy-active {
  color: var(--color-gold) !important;
}
.nav-link.spy-active::after {
  width: 100% !important;
}

/* ============================================================
   SEÇÃO SOBRE — Polimento
   ============================================================ */

.about-section {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(201,166,70,0.03) 0%, transparent 60%),
    var(--color-graphite);
}

/* Linha dourada acima do section-header dentro do about */
.about-content .section-header::before,
.about-content .divider-gold-line-top {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--color-gold), transparent);
  margin: 0 0 20px 0;
  opacity: 0.7;
}

/* Imagem do about com bordas arredondadas e hover mais premium */
.about-img-wrapper {
  border-radius: 2px;
  overflow: hidden;
  transition: box-shadow 0.5s ease;
}
.about-img-wrapper:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 30px rgba(201,166,70,0.08);
}
.about-img-wrapper img {
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease !important;
}
.about-img-wrapper:hover img {
  transform: scale(1.03);
}

/* Badge de anos com glow dourado */
.about-badge {
  border-radius: 2px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.7), 0 0 20px rgba(201,166,70,0.15) !important;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.8), 0 0 30px rgba(201,166,70,0.25) !important;
}

/* Features da seção sobre com hover */
.about-feat-item {
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.about-feat-item:hover {
  border-color: rgba(201,166,70,0.15);
  background: rgba(201,166,70,0.04);
}
.about-feat-icon {
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}
.about-feat-item:hover .about-feat-icon {
  transform: scale(1.2);
  text-shadow: 0 0 12px rgba(201,166,70,0.6);
}


.service-card {
  border-radius: 3px;
  background: linear-gradient(145deg, #1f1f1f 0%, #1a1a1a 100%) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.03);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease !important;
}

/* Pseudo-elemento de brilho no hover */
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 3px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,166,70,0.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.service-card:hover::after { opacity: 1; }

.service-card:hover {
  transform: translateY(-12px) !important;
  box-shadow:
    0 30px 60px rgba(0,0,0,0.5),
    0 0 30px rgba(201,166,70,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06) !important;
  border-color: rgba(201,166,70,0.18) !important;
}

/* Ícone com glow suave */
.service-icon-box {
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}
.service-icon-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(201,166,70,0.15), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-card:hover .service-icon-box::after { opacity: 1; }
.service-card:hover .service-icon-box {
  box-shadow: 0 0 20px rgba(201,166,70,0.3) !important;
  transform: scale(1.05);
}

.service-title {
  transition: color 0.3s ease;
}
.service-card:hover .service-title {
  color: rgba(255,255,255,0.98);
}

/* CTA dos cards com linha animada */
.service-cta {
  position: relative;
  padding-bottom: 2px;
  transition: gap 0.3s ease;
}
.service-cta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-gold);
  transition: width 0.4s ease;
}
.service-card:hover .service-cta::after { width: 100%; }
.service-card:hover .service-cta { gap: 12px !important; }


/* ============================================================
   POR QUE ESCOLHER — Diferenciais premium
   ============================================================ */

.why-section {
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,166,70,0.025) 0%, transparent 50%),
    var(--color-graphite);
}

.why-card {
  padding: 50px 30px !important;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.5s ease;
}
.why-card:hover::before { width: 60%; }
.why-card:hover {
  background: rgba(201,166,70,0.03);
}

.why-icon {
  display: inline-block;
  transition: transform 0.4s ease, text-shadow 0.4s ease;
  position: relative;
}
.why-icon::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background: rgba(201,166,70,0.3);
}
.why-card:hover .why-icon {
  transform: translateY(-5px) scale(1.15);
  text-shadow: 0 0 20px rgba(201,166,70,0.5);
}

/* ============================================================
   GALERIA — Visual de portfólio premium
   ============================================================ */

/* Filtros mais sofisticados */
.filter-btn {
  border-radius: 1px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.filter-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.filter-btn:hover::after { transform: translateX(100%); }

.filter-btn.active {
  box-shadow: 0 4px 15px rgba(201,166,70,0.3) !important;
  letter-spacing: 2.5px;
}

/* Itens da galeria mais premium */
.gallery-item {
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease !important;
}
.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,166,70,0.2);
  z-index: 2;
}

.gallery-item img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.6s ease !important;
}
.gallery-item:hover img {
  transform: scale(1.1) !important;
}

/* Overlay da galeria mais elegante */
.gallery-item-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.95) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.3) 100%
  ) !important;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

/* Lightbox premium */
.lightbox {
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(0,0,0,0.94) !important;
}
.lightbox-img {
  border-radius: 2px;
  box-shadow: 0 30px 100px rgba(0,0,0,0.9), 0 0 0 1px rgba(201,166,70,0.15) !important;
  transition: transform 0.4s ease;
}
.lightbox-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  font-size: 1.5rem !important;
  transition: all 0.3s ease !important;
}
.lightbox-close:hover {
  border-color: var(--color-gold);
  background: rgba(201,166,70,0.1);
  transform: rotate(90deg);
}
.lightbox-prev, .lightbox-next {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  font-size: 1.4rem !important;
  transition: all 0.35s ease !important;
  backdrop-filter: blur(8px);
}
.lightbox-prev:hover, .lightbox-next:hover {
  border-color: var(--color-gold);
  background: rgba(201,166,70,0.12);
  transform: translateY(-50%) scale(1.1) !important;
}
.lightbox-prev { left: 25px !important; }
.lightbox-next { right: 25px !important; }

/* ============================================================
   DEPOIMENTOS — Cards glassmorphism premium
   ============================================================ */

.testimonials-section {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(201,166,70,0.04) 0%, transparent 60%),
    var(--color-graphite);
}

.testimonial-card {
  background: rgba(20,20,20,0.7) !important;
  border: 1px solid rgba(201,166,70,0.12) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 3px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.04) !important;
  transition: box-shadow 0.5s ease, border-color 0.5s ease;
}
.testimonial-card.active {
  box-shadow: 0 25px 70px rgba(0,0,0,0.5), 0 0 40px rgba(201,166,70,0.07) !important;
}

/* Avatar circular premium */
.reviewer-img-fallback {
  box-shadow: 0 0 0 3px rgba(201,166,70,0.3), 0 0 20px rgba(201,166,70,0.15);
  font-family: var(--font-title);
  font-size: 1.3rem !important;
  transition: transform 0.3s ease;
}
.testimonial-card.active .reviewer-img-fallback {
  transform: scale(1.05);
}

/* Estrelas animadas */
.review-stars {
  font-size: 1.1rem !important;
  letter-spacing: 3px !important;
  text-shadow: 0 0 10px rgba(251, 188, 5, 0.4);
  animation: starPulse 3s ease-in-out infinite;
}
@keyframes starPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(251, 188, 5, 0.3); }
  50%       { text-shadow: 0 0 18px rgba(251, 188, 5, 0.6); }
}

/* Quote mark decorativo */
.testimonial-text::before {
  content: '"';
  display: block;
  font-family: var(--font-title);
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(201,166,70,0.15);
  margin-bottom: 20px;
  font-style: normal;
}

/* Dots do carrossel mais premium */
.carousel-dot {
  width: 6px !important;
  height: 6px !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  border-radius: 50%;
}
.carousel-dot.active {
  width: 24px !important;
  border-radius: 3px !important;
  box-shadow: 0 0 10px rgba(201,166,70,0.4);
}

/* Badge de 500+ avaliações */
.testimonials-section .section-header .section-subtitle {
  position: relative;
  display: inline-block;
}

/* ============================================================
   BLOG — Cards premium
   ============================================================ */

.blog-card {
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(145deg, #1e1e1e, #191919) !important;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease !important;
}
.blog-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 25px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,166,70,0.12) !important;
}

.blog-card-img {
  position: relative;
  overflow: hidden;
}
.blog-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  pointer-events: none;
}

.blog-card-img img {
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.5s ease !important;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.07) !important;
}

.blog-card-category {
  border-radius: 1px;
  letter-spacing: 2.5px !important;
  font-size: 0.6rem !important;
  box-shadow: 0 2px 8px rgba(201,166,70,0.3);
  z-index: 2;
}

/* Linha dourada no topo do card no hover */
.blog-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 3;
}
.blog-card:hover::before { transform: scaleX(1); }

.blog-card-content {
  padding: 35px 30px !important;
}

.blog-card-title {
  transition: color 0.3s ease;
}
.blog-card:hover .blog-card-title { color: rgba(255,255,255,1); }

.blog-card-link {
  position: relative;
  padding-bottom: 2px;
}
.blog-card-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--color-gold);
  transition: width 0.4s ease;
}
.blog-card:hover .blog-card-link::after { width: 100%; }

/* ============================================================
   CONTATO — Inputs modernos
   ============================================================ */

.contact-section {
  background:
    radial-gradient(ellipse at 30% 80%, rgba(201,166,70,0.03) 0%, transparent 50%),
    var(--color-black);
}

.contact-form-box {
  border-radius: 3px !important;
  background: linear-gradient(145deg, #1c1c1c, #181818) !important;
  border: 1px solid rgba(255,255,255,0.04) !important;
}

/* Linha dourada interna do form box */
.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 30px; right: 30px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,166,70,0.5), transparent);
  pointer-events: none;
}

.form-group { position: relative; }

.form-input, .form-select {
  border-radius: 2px !important;
  padding: 16px 20px !important;
  transition: border-color 0.3s ease,
              box-shadow 0.3s ease,
              background 0.3s ease !important;
}
.form-input:focus, .form-select:focus {
  border-color: rgba(201,166,70,0.6) !important;
  background-color: rgba(201,166,70,0.03) !important;
  box-shadow: 0 0 0 3px rgba(201,166,70,0.08), 0 4px 20px rgba(0,0,0,0.3) !important;
  outline: none;
}
.form-input::placeholder { color: rgba(154,154,154,0.5); }

textarea.form-input { border-radius: 2px !important; min-height: 140px !important; }

/* Ícones de informação de contato com hover */
.info-icon-box {
  border-radius: 2px;
  transition: all 0.4s ease;
}
.info-item:hover .info-icon-box {
  background: rgba(201,166,70,0.08) !important;
  border-color: rgba(201,166,70,0.35) !important;
  box-shadow: 0 0 20px rgba(201,166,70,0.1);
  transform: scale(1.08);
}

.info-item {
  transition: transform 0.3s ease;
}
.info-item:hover { transform: translateX(4px); }

/* ============================================================
   RODAPÉ — Premium
   ============================================================ */

.main-footer {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(201,166,70,0.04) 0%, transparent 40%),
    #040404 !important;
  border-top: 1px solid rgba(201,166,70,0.12) !important;
  position: relative;
}

/* Linha dourada superior do rodapé */
.main-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(201,166,70,0.6) 20%,
    rgba(201,166,70,0.9) 50%,
    rgba(201,166,70,0.6) 80%,
    transparent 100%
  );
}

/* Logo do footer maior e com glow */
.footer-logo {
  font-size: 2.6rem !important;
  transition: text-shadow 0.3s ease;
}
.footer-logo:hover {
  text-shadow: 0 0 30px rgba(201,166,70,0.2);
}

/* Links do footer com animação suave */
.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.3s ease, gap 0.3s ease, padding-left 0.3s ease !important;
}
.footer-links a::before {
  content: '—';
  color: var(--color-gold);
  font-size: 0.6rem;
  opacity: 0;
  width: 0;
  overflow: hidden;
  transition: opacity 0.3s ease, width 0.3s ease;
  margin-right: 0;
}
.footer-links a:hover::before {
  opacity: 1;
  width: 18px;
  margin-right: 6px;
}
.footer-links a:hover { padding-left: 0 !important; }

/* Ícones sociais com hover rotativo */
.social-link {
  border-radius: 50% !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: hidden;
}
.social-link::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,166,70,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.social-link:hover::after { opacity: 1; }
.social-link:hover {
  transform: translateY(-4px) scale(1.12) !important;
  box-shadow: 0 8px 20px rgba(201,166,70,0.2) !important;
}

/* Footer título com sublinhado premium */
.footer-title::after {
  background: linear-gradient(90deg, var(--color-gold), transparent) !important;
  width: 40px !important;
  height: 1.5px !important;
  transition: width 0.4s ease;
}
.footer-title:hover::after { width: 60px !important; }

/* ============================================================
   BOTÕES GLOBAIS — Hover premium
   ============================================================ */

.btn {
  position: relative;
  overflow: hidden;
  border-radius: 2px !important;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.55s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(200%); }
.btn:hover { transform: translateY(-2px) scale(1.01); }
.btn-primary:hover {
  box-shadow: 0 8px 30px rgba(201,166,70,0.35) !important;
}
.btn-secondary:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
}

/* ============================================================
   WHATSAPP FLUTUANTE — Premium
   ============================================================ */

.floating-whatsapp {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s ease !important;
}
.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.08) !important;
  box-shadow: 0 12px 30px rgba(37,211,102,0.5) !important;
}
.floating-whatsapp i {
  transition: transform 0.3s ease;
}
.floating-whatsapp:hover i { transform: rotate(10deg) scale(1.1); }

/* Animação de pulso no WhatsApp */
.floating-whatsapp::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,0.3);
  animation: whatsappPulse 2.5s ease-out infinite;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2); opacity: 0; }
}

/* ============================================================
   SECTION TITLES — Hierarquia tipográfica premium
   ============================================================ */

.section-subtitle {
  position: relative;
  display: inline-block;
  padding-bottom: 0;
}

.section-title {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

/* Espaçamento mais refinado entre section-header e conteúdo */
.section-header {
  margin-bottom: 70px !important;
}

/* ============================================================
   MICRO-ANIMAÇÕES EXTRAS
   ============================================================ */

/* Animação de entrada mais elegante para os cards de serviço */
.services-grid .service-card:nth-child(1) { transition-delay: 0s; }
.services-grid .service-card:nth-child(2) { transition-delay: 0.08s; }
.services-grid .service-card:nth-child(3) { transition-delay: 0.16s; }
.services-grid .service-card:nth-child(4) { transition-delay: 0.04s; }
.services-grid .service-card:nth-child(5) { transition-delay: 0.12s; }
.services-grid .service-card:nth-child(6) { transition-delay: 0.20s; }

/* Cursor elegante em elementos interativos */
.gallery-item,
.filter-btn,
.blog-card,
.service-card,
.groom-gallery-img {
  cursor: pointer;
}

/* Animação de contador nos números */
.badge-years {
  background: linear-gradient(135deg, #e8c84a, #c9a646, #a07c1e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.8rem !important;
}

/* ============================================================
   GRADIENTES DE TRANSIÇÃO ENTRE SEÇÕES
   ============================================================ */

/* Suavização entre seção escura e grafite */
.about-section::before,
.services-section::before,
.testimonials-section::before,
.blog-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(255,255,255,0.04) 30%,
    rgba(255,255,255,0.06) 50%,
    rgba(255,255,255,0.04) 70%,
    transparent
  );
  pointer-events: none;
}

.about-section,
.services-section,
.testimonials-section,
.blog-section {
  position: relative;
}

/* ============================================================
   RESPONSIVIDADE — Ajustes premium mobile
   ============================================================ */

@media (max-width: 991px) {
  .section-header { margin-bottom: 50px !important; }
  .badge-years { font-size: 2.2rem !important; }
}

@media (max-width: 767px) {
  .section-header { margin-bottom: 40px !important; }
  .testimonial-text::before { font-size: 3.5rem; }
  .floating-whatsapp::before { display: none; }
}
