/* ==========================================================
   VIDRAÇARIA GRANVIMAR — WORDPRESS THEME STYLESHEET v2.0
   Paleta: Painel de Identidade Visual Oficial
   Fontes: Cinzel (headlines) + Montserrat (corpo)
   ========================================================== */

/* ── Preconnect hint no HTML via functions.php ─────────── */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Montserrat:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

/* ==========================================================
   DESIGN TOKENS (Brand Identity Panel — Granvimar)
   ========================================================== */
:root {
  /* Cores Primárias */
  --color-primary: #4A002F;
  /* Vinho Profundo */
  --color-primary-600: #8C3C3C;
  /* Terracota (hover) */
  --color-secondary: #F4EFEA;
  /* Marfim */
  --color-dark: #2B2828;
  /* Grafite */
  --color-accent: #8E5C6D;
  /* Rosé Queimado */
  --color-champagne: #D9C6B6;
  /* Champagne */
  --color-glass: #AFC7C7;
  /* Vidro Fosco */
  --color-muted: #6b7280;
  /* Cinza texto secundário */
  --color-light: #f8f9fa;
  /* Fundo claro */
  --color-cream: #F4EFEA;
  /* Fundo marfim alternado */
  --color-white: #ffffff;
  --color-whatsapp: #25D366;

  /* Gradientes */
  --gradient-brand: linear-gradient(135deg, #4A002F, #8E5C6D);
  --gradient-dark: linear-gradient(135deg, #2B2828, #D9C6B6);
  --gradient-hero: linear-gradient(180deg, rgba(74, 0, 47, .65) 0%, rgba(74, 0, 47, .18) 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, .2));

  /* Sombras */
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, .07);
  --shadow-hover: 0 20px 40px rgba(0, 0, 0, .13);
  --shadow-glass: 0 8px 32px rgba(74, 0, 47, .15);

  /* Espaçamentos do Painel */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 32px;
  --space-xl: 48px;

  /* Bordas */
  --radius: 1.2rem;
  --radius-sm: 0.6rem;
  --radius-xs: 0.3rem;

  /* Transições */
  --ease-std: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all .3s var(--ease-std);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.8rem;
  letter-spacing: 0.01em;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .25s var(--ease-std);
}

a:hover {
  color: var(--color-primary-600);
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

ul,
ol {
  list-style: none;
}

/* Focus visível para acessibilidade */
:focus-visible {
  outline: 3px solid #ffde80;
  outline-offset: 3px;
  border-radius: 3px;
}

/* Redução de movimento */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }

  .anim-fade {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Skip link */
.visually-hidden-focusable {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  z-index: 100000;
}

.visually-hidden-focusable:focus,
.visually-hidden-focusable:active {
  position: static !important;
  width: auto !important;
  height: auto !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;
  padding: .75rem 1.5rem !important;
  background: var(--color-primary) !important;
  color: #fff !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: var(--radius-sm);
  top: 8px !important;
  left: 8px !important;
  z-index: 100001 !important;
}

/* ==========================================================
   LAYOUT HELPERS
   ========================================================== */
.container {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

@media (min-width: 576px) {
  .container {
    padding: 0 var(--space-md);
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

section {
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}

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

.bg-cream {
  background-color: var(--color-cream);
}

.bg-dark {
  background-color: var(--color-dark);
}

.bg-primary {
  background-color: var(--color-primary);
}

/* ==========================================================
   ANIMAÇÕES DE ENTRADA (IntersectionObserver)
   ========================================================== */
.anim-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .5s var(--ease-std), transform .5s var(--ease-std);
}

.anim-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-fade-left {
  transform: translateX(-24px);
}

.anim-fade-right {
  transform: translateX(24px);
}

.anim-fade-left.visible,
.anim-fade-right.visible {
  transform: translateX(0);
  opacity: 1;
}

/* Stagger delay para grids */
.anim-fade:nth-child(1) {
  transition-delay: 0ms;
}

.anim-fade:nth-child(2) {
  transition-delay: 80ms;
}

.anim-fade:nth-child(3) {
  transition-delay: 160ms;
}

.anim-fade:nth-child(4) {
  transition-delay: 240ms;
}

.anim-fade:nth-child(5) {
  transition-delay: 320ms;
}

/* ==========================================================
   BOTÕES
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  line-height: 1;
}

/* Primário — vinho */
.btn-primary,
.btn-cta {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(74, 0, 47, .3);
}

.btn-primary:hover,
.btn-cta:hover,
.btn-primary:focus,
.btn-cta:focus {
  background: var(--color-primary-600);
  border-color: var(--color-primary-600);
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(74, 0, 47, .42);
  transform: translateY(-2px);
}

.btn .brand-icon {
  color: inherit;
}

/* Outline claro (sobre fundos escuros) */
.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, .75);
}

.btn-outline-light:hover,
.btn-outline-light:focus {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: var(--color-white);
}

/* Outline marca */
.btn-outline-brand {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  background: var(--color-primary);
  color: var(--color-white);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--color-whatsapp);
  color: #0a3d18;
  border-color: var(--color-whatsapp);
  font-weight: 800;
}

