/*
Theme Name: FERREIRA COUTO Advocacia
Theme URI: https://ferreiracouto.com/
Author: FERREIRA COUTO
Author URI: https://ferreiracouto.com/
Description: Theme profissional para escritório de advocacia FERREIRA COUTO — Direito Contratual.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ferreiracouto
*/

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

:root {
  --container-max: 1400px;
  --container-padding-desktop: 72px;
  --container-padding-tablet: 40px;
  --container-padding-mobile: 24px;
  --logo-visual-offset: -16px;

  --background: #ECECEC;
  --background-secondary: #EAEAEA;
  --foreground: #090A0A;
  --card: #FFFFFF;
  --card-foreground: #111111;
  --primary: #090A0A;
  --primary-foreground: #FFFFFF;
  --secondary: #EAEAEA;
  --secondary-foreground: #111111;
  --muted: #D9D9D9;
  --muted-foreground: #3A3A3A;
  --accent: #2B2B2B;
  --accent-foreground: #FFFFFF;
  --border: #D9D9D9;
  --text-secondary: #3A3A3A;
  --institutional: #090A0A;
  --institutional-hover: #1A1A1A;
  --shadow-card: 0 1px 3px 0 rgba(9,10,10,0.04), 0 1px 2px -1px rgba(9,10,10,0.03);
  --shadow-card-hover: 0 10px 25px -5px rgba(9,10,10,0.08), 0 4px 10px -3px rgba(9,10,10,0.04);
  --shadow-elevated: 0 20px 40px -12px rgba(9,10,10,0.12);
  --radius: 0.5rem;
}

::selection {
  background-color: var(--accent);
  color: var(--accent-foreground);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

h1,h2,h3,h4,h5,h6 {
  font-family: 'Manrope', sans-serif;
  letter-spacing: -0.025em;
}

.font-display { font-family: 'Manrope', sans-serif; }
.font-body { font-family: 'Inter', sans-serif; }

/* Normalização de SVG para manter o traço igual ao original */
svg {
  shape-rendering: geometricPrecision;
}

svg path,
svg line,
svg polyline,
svg circle,
svg rect,
svg polygon,
svg ellipse {
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
  box-sizing: border-box;
}

/* Utility */
.text-balance { text-wrap: balance; }
.tracking-eyebrow { letter-spacing: 0.25em; }
.divider-premium { width: 3rem; height: 1px; background-color: rgba(9,10,10,0.2); }
.divider-premium-light { width: 3rem; height: 1px; background-color: rgba(255,255,255,0.2); }

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: var(--primary);
  transition: box-shadow 0.3s;
  padding-left: 0;
  padding-right: 0;
}
.site-header.scrolled {
  box-shadow: var(--shadow-elevated);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  width: 100%;
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; }
}
.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0 !important;
  padding-left: 0 !important;
  overflow: visible;
}
.header-logo img {
  height: 34px;
  width: auto;
  max-width: none;
  filter: invert(1);
  opacity: 0.9;
  transition: opacity 0.2s;
  margin-left: 0 !important;
  padding-left: 0 !important;
  transform: translateX(var(--logo-visual-offset));
}
.header-logo:hover img { opacity: 1; }
@media (min-width: 768px) {
  .header-logo img { height: 41px; }
}

/* Desktop nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .desktop-nav { display: flex; }
}
.desktop-nav a {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.desktop-nav a:hover { color: var(--primary-foreground); }

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  padding: 0.25rem;
}
@media (min-width: 768px) {
  .mobile-toggle { display: none; }
}
.mobile-toggle svg { width: 22px; height: 22px; }

/* Mobile nav */
.mobile-nav {
  display: none;
  background-color: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 0.5rem 1.5rem 2rem;
}
.mobile-nav.open { display: block; }
@media (min-width: 768px) {
  .mobile-nav { display: none !important; }
}
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary-foreground); }

