.elementor-kit-8{--e-global-color-primary:#C9A15A;--e-global-color-secondary:#B8911F;--e-global-color-text:#ECECEC;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-8 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:0px;}.elementor-element{--widgets-spacing:0px 0px;--widgets-spacing-row:0px;--widgets-spacing-column:0px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ============================================
   DESIGN SYSTEM - ADVOCACIA CARVALHO
   Landing Page - Direito Trabalhista
   ============================================ */

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --color-primary: #C9A15A;
  --color-primary-hover: #b8911f;
  --color-primary-light: rgba(201, 161, 90, 0.08);
  --color-dark: #1C1F23;
  --color-dark-light: #2a2e33;
  --color-gray: #6B6B6B;
  --color-light: #FFFFFF;
  --color-text: #1C1F23;
  --color-text-muted: #6B6B6B;
  --color-text-light: #e5e5e5;
  --color-border: #e5e5e5;

  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.375rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;
  --font-size-5xl: 3.5rem;

  --spacing-xs: 8px;
  --spacing-sm: 12px;
  --spacing-md: 16px;
  --spacing-card: 24px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-2xl: 48px;
  --spacing-3xl: 64px;
  --spacing-section: 96px;

  --border-radius: 6px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-light);
  /* Garante que não haja scroll horizontal causado pelo hero */
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ============================================
   BODY WRAPPER
   ============================================ */
.body-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--color-light);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-dark);
}

h1 { font-size: var(--font-size-4xl); letter-spacing: -0.02em; }
h2 { font-size: var(--font-size-3xl); letter-spacing: -0.01em; }
h3 {
  font-size: var(--font-size-xl);
  font-family: var(--font-body);
  font-weight: 600;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-family: var(--font-heading);
  font-size: var(--font-size-base);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-dark);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-primary:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 2px;
}

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: 18px 20px;
  font-size: var(--font-size-lg);
}

.btn svg { width: 20px; height: 20px; }
.btn-lg svg { width: 24px; height: 24px; }

/* ============================================
   SESSÃO 1 – HERO SECTION
   CORREÇÃO ELEMENTOR: forçar largura total da viewport
   ============================================ */

/*
  O Elementor envolve o conteúdo em containers com max-width e padding.
  A técnica abaixo usa margin negativa + width 100vw para "escapar"
  do container pai e ocupar a tela toda.
  Se o hero-wrapper estiver DIRETAMENTE num widget HTML do Elementor,
  aplique também os estilos no widget pai via painel do Elementor:
    - Stretch Section: ON
    - Content Width: Full Width
    - Padding: 0
*/

.hero-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-light) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 48px 80px 200px;
  gap: var(--spacing-xl);
  position: relative;
  z-index: 2;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-xs) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--color-primary);
}

.trust-badge span {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: #ffffff;
}

.hero-content h1 {
  max-width: 600px;
  color: #ffffff;
  margin-bottom: var(--spacing-md);
}

.hero-content h1 .highlight {
  color: var(--color-primary);
  display: block;
  margin-top: var(--spacing-sm);
}

.hero-description {
  max-width: 540px;
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-md);
}

.hero-visual {
  position: relative;
  background-size: cover;
  background-position: center;
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  min-height: 400px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--color-dark) 0%, transparent 60%);
}

/* ============================================
   SECTION COMMON STYLES
   ============================================ */
.services-wrapper,
.differentials-wrapper,
.testimonials-wrapper {
  width: 100%;
  padding: var(--spacing-section) var(--spacing-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-3xl);
}

.services-wrapper   { background: var(--color-light); }
.differentials-wrapper { background: #F8F8F8; }
.testimonials-wrapper  { background: var(--color-light); }

.services-header,
.differentials-header,
.testimonials-header {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.services-header p,
.differentials-header p,
.testimonials-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  line-height: 1.8;
}

.section-cta { margin-top: var(--spacing-lg); }

/* ============================================
   SESSÃO 2 – SERVICES
   ============================================ */
.services-highlight {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xl);
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-card);
  background: var(--color-light);
  border: 2px solid var(--color-border);
  border-radius: var(--border-radius);
  transition: all var(--transition-base);
}