.btn-whatsapp:hover,
.btn-whatsapp:focus {
  opacity: .9;
  transform: translateY(-2px);
  color: #0a3d18;
}

/* Botão de texto (saiba mais) */
.btn-text {
  background: transparent;
  border: none;
  color: var(--color-primary);
  padding: 0;
  font-weight: 700;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-text::after {
  content: '→';
  transition: transform .2s var(--ease-std);
}

.btn-text:hover {
  color: var(--color-primary-600);
}

.btn-text:hover::after {
  transform: translateX(4px);
}

/* ==========================================================
   BADGE ARD | GRUPO
   ========================================================== */
.badge-ard {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-dark);
  color: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 50px;
}

.badge-hero {
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ==========================================================
   SECTION HEADER
   ========================================================== */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(2rem, 4vw, 3.5rem);
}

.section-tag {
  display: inline-block;
  color: var(--color-primary);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  position: relative;
  padding: 0 1.2rem;
}

.section-tag::before,
.section-tag::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 1px;
  background: var(--color-primary);
  opacity: .5;
}

.section-tag::before {
  right: 100%;
  margin-right: -1rem;
}

.section-tag::after {
  left: 100%;
  margin-left: -1rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--color-dark);
  margin-bottom: .6rem;
}

.section-subtitle {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--color-muted);
  line-height: 1.75;
}

/* Separador decorativo */
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gradient-brand);
  border-radius: 2px;
  margin: 1rem auto 0;
}

/* ==========================================================
   SITE HEADER / NAVBAR
   ========================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  transition: background .35s var(--ease-std), box-shadow .35s var(--ease-std), padding .35s var(--ease-std);
  padding: 1.5rem 0;
}

.site-header.navbar-solid {
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  padding: .9rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

/* Logo */
.header-brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.header-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.header-brand .site-title-fallback {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-white);
  letter-spacing: .05em;
}

.site-header.navbar-solid .header-brand .site-title-fallback {
  color: var(--color-dark);
}

/* Nav links */
.main-navigation {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.main-navigation ul {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-navigation a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: .88rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .9);
  padding: .5rem 0;
  position: relative;
}

.main-navigation a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width .3s var(--ease-std);
}

.main-navigation a:hover,
.main-navigation a:focus {
  color: #fff;
}

.main-navigation a:hover::after,
.main-navigation a:focus::after {
  width: 100%;
}

.site-header.navbar-solid .main-navigation a {
  color: var(--color-dark);
}

.site-header.navbar-solid .main-navigation a:hover,
.site-header.navbar-solid .main-navigation a:focus {
  color: var(--color-primary);
}

/* CTA no header */
.header-cta .btn-cta {
  padding: .6rem 1.4rem;
  font-size: .82rem;
}

/* Mobile Toggle (hamburger) */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  width: 30px;
  height: 20px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--color-white);
  border-radius: 9px;
  left: 0;
  transition: .25s ease-in-out;
}

.site-header.navbar-solid .menu-toggle span {
  background: var(--color-dark);
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 8px;
}

.menu-toggle span:nth-child(3) {
  top: 16px;
}

.menu-toggle.active span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

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

.menu-toggle.active span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

@media (max-width: 992px) {
  .menu-toggle {
    display: block;
  }

  .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85vw, 320px);
    height: 100dvh;
    background: var(--color-dark);
    padding: 6rem 2.5rem 2.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-lg);
    transition: right .35s var(--ease-std);
    box-shadow: -8px 0 30px rgba(0, 0, 0, .2);
    overflow-y: auto;
  }

  .main-navigation.is-open {
    right: 0;
  }

  .main-navigation ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    width: 100%;
  }

  .main-navigation a {
    color: var(--color-white);
    font-size: 1rem;
    display: block;
  }

  .header-cta {
    display: none;
  }
}

/* Overlay para quando menu mobile está aberto */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 999;
}