/* ===== HERO ===== */
.hero-section {
  position: relative;
  min-height: calc(100svh - 3.5rem);
  display: flex;
  align-items: center;
  padding-top: 3.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section { min-height: 100vh; }
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #F5F5F5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media (min-width: 768px) {
  .hero-bg {
    background-repeat: repeat;
    background-size: auto;
  }
}
.hero-inner {
  position: relative;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-left: var(--container-padding-desktop);
  padding-right: var(--container-padding-desktop);
}
@media (min-width: 768px) {
  .hero-inner { padding-top: 2.5rem; padding-bottom: 2.5rem; }
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
  margin-left: 0 !important;
}
@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (min-width: 1024px) {
  .hero-grid { gap: 4rem; }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 10px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
@media (min-width: 640px) { .hero-eyebrow { font-size: 11px; } }
@media (min-width: 768px) { .hero-eyebrow { margin-bottom: 1.25rem; } }

.hero-title {
  font-family: 'Manrope', sans-serif;
  line-height: 1.08;
  color: var(--foreground);
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-title { margin-bottom: 1.25rem; } }
.hero-title-main {
  display: block;
  font-weight: 800;
  font-size: 1.85rem;
}
@media (min-width: 640px) { .hero-title-main { font-size: 2.1rem; } }
@media (min-width: 768px) { .hero-title-main { font-size: 2.85rem; } }
@media (min-width: 1024px) { .hero-title-main { font-size: 3.35rem; } }
.hero-title-sub {
  display: block;
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}
@media (min-width: 640px) { .hero-title-sub { font-size: 1.75rem; } }
@media (min-width: 768px) { .hero-title-sub { font-size: 2.35rem; } }
@media (min-width: 1024px) { .hero-title-sub { font-size: 2.75rem; } }

.hero-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  max-width: 480px;
}
@media (min-width: 640px) { .hero-desc { font-size: 15px; } }
@media (min-width: 768px) { .hero-desc { font-size: 16px; margin-bottom: 1.5rem; } }

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) { .hero-bullets { margin-bottom: 1.75rem; } }
@media (min-width: 1024px) { .hero-bullets { margin-bottom: 2.25rem; } }
.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media (min-width: 640px) { .hero-bullets li { font-size: 14px; } }
.hero-bullets li svg {
  width: 15px;
  height: 15px;
  stroke: rgba(9,10,10,0.35);
  flex-shrink: 0;
  stroke-width: 1.6;
  fill: none;
  display: block;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) { .hero-cta-wrapper { align-items: flex-start; } }
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-cta-wrapper {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, transform 0.4s;
  white-space: nowrap;
}
@media (min-width: 640px) { .btn-primary { padding: 1rem 2.5rem; font-size: 13px; } }
@media (min-width: 768px) { .btn-primary { padding: 0.875rem 2rem; font-size: 12px; } }
@media (min-width: 1024px) { .btn-primary { padding: 1rem 3rem; font-size: 13px; } }
.btn-primary:hover {
  background-color: var(--institutional-hover);
}

.btn-section {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 2.5rem;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease-out;
  white-space: nowrap;
}
.btn-section:hover { transform: scale(1.02); }

.btn-section-dark {
  background-color: var(--foreground);
  color: var(--background);
}
.btn-section-dark:hover { background-color: rgba(9,10,10,0.85); }

.btn-section-light {
  background-color: var(--primary-foreground);
  color: var(--primary);
}
.btn-section-light:hover { background-color: rgba(255,255,255,0.85); }

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3.5rem;
  background-color: var(--primary-foreground);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.5s ease-out;
  white-space: nowrap;
}
.btn-cta-main:hover {
  background-color: rgba(255,255,255,0.85);
  transform: scale(1.03);
  box-shadow: 0 8px 24px -6px rgba(255,255,255,0.15);
}