.service-card.featured {
  border-color: var(--color-primary);
  background: var(--color-primary-light);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
}

.service-card h3 { margin-bottom: var(--spacing-md); color: var(--color-dark); }
.service-card p  { color: var(--color-text-muted); line-height: 1.7; }

.services-grid {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.service-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--spacing-md);
  padding: var(--spacing-md);
  background: #F8F8F8;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
}

.service-item:hover {
  background: var(--color-primary-light);
  transform: translateX(4px);
}

.service-item .check-icon {
  width: 24px;
  height: 24px;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-item span { color: var(--color-text); line-height: 1.6; }

/* ============================================
   SESSÃO 3 – DIFFERENTIALS
   ============================================ */
.differentials-cards {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
}

.differential-card {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-card);
  background: var(--color-light);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--color-border);
}

.differential-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.differential-card .icon {
  width: 56px;
  height: 56px;
  margin-bottom: var(--spacing-lg);
  color: var(--color-primary);
}

.differential-card h3 {
  margin-bottom: var(--spacing-md);
  color: var(--color-dark);
  font-size: var(--font-size-xl);
}

.differential-card p { color: var(--color-text-muted); line-height: 1.8; }

/* ============================================
   SESSÃO 4 – TESTIMONIALS
   ============================================ */
.testimonials-cards {
  max-width: 1140px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-2xl);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  padding: var(--spacing-card);
  background: #F8F8F8;
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.quote-icon {
  display: none;
}

.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 80px;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.4;
  display: block;
  margin-bottom: -16px;
  height: 56px;
}

.testimonial-card .quote {
  font-size: var(--font-size-base);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: var(--spacing-lg);
  font-style: italic;
}

.testimonial-card .author {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  padding-top: var(--spacing-md);
  border-top: 1px solid var(--color-border);
}

.testimonial-card .author strong {
  color: var(--color-dark);
  font-weight: 600;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.final-cta-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  padding: var(--spacing-section) var(--spacing-lg);
  background: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta-wrapper h2 {
  color: var(--color-dark);
  max-width: 640px;
  position: relative;
  z-index: 1;
}

.final-cta-wrapper p {
  color: var(--color-dark);
  font-size: var(--font-size-lg);
  max-width: 560px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
}

.final-cta-wrapper .btn {
  position: relative;
  z-index: 1;
  background: var(--color-dark);
  color: var(--color-light);
}

.final-cta-wrapper .btn:hover {
  background: var(--color-dark-light);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);

  padding: var(--spacing-xl) var(--spacing-lg);
  background: var(--color-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  text-align: center;
}

.footer-content p { color: rgba(255, 255, 255, 0.7); font-size: var(--font-size-sm); }
.footer-oab { font-weight: 600; color: var(--color-primary) !important; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .differentials-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root {
    --font-size-4xl: 2rem;
    --font-size-3xl: 1.75rem;
    --spacing-section: 64px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero-content {
    padding: var(--spacing-2xl) var(--spacing-lg);
    order: 2;
  }

  .hero-content h1,
  .hero-description { max-width: 100%; }

  .hero-visual {
    height: 280px;
    clip-path: none;
    order: 1;
    min-height: unset;
  }

  .services-highlight      { grid-template-columns: 1fr; }
  .services-grid           { grid-template-columns: 1fr; }
  .differentials-cards     { grid-template-columns: 1fr; }
  .testimonials-cards      { grid-template-columns: 1fr; }

  .btn-lg {
    padding: 16px 28px;
    font-size: var(--font-size-base);
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-content > * { animation: fadeInUp 0.6s ease-out backwards; }
.hero-content > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content > *:nth-child(2) { animation-delay: 0.2s; }
.hero-content > *:nth-child(3) { animation-delay: 0.3s; }
.hero-content > *:nth-child(4) { animation-delay: 0.4s; }/* End custom CSS */