.menu-overlay.active {
  display: block;
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.laminexx-hero-section {
  position: relative;
  height: 100svh;
  max-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  color: var(--color-white);
  padding: 90px 0 30px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  margin-bottom: 1.25rem;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.8rem, 3.8vw, 3.25rem);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 1rem;
  letter-spacing: .01em;
}

.hero-subtitle {
  font-size: clamp(.9rem, 1.4vw, 1.05rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, .88);
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Hero trust bar */
.hero-trust {
  display: flex;
  gap: var(--space-lg);
  margin-top: 1.8rem;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.hero-trust-item i {
  color: var(--color-champagne);
  font-size: .9rem;
}

@media (max-width: 992px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 560px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }
}

/* ==========================================================
   SWIPER HERO SLIDER CUSTOMIZATIONS
   ========================================================== */
.swiper-hero {
  width: 100%;
  height: 100%;
  position: absolute !important;
  inset: 0;
  z-index: 1;
}

.swiper-hero .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-hero .swiper-button-next,
.swiper-hero .swiper-button-prev {
  color: var(--color-white);
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 10;
  width: 44px;
  height: 44px;
}

.swiper-hero .swiper-button-next::after,
.swiper-hero .swiper-button-prev::after {
  font-size: 1.8rem;
}

.swiper-hero .swiper-button-next:hover,
.swiper-hero .swiper-button-prev:hover {
  color: var(--color-champagne);
  transform: scale(1.1);
}

.swiper-hero .swiper-pagination-bullet {
  background: var(--color-white);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  transition: opacity 0.3s ease, background 0.3s ease;
}

.swiper-hero .swiper-pagination-bullet-active {
  background: var(--color-champagne);
  opacity: 1;
}

@media (max-width: 768px) {

  .swiper-hero .swiper-button-next,
  .swiper-hero .swiper-button-prev {
    display: none !important;
  }
}

/* ==========================================================
   CF7 FORM STYLES
   ========================================================== */
.wpcf7-form .form-group {
  margin-bottom: .9rem;
}

.wpcf7-form label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--color-white);
  margin-bottom: .35rem;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
  width: 100%;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, .25);
  background: rgba(255, 255, 255, .12);
  color: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  /* >= 16px: evita zoom iOS */
  transition: border-color .2s var(--ease-std), background .2s var(--ease-std);
  min-height: 48px;
  /* tap target acessível */
}

.wpcf7-form select option {
  background: var(--color-dark);
  color: var(--color-white);
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
  outline: none;
  border-color: var(--color-champagne);
  background: rgba(255, 255, 255, .2);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: rgba(255, 255, 255, .5);
}

.wpcf7-form .wpcf7-submit {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .9rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  margin-top: .5rem;
  min-height: 48px;
}

.wpcf7-form .wpcf7-submit:hover {
  background: var(--color-primary-600);
  transform: translateY(-1px);
}

/* CF7 no CTA Final */
.cta-final .wpcf7-form input[type="text"],
.cta-final .wpcf7-form input[type="email"],
.cta-final .wpcf7-form input[type="tel"],
.cta-final .wpcf7-form select,
.cta-final .wpcf7-form textarea {
  border-color: rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .1);
}

.cta-final .wpcf7-form .wpcf7-submit {
  background: var(--color-white);
  color: var(--color-primary);
}

.cta-final .wpcf7-form .wpcf7-submit:hover {
  background: var(--color-champagne);
}

/* ==========================================================
   ÍCONES SVG DA MARCA (arquivos externos + inline)
   ========================================================== */
.brand-icon {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s var(--ease-std), stroke 0.3s var(--ease-std);
  color: var(--color-primary);
}

.icon-inline {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  vertical-align: -0.15em;
  margin-right: 0.35rem;
}

/* Ícones de redes sociais no rodapé */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  transition: color 0.3s ease;
}

.social-link .brand-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: inherit;
}

.social-link:hover {
  color: var(--color-champagne);
}

.icon-light {
  color: var(--color-champagne) !important;
}

.placeholder-icon {
  width: 42px;
  height: 42px;
  opacity: 0.35;
  color: var(--color-white);
}

.placeholder-youtube {
  width: 58px;
  height: 58px;
  opacity: 0.7;
  color: var(--color-white);
  margin-bottom: 1rem;
}


.service-icon .brand-icon,
.diff-item-icon .brand-icon {
  color: var(--color-primary);
}

.service-card:hover .brand-icon {
  transform: scale(1.12);
  color: var(--color-accent);
}