.hero-info {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.5rem;
  font-size: 10px;
  color: var(--muted-foreground);
  letter-spacing: 0.05em;
}
@media (min-width: 640px) { .hero-info { font-size: 12px; } }
@media (min-width: 768px) { .hero-info { margin-top: 1rem; font-size: 11px; } }
@media (min-width: 1024px) { .hero-info { margin-top: 1.25rem; font-size: 12px; } }
.hero-info span.bold { font-weight: 600; }
.hero-info span.dot { color: rgba(9,10,10,0.25); }
@media (max-width: 767px) {
  .hero-info {
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 10.5px;
    gap: 4px;
    letter-spacing: 0;
    padding-inline: 4px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-info {
    flex-direction: row;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: center;
    align-items: center;
  }
}

/* Hero image */
.hero-image-wrap {
  position: relative;
}
.hero-image-wrap img {
  width: 100%;
  border-radius: 2px;
  box-shadow: var(--shadow-elevated);
  object-fit: cover;
  max-height: 370px;
}
@media (min-width: 640px) { .hero-image-wrap img { max-height: 420px; } }
@media (min-width: 768px) { .hero-image-wrap img { max-height: 480px; } }
@media (min-width: 1024px) { .hero-image-wrap img { max-height: 560px; } }
.hero-image-ring {
  position: absolute;
  inset: 0;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(9,10,10,0.05);
}
.hero-image-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 0 0 2px 2px;
  height: 25%;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.28) 40%, rgba(0,0,0,0.10) 70%, transparent 100%);
}
.hero-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  border-radius: 0 0 2px 2px;
}
.hero-image-caption-title {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.2px;
  color: rgba(255,255,255,0.95);
}
.hero-image-caption-desc {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 4px;
  color: rgba(255,255,255,0.80);
}

/* ===== SECTIONS SHARED ===== */
.section-light {
  padding: 6rem 0;
  background-color: var(--card);
}
.section-bg {
  padding: 6rem 0;
  background-color: var(--background);
}
.section-dark {
  padding: 6rem 0;
  background-color: var(--primary);
}
@media (min-width: 768px) {
  .section-light, .section-bg, .section-dark { padding: 8rem 0; }
}

.section-eyebrow {
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}
.section-eyebrow-muted { color: var(--muted-foreground); }
.section-eyebrow-light { color: rgba(255,255,255,0.4); }

.section-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-title { font-size: 1.875rem; } }
.section-title-dark { color: var(--foreground); }
.section-title-light { color: var(--primary-foreground); }

.section-desc {
  font-size: 14px;
  line-height: 1.65;
  margin-top: 1rem;
}
@media (min-width: 768px) { .section-desc { font-size: 16px; } }
.section-desc-muted { color: var(--text-secondary); }
.section-desc-light { color: rgba(255,255,255,0.5); }

.section-sub {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2rem;
  color: var(--muted-foreground);
}
@media (min-width: 768px) { .section-sub { font-size: 14px; } }

.section-cta {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) { .section-cta { margin-top: 3.5rem; } }

/* ===== PROBLEMS SECTION ===== */
.problems-grid {
  display: grid;
  gap: 1px;
  background-color: var(--border);
}
@media (min-width: 640px) { .problems-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problems-grid { grid-template-columns: repeat(3, 1fr); } }
.problem-card {
  padding: 2rem;
  background-color: var(--card);
  transition: background-color 0.3s;
}
@media (min-width: 768px) { .problem-card { padding: 2.5rem; } }
.problem-card:hover { background-color: var(--background-secondary); }
.problem-card svg {
  width: 20px;
  height: 20px;
  stroke: var(--muted-foreground);
  stroke-width: 1.25;
  fill: none;
  margin-bottom: 1.5rem;
  display: block;
}
.problem-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.problem-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 72rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(217,217,217,0.6);
  background-color: var(--card);
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
@media (min-width: 768px) { .service-card { padding: 2.5rem; } }
.service-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2px;
  background-color: var(--background);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.service-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--foreground);
  stroke-width: 1.25;
  fill: none;
  display: block;
}
.service-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.service-card p {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== AUTHORITY / DIFERENCIAIS ===== */
.authority-list {
  max-width: 56rem;
  margin: 0 auto;
}
.authority-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) { .authority-item { gap: 2rem; } }
.authority-item:first-child { padding-top: 0; }
.authority-item:last-child { border-bottom: none; }
.authority-num {
  color: rgba(255,255,255,0.2);
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.125rem;
  font-variant-numeric: tabular-nums;
}
.authority-item h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-foreground);
  margin-bottom: 0.375rem;
}
.authority-item p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: 6rem; }
}
.about-text p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.75;
  text-align: justify;
}
.about-text p + p { margin-top: 1.25rem; }