/* ==========================================================
   SERVIÇOS — 5 CARDS
   ========================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: 2.5rem;
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .services-grid .service-card:nth-child(1),
  .services-grid .service-card:nth-child(2),
  .services-grid .service-card:nth-child(3) {
    grid-column: span 2;
  }

  .services-grid .service-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .services-grid .service-card:nth-child(5) {
    grid-column: 4 / span 2;
  }
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid rgba(74, 0, 47, .05);
  display: flex;
  flex-direction: column;
  transition: transform .3s var(--ease-std), box-shadow .3s var(--ease-std);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-brand);
  transform: scaleX(0);
  transition: transform .3s var(--ease-std);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(74, 0, 47, .07);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  color: var(--color-primary);
  transition: background .3s var(--ease-std);
}

.service-card:hover .service-icon {
  background: var(--color-champagne);
}

.service-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .6rem;
  color: var(--color-dark);
}

.service-description {
  font-size: .93rem;
  color: var(--color-muted);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.section-cta {
  text-align: center;
  margin-top: 1.5rem;
}

/* ==========================================================
   SEÇÃO SOBRE / DIFERENCIAIS com VÍDEO
   ========================================================== */
.differentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.diff-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 1rem;
}

.diff-intro {
  color: var(--color-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.diff-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: .5rem;
}

.diff-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}

.diff-item-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(74, 0, 47, .08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1rem;
}

.diff-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: .2rem;
  color: var(--color-dark);
}

.diff-item p {
  font-size: .85rem;
  color: var(--color-muted);
  line-height: 1.5;
  margin: 0;
}

.video-wrapper {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

/* Linha decorativa arquitetônica */
.video-wrapper::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 60%;
  height: 60%;
  border-right: 3px solid var(--color-champagne);
  border-bottom: 3px solid var(--color-champagne);
  border-radius: 0 0 var(--radius) 0;
  pointer-events: none;
  z-index: -1;
}

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

  .diff-list {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   PORTFÓLIO / OBRAS
   ========================================================== */
.works-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.work-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 1;
  cursor: pointer;
}

.work-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-std);
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74, 0, 47, 0) 40%, rgba(74, 0, 47, .85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity .35s var(--ease-std);
}

.work-item:hover .work-img {
  transform: scale(1.07);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

.work-overlay h3 {
  font-family: 'Cinzel', serif;
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: .25rem;
}

.work-overlay span {
  color: var(--color-champagne);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* Shimmer no hover */
.work-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .12) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease-std);
  z-index: 2;
  pointer-events: none;
}

.work-item:hover::before {
  transform: translateX(100%);
}

/* ==========================================================
   DEPOIMENTOS
   ========================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(74, 0, 47, .05);
  transition: transform .3s var(--ease-std), box-shadow .3s var(--ease-std);
  position: relative;
}

/* Bisel/borda interna efeito reflexo */
.testimonial-card::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: calc(var(--radius) - 1px);
  border: 1px solid rgba(217, 198, 182, .4);
  pointer-events: none;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.testimonial-quote-icon {
  font-size: 3rem;
  line-height: 1;
  color: rgba(74, 0, 47, .12);
  font-family: Georgia, serif;
  margin-bottom: .5rem;
}

.testimonial-text {
  font-size: .97rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--color-dark);
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.testimonial-stars {
  color: #f4b942;
  font-size: .9rem;
  letter-spacing: 2px;
  margin-bottom: .75rem;
}

.testimonial-author {
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-dark);
  border-top: 1px solid rgba(74, 0, 47, .08);
  padding-top: 1rem;
}

.testimonial-author span {
  display: block;
  font-weight: 400;
  font-size: .82rem;
  color: var(--color-muted);
  margin-top: .2rem;
}

/* ==========================================================
   BLOG / INSIGHTS
   ========================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.blog-section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  max-width: none;
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .blog-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

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

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(74, 0, 47, .04);
  transition: transform .3s var(--ease-std), box-shadow .3s var(--ease-std);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.blog-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform .5s var(--ease-std);
}

.blog-card:hover .blog-card-img {
  transform: scale(1.04);
}

.blog-card-img-wrapper {
  overflow: hidden;
}

.blog-card-body {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-category {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: .6rem;
}

.blog-card-title {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: .6rem;
  flex-grow: 1;
}

.blog-card-excerpt {
  font-size: .88rem;
  color: var(--color-muted);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.blog-card-meta {
  font-size: .78rem;
  color: var(--color-muted);
  display: flex;
  gap: .75rem;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, .05);
  padding-top: .75rem;
  margin-top: auto;
}

.blog-card-meta i {
  font-size: .75rem;
}

/* ==========================================================
   CTA FINAL
   ========================================================== */
.cta-final {
  background: var(--gradient-brand);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 5vw, 4rem);
  box-shadow: 0 20px 60px rgba(74, 0, 47, .3);
  position: relative;
  overflow: hidden;
}

/* Padrão de halftone decorativo */
.cta-final::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.cta-final::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .03);
  pointer-events: none;
}

.cta-final h2 {
  font-family: 'Cinzel', serif;
  color: var(--color-white);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin-bottom: .75rem;
}

.cta-final p {
  color: rgba(255, 255, 255, .85);
  font-size: 1rem;
  margin-bottom: 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}

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

/* ==========================================================
   WAVE DIVIDER (separador SVG de onda)
   ========================================================== */
.wave-divider {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.wave-divider svg {
  display: block;
  width: 100%;
}

/* ==========================================================
   FOOTER
   ========================================================== */
.site-footer {
  background: #0f0f0f;
  color: #bdbdbd;
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: .9rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 3rem;
}

.footer-column-brand img {
  height: 44px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-column-brand p {
  line-height: 1.7;
}

.site-footer h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 1.25rem;
}

.footer-contact-list li {
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .75rem;
}

.footer-contact-list i {
  color: var(--color-accent);
  width: 16px;
  flex-shrink: 0;
}

.footer-contact-list a {
  color: #bdbdbd;
}

.footer-contact-list a:hover {
  color: var(--color-white);
}

.footer-map-wrapper {
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, .3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin-top: 3rem;
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: #888;
}

.footer-bottom-links a:hover {
  color: var(--color-white);
}

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

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

/* ==========================================================
   WHATSAPP FLOAT
   ========================================================== */
@keyframes waPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, .5);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
  }
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  background: var(--color-whatsapp);
  color: #0a3d18;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: .85rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, .35);
  transition: transform .25s var(--ease-std), box-shadow .25s var(--ease-std);
  animation: waPulse 3s ease-in-out infinite;
  text-decoration: none;
}

.whatsapp-float .brand-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 14px 32px rgba(37, 211, 102, .45);
  color: #0a3d18;
  animation: none;
}

@media (max-width: 480px) {
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 1rem;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
}

/* ==========================================================
   RESPONSIVIDADE GERAL
   ========================================================== */
@media (max-width: 576px) {
  .btn {
    width: 100%;
    justify-content: center;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
  }

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

  .hero-trust {
    display: none;
  }
}

/* ==========================================================
   BOTÃO VOLTAR AO TOPO (BACK TO TOP)
   ========================================================== */
.scroll-to-top {
  position: fixed;
  right: 24px;
  bottom: 90px;
  z-index: 999;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.scroll-to-top .brand-icon {
  width: 1.2rem;
  height: 1.2rem;
  color: var(--color-white);
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background-color: var(--color-primary-600);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 480px) {
  .scroll-to-top {
    right: 16px;
    bottom: 95px;
    width: 44px;
    height: 44px;
  }
}

/* ==========================================================
   FIXES — ÍCONES E ALINHAMENTOS 
   ========================================================== */
.footer-social .social-icon {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.85);
  /* mesma cor do texto */
}

.footer-contact-list li .brand-icon {
  color: rgba(255, 255, 255, 0.85);
}

.whatsapp-float .brand-icon {
  color: #ffffff;
}

.whatsapp-float {
  color: #ffffff !important;
}

.whatsapp-float:hover {
  color: #ffffff !important;
}

.scroll-to-top .brand-icon {
  color: #ffffff;
}

/* ==========================================================
   SINGLE POST, PAGES & COMMENTS STYLING (ThemeGlass Premium)
   ========================================================== */

/* Hero do Post & Páginas */
.single-hero,
.page-hero {
  background-color: #fdfbf9;
  border-bottom: 1px solid #f5f0eb;
  padding: 4.5rem 0 3.5rem 0;
}

.single-hero .breadcrumb,
.page-hero .page-breadcrumb {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #8e5c6d;
  margin-bottom: 1.25rem;
}

.single-hero .breadcrumb a,
.page-hero .page-breadcrumb a {
  color: #8e5c6d;
  text-decoration: none;
  transition: color 0.2s ease;
}

.single-hero .breadcrumb a:hover,
.page-hero .page-breadcrumb a:hover {
  color: #4a002f;
}