.about-signature {
  margin-top: 3.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media (min-width: 768px) { .about-signature { margin-top: 2.5rem; } }
.about-signature img {
  width: 79px;
  height: 106px;
  flex-shrink: 0;
  border-radius: 4px;
  object-fit: cover;
  object-position: top;
}
.about-signature-eyebrow {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  display: block;
  margin-bottom: 0.25rem;
}
.about-signature-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--foreground);
  display: block;
  line-height: 1.3;
}
.about-signature-role {
  color: var(--text-secondary);
  font-size: 13px;
  display: block;
  margin-top: 0.125rem;
}
.about-signature-email {
  color: var(--muted-foreground);
  font-size: 12px;
  display: block;
  margin-top: 0.25rem;
  transition: color 0.2s;
}
.about-signature-email:hover { color: var(--foreground); }

.about-logo-desktop {
  display: none;
  justify-content: center;
}
@media (min-width: 768px) { .about-logo-desktop { display: flex; } }
.about-logo-desktop img {
  width: 11rem;
  opacity: 0.3;
}
.about-logo-mobile {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
@media (min-width: 768px) { .about-logo-mobile { display: none; } }
.about-logo-mobile img {
  width: 9rem;
  opacity: 0.3;
}

.about-image-wrap {
  max-width: 64rem;
  margin: 3.5rem auto 1.25rem;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
}
@media (min-width: 768px) { .about-image-wrap { margin-top: 4rem; margin-bottom: 2rem; } }
.about-image-wrap img {
  width: 100%;
  aspect-ratio: 1536 / 691;
  object-fit: cover;
}
.about-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.08);
  pointer-events: none;
}

/* ===== TRUST / CONFIANÇA ===== */
.trust-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card {
  padding: 2rem;
  border-radius: 2px;
  border: 1px solid rgba(255,255,255,0.08);
  background-color: rgba(255,255,255,0.03);
  transition: all 0.3s;
}
@media (min-width: 768px) { .trust-card { padding: 2.5rem; } }
.trust-card:hover {
  background-color: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.trust-card-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 2px;
  background-color: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.trust-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 1.25;
  fill: none;
  display: block;
}
.trust-card h3 {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}
.trust-card p {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 56rem;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(217,217,217,0.4);
}
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--foreground);
  transition: color 0.3s;
}
.faq-question:hover { color: var(--muted-foreground); }
.faq-question svg {
  width: 16px;
  height: 16px;
  stroke: var(--muted-foreground);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
  transition: transform 0.3s;
  display: block;
}
.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s;
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer-inner {
  padding-bottom: 1.75rem;
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
}