.single-hero .breadcrumb .separator,
.page-hero .page-breadcrumb .separator {
  margin: 0 0.5rem;
  color: #d1c7bd;
}

.single-hero .breadcrumb .current,
.page-hero .page-breadcrumb .current {
  color: #4a002f;
  font-weight: 700;
}

.single-hero .single-title,
.page-hero .page-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #4a002f;
  line-height: 1.2;
  margin: 0 0 1rem 0;
}

/* Metadados */
.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid #eadecf;
}

.single-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #666666;
}

.single-meta .meta-icon {
  font-size: 1.05rem;
}

.single-meta .meta-text a {
  color: #8e5c6d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.single-meta .meta-text a:hover {
  color: #4a002f;
}

/* Imagem Destaque */
.single-featured-image,
.page-featured-image {
  margin: -2.5rem auto 3rem auto;
  text-align: center;
  max-width: 1140px;
  padding: 0 15px;
}

.single-featured-image .featured-img,
.page-featured-image .featured-img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(74, 0, 47, 0.08);
}

.single-featured-image .image-caption {
  font-size: 0.85rem;
  font-style: italic;
  color: #888888;
  margin-top: 0.75rem;
}

/* Layout Geral de Colunas */
.single-content-section {
  padding: 4.5rem 0;
  background-color: #ffffff;
}

.single-content-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 4%;
}

.single-main-content {
  width: 71%;
}

.single-sidebar {
  width: 25%;
}

@media (max-width: 992px) {
  .single-content-wrapper {
    flex-direction: column;
    gap: 3.5rem;
  }
  .single-main-content,
  .single-sidebar {
    width: 100%;
  }
  .single-featured-image,
  .page-featured-image {
    margin-top: 0;
  }
}

/* Estilos de Conteúdo */
.entry-content {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
}

.entry-content p {
  margin: 0 0 1.5rem 0;
}

.entry-content h2,
.entry-content h3,
.entry-content h4 {
  font-family: 'Outfit', sans-serif;
  color: #4a002f;
  margin: 2.5rem 0 1rem 0;
  font-weight: 700;
  line-height: 1.3;
}

.entry-content h2 { font-size: 1.8rem; }
.entry-content h3 { font-size: 1.5rem; }
.entry-content h4 { font-size: 1.25rem; }

.entry-content a {
  color: #4a002f;
  text-decoration: underline;
  font-weight: 600;
  transition: color 0.2s;
}

.entry-content a:hover {
  color: #8e5c6d;
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 1.5rem 1.5rem;
  padding: 0;
}

.entry-content li {
  margin-bottom: 0.5rem;
}

.entry-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #8e5c6d;
  background-color: #fdfbf9;
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  border-radius: 0 0.5rem 0.5rem 0;
}

/* Navegação de Posts */
.post-navigation {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid #eae0d5;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
  flex: 1;
  padding: 1.25rem 1.5rem;
  border: 1px solid #eae0d5;
  border-radius: 0.8rem;
  background-color: #ffffff;
  transition: all 0.25s ease;
  text-decoration: none;
  display: block;
}

.post-navigation .nav-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: #999999;
  display: block;
  margin-bottom: 0.25rem;
  letter-spacing: 0.5px;
}

.post-navigation .nav-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #4a002f;
  display: block;
  transition: color 0.2s;
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
  border-color: #8e5c6d;
  box-shadow: 0 10px 20px rgba(74, 0, 47, 0.04);
}

.post-navigation .nav-previous:hover .nav-title,
.post-navigation .nav-next:hover .nav-title {
  color: #8e5c6d;
}

@media (max-width: 576px) {
  .post-navigation .nav-links {
    flex-direction: column;
  }
}

/* Sidebar & Widgets */
.sidebar-widget {
  margin-bottom: 2.5rem;
  padding: 2rem;
  border: 1px solid #f3ede6;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(74, 0, 47, 0.01);
}

.sidebar-widget .widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #4a002f;
  margin: 0 0 1.25rem 0;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3ede6;
  position: relative;
}

.sidebar-widget .widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #8e5c6d;
}

/* Widget CTA */
.widget-cta {
  background: linear-gradient(135deg, #4a002f 0%, #2e001d 100%);
  color: #ffffff;
  border: none;
}

.widget-cta h3 {
  color: #ffffff;
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 0.75rem 0;
  line-height: 1.3;
}

.widget-cta p {
  font-size: 0.95rem;
  opacity: 0.85;
  margin: 0 0 1.5rem 0;
  line-height: 1.5;
}

.widget-cta .btn {
  display: block;
  width: 100%;
  text-align: center;
  background-color: #ffffff;
  color: #4a002f;
  font-weight: 700;
  border: none;
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  transition: all 0.25s ease;
  text-decoration: none;
  font-size: 0.95rem;
  cursor: pointer;
}

.widget-cta .btn:hover {
  background-color: #f5f0eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* Listas de Widgets */
.sidebar-widget .category-list,
.sidebar-widget .related-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget .category-list li,
.sidebar-widget .related-posts-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #fdf8f4;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-widget .category-list li:last-child,
.sidebar-widget .related-posts-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-widget .category-list a,
.sidebar-widget .related-posts-list a {
  color: #555555;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.sidebar-widget .category-list a:hover,
.sidebar-widget .related-posts-list a:hover {
  color: #4a002f;
}

.sidebar-widget .related-posts-list .post-date {
  font-size: 0.8rem;
  color: #999999;
}

/* Seção de Comentários */
.comments-section {
  margin-top: 4.5rem;
}

.comments-area {
  margin-top: 2rem;
  padding-top: 3rem;
  border-top: 1px solid #eae0d5;
}

.comments-area .comments-title,
.comments-area .comment-reply-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #4a002f;
  margin: 0 0 2rem 0;
}

.comments-area .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 3.5rem 0;
}

.comments-area .comment {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #f5f0eb;
}

.comments-area .comment:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.comments-area .comment-body {
  display: flex;
  gap: 1.25rem;
}

.comments-area .avatar {
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 12px rgba(74, 0, 47, 0.06);
  width: 60px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
}

.comments-area .comment-meta {
  margin-bottom: 0.5rem;
}

.comments-area .fn {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #4a002f;
  font-style: normal;
  font-size: 1.05rem;
}

.comments-area .comment-metadata {
  display: inline-block;
  margin-left: 0.5rem;
  font-size: 0.8rem;
  color: #999999;
}

.comments-area .comment-metadata a {
  color: #999999;
  text-decoration: none;
  transition: color 0.2s;
}

.comments-area .comment-metadata a:hover {
  color: #4a002f;
}

.comments-area .comment-content {
  font-size: 0.95rem;
  line-height: 1.65;
  color: #444444;
  margin-bottom: 0.75rem;
}

.comments-area .reply a {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #8e5c6d;
  text-decoration: none;
  border: 1px solid #eae0d5;
  padding: 0.35rem 0.85rem;
  border-radius: 2rem;
  transition: all 0.2s ease;
  letter-spacing: 0.5px;
}

.comments-area .reply a:hover {
  border-color: #4a002f;
  color: #4a002f;
  background-color: #fdfbf9;
}

.comments-area .children {
  list-style: none;
  padding-left: 3.5rem;
  margin-top: 2rem;
  border-left: 2px solid #f3ede6;
}

@media (max-width: 576px) {
  .comments-area .comment-body {
    flex-direction: column;
    gap: 0.75rem;
  }
  .comments-area .avatar {
    width: 48px;
    height: 48px;
  }
  .comments-area .children {
    padding-left: 1.5rem;
  }
}

/* Formulário de Comentários */
.comment-form-group {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.comment-form-group label {
  font-size: 0.85rem;
  font-weight: 700;
  color: #4a002f;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comments-area .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #dcd3c9;
  border-radius: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: #333333;
  background-color: #ffffff;
  transition: all 0.25s ease;
}

.comments-area .form-control:focus {
  border-color: #4a002f;
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 0, 47, 0.08);
}

.comments-area textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.comment-form-grid {
  display: flex;
  gap: 1.25rem;
}

.comment-form-author,
.comment-form-email {
  flex: 1;
}

@media (max-width: 576px) {
  .comment-form-grid {
    flex-direction: column;
    gap: 0;
  }
}

.comments-area .logged-in-as {
  font-size: 0.9rem;
  color: #666666;
  margin-bottom: 1.5rem;
}

.comments-area .logged-in-as a {
  color: #8e5c6d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.comments-area .logged-in-as a:hover {
  color: #4a002f;
}

.comments-area .form-submit {
  margin-top: 1.5rem;
}

/* ==========================================================
   TEMPLATES ÓRFÃOS, MENU INTERNO E RODAPÉ 4 COLUNAS STYLING
   ========================================================== */

/* Menu visível em páginas internas */
body:not(.home) .site-header {
  background-color: var(--color-white) !important;
  box-shadow: var(--shadow-soft) !important;
  padding: .9rem 0 !important;
  position: sticky !important;
}

body:not(.home) .site-header .main-navigation a {
  color: var(--color-dark) !important;
}

body:not(.home) .site-header .main-navigation a:hover {
  color: var(--color-primary) !important;
}

body:not(.home) .site-header .header-brand .site-title-fallback {
  color: var(--color-dark) !important;
}

body:not(.home) .site-header .menu-toggle span {
  background-color: var(--color-dark) !important;
}

/* Grid de rodapé com 4 colunas */
.footer-columns {
  grid-template-columns: 1.3fr 0.8fr 1fr 1.2fr !important;
}

.footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-list li {
  margin-bottom: .8rem;
}

.footer-links-list a {
  color: #bdbdbd;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links-list a:hover {
  color: var(--color-champagne) !important;
  padding-left: 4px;
}

/* Estilos para página de arquivos */
.archive-header {
  background-color: #fdfbf9;
  border-bottom: 1px solid #f5f0eb;
  padding: 4.5rem 0 3.5rem 0;
}

.archive-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #4a002f;
  margin-bottom: 1rem;
}