/* ===== CTA SECTION ===== */
.cta-section { text-align: center; }
.cta-divider {
  width: 3rem;
  height: 1px;
  background-color: rgba(255,255,255,0.15);
  margin: 1.5rem auto;
}
.cta-desc {
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 3rem;
}
.cta-email-label {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.cta-email {
  color: rgba(255,255,255,0.35);
  font-size: 13px;
  letter-spacing: 0.05em;
  transition: all 0.5s;
  display: inline-block;
  margin-top: 0.375rem;
}
.cta-email:hover {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.cta-footer-text {
  color: rgba(255,255,255,0.25);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.cta-footer-sub {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* ===== FOOTER ===== */
.site-footer {
  background-color: var(--primary);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner { padding-top: 3rem; padding-bottom: 2rem; }
}
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 3.5rem; }
}
.footer-logo { height: 27px; filter: invert(1); opacity: 0.8; margin-bottom: 1rem; }
.footer-tagline {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  line-height: 1.65;
  max-width: 20rem;
}
.footer-heading {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-list li {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.footer-copyright {
  color: rgba(255,255,255,0.2);
  font-size: 11px;
  letter-spacing: 0.05em;
}
.footer-disclaimer {
  color: rgba(255,255,255,0.15);
  font-size: 10px;
  letter-spacing: 0.05em;
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  background-color: var(--foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-elevated);
  transition: all 0.3s ease-out;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.whatsapp-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.whatsapp-float:hover { background-color: var(--institutional-hover); }
.whatsapp-float img {
  width: 1.25rem;
  height: 1.25rem;
  filter: invert(1);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== WORDPRESS SPECIFIC ===== */
.wp-content img { max-width: 100%; height: auto; }
.wp-content p { margin-bottom: 1.25rem; line-height: 1.75; color: var(--text-secondary); font-size: 15px; }
.wp-content h2 { font-family: 'Manrope', sans-serif; font-weight: 700; font-size: 1.5rem; color: var(--foreground); margin: 2rem 0 1rem; }
.wp-content h3 { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 1.25rem; color: var(--foreground); margin: 1.5rem 0 0.75rem; }
.wp-content ul, .wp-content ol { margin: 1rem 0; padding-left: 1.5rem; }
.wp-content ul { list-style: disc; }
.wp-content ol { list-style: decimal; }
.wp-content li { margin-bottom: 0.5rem; color: var(--text-secondary); font-size: 15px; line-height: 1.75; }
.wp-content a { color: var(--foreground); text-decoration: underline; text-underline-offset: 3px; }
.wp-content a:hover { color: var(--muted-foreground); }
.wp-content blockquote { border-left: 3px solid var(--border); padding-left: 1.25rem; margin: 1.5rem 0; color: var(--muted-foreground); font-style: italic; }

/* Search form */
.search-form { display: flex; gap: 0.5rem; max-width: 32rem; margin: 0 auto; }
.search-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  background: var(--card);
  color: var(--foreground);
}
.search-form input:focus { outline: none; border-color: var(--foreground); }
.search-form button {
  padding: 0.75rem 1.5rem;
  background: var(--foreground);
  color: var(--primary-foreground);
  border: none;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.2s;
}
.search-form button:hover { background: var(--institutional-hover); }

/* Post cards */
.posts-grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) { .posts-grid { grid-template-columns: repeat(2, 1fr); } }
.post-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all 0.3s;
}
.post-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-2px);
}
.post-card-thumb { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.post-card-body { padding: 1.5rem; }
.post-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.post-card-title a { transition: color 0.2s; }
.post-card-title a:hover { color: var(--muted-foreground); }
.post-card-excerpt {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.post-card-meta {
  font-size: 12px;
  color: var(--muted-foreground);
  letter-spacing: 0.03em;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}
.pagination a, .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  font-size: 14px;
  color: var(--foreground);
  transition: all 0.2s;
}
.pagination a:hover { background: var(--foreground); color: var(--primary-foreground); }
.pagination .current { background: var(--foreground); color: var(--primary-foreground); }

/* ===== AJUSTES DE RESPONSIVIDADE DO CONTAINER ===== */
@media (max-width: 1024px) {
  .container,
  .hero-inner {
    padding-left: var(--container-padding-tablet);
    padding-right: var(--container-padding-tablet);
  }

  :root {
    --logo-visual-offset: -12px;
  }
}

@media (max-width: 768px) {
  .container,
  .hero-inner {
    padding-left: var(--container-padding-mobile);
    padding-right: var(--container-padding-mobile);
  }

  :root {
    --logo-visual-offset: -8px;
  }
}

/* ===== AJUSTE FINAL: ALINHAMENTO HEADER ↔ HERO =====
   O header e o hero usam o mesmo padding lateral.
   A logo recebe um pequeno deslocamento porque o SVG possui respiro interno visual.
*/
.site-header .container.header-inner,
.hero-section .container.hero-inner {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.hero-grid > div:first-child {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

.hero-eyebrow,
.hero-title,
.hero-desc,
.hero-bullets,
.hero-cta-wrapper {
  margin-left: 0 !important;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: minmax(0, 620px) minmax(0, 1fr);
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-grid {
    gap: 72px;
  }
}

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