.archive-description {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  color: #666666;
  max-width: 700px;
  line-height: 1.6;
}

.archive-filters {
  padding: 2.5rem 0;
  background-color: #ffffff;
  border-bottom: 1px solid #f9f6f2;
}

.filters-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.filter-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: #4a002f;
  font-size: 1rem;
}

.filter-items {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.filter-item {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border: 1px solid #eae0d5;
  border-radius: 2rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #666666;
  text-decoration: none;
  transition: all 0.25s ease;
  font-weight: 600;
}

.filter-item:hover,
.filter-item.active {
  background-color: #4a002f;
  border-color: #4a002f;
  color: #ffffff !important;
}

.filter-item .count {
  font-size: 0.75rem;
  background-color: rgba(74, 0, 47, 0.08);
  color: #4a002f;
  padding: 0.1rem 0.4rem;
  border-radius: 1rem;
  margin-left: 0.25rem;
  transition: all 0.25s;
}

.filter-item:hover .count,
.filter-item.active .count {
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.archive-posts-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.archive-pagination-section {
  padding: 0 0 4rem 0;
  background-color: #ffffff;
}

.archive-cta-section {
  padding: 5rem 0;
  background-color: #fdfbf9;
  border-top: 1px solid #f5f0eb;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: #4a002f;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.05rem;
  color: #666666;
  margin-bottom: 1.75rem;
}

/* Estilos para página de erro 404 */
.error-404-section {
  padding: 6rem 0;
  background-color: #ffffff;
  text-align: center;
}

.error-404-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.error-code {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 900;
  color: #4a002f;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -2px;
}

.error-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #4a002f;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.error-message {
  font-size: 1.1rem;
  color: #666666;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
  line-height: 1.7;
}

.error-suggestions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
  text-align: left;
}

.suggestion-item {
  padding: 2rem;
  border: 1px solid #f3ede6;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(74, 0, 47, 0.02);
  transition: all 0.25s ease;
}

.suggestion-item:hover {
  border-color: #8e5c6d;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(74, 0, 47, 0.05);
}

.suggestion-icon {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

.suggestion-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  color: #4a002f;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.suggestion-item p {
  font-size: 0.9rem;
  color: #777777;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

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

.suggestion-item .search-form {
  display: flex;
  gap: 0.5rem;
}

.suggestion-item .search-field {
  flex: 1;
  padding: 0.5rem 0.75rem;
  border: 1px solid #dcd3c9;
  border-radius: 0.35rem;
  font-size: 0.85rem;
}

.suggestion-item .search-submit {
  background-color: #4a002f;
  color: #ffffff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
}

.error-navigation {
  padding-top: 2rem;
  border-top: 1px solid #eae0d5;
}

.error-navigation h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  color: #4a002f;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.popular-pages-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.popular-pages-list a {
  color: #8e5c6d;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.95rem;
}

.popular-pages-list a:hover {
  color: #4a002f;
  text-decoration: underline;
}

.error-cta-section {
  padding: 5rem 0;
  background-color: #fdfbf9;
  border-top: 1px solid #f5f0eb;
  text-align: center;
}

.cta-box h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  color: #4a002f;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.cta-box p {
  font-size: 1.05rem;
  color: #666666;
  margin-bottom: 1.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 768px) {
  .error-suggestions {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .popular-pages-list {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}