/* =============================================
   VARGAS & BICCA ADVOGADOS – STYLESHEET
   ============================================= */

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

:root {
  --gold:        #C9A84C;
  --gold-light:  #E2C97E;
  --gold-dark:   #A07830;
  --dark:        #0A0C10;
  --dark-2:      #0F1218;
  --dark-3:      #161B24;
  --dark-4:      #1E2530;
  --mid:         #2A3240;
  --light-bg:    #F5F3EE;
  --text-light:  #E8E4DC;
  --text-muted:  #9AA0AC;
  --white:       #FFFFFF;
/*--font-serif:  'Cormorant Garamond', Georgia, serif; */
  --font-sans: 'Inter', sans-serif;
  --font-sans:   'Montserrat', Arial, sans-serif;
  --transition:  0.3s ease;
  --radius:      4px;
  --max-w:       1200px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--dark);
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

/* --- ESTILOS GERAIS --- */
p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    text-align: justify !important; /* Alinha o texto nas duas margens / O !important força a aplicação*/
    text-justify: inter-word; /* Distribui o espaço entre palavras */
    hyphens: auto;            /* Hifenização automática */
}


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

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.gold { color: var(--gold); }

/* --- Buttons --- */
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 14px 32px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-nav {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 12px 24px;
  transition: var(--transition);
  cursor: pointer;
}
.btn-nav:hover { background: var(--gold-light); }

.btn-text-gold {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: var(--transition);
  margin-top: 32px;
}
.btn-text-gold:hover { color: var(--gold-light); border-color: var(--gold-light); }

/* --- Section Labels & Titles --- */
.section-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 16px;
  text-transform: uppercase;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
.section-title.light { color: var(--white); }

.section-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px 0;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(10, 12, 16, 0.97);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 48px;
  height: 48px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-vb {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 1px;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 3px;
  color: var(--text-muted);
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10,12,16,0.70) 0%,
    rgba(10,12,16,0.40) 50%,
    rgba(10,12,16,0.1) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
}
.hero-text { max-width: 560px; }

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

/* =============================================
   DIFERENCIAIS
   ============================================= */
.diferenciais {
  background: var(--light-bg);
  padding: 80px 0;
}
.diferenciais-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #D8D4CC;
}
.diferencial-item {
  background: var(--light-bg);
  padding: 48px 32px;
  border-top: 3px solid transparent;
  transition: border-color var(--transition);
}
.diferencial-item:hover { border-color: var(--gold); }
.diferencial-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.diferencial-icon svg { width: 100%; height: 100%; }
.diferencial-item h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.diferencial-item p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #555;
  line-height: 1.8;
}

/* =============================================
   ÁREAS DE ATUAÇÃO
   ============================================= */
.areas {
  position: relative;
  padding: 120px 0;
  min-height: 560px;
  display: flex;
  align-items: center;
}
.areas-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
.areas-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10,12,16,0.70) 0%,
    rgba(10,12,16,0.50) 55%,
    rgba(10,12,16,0.2) 100%
  );
}
.areas-content {
  position: relative;
  z-index: 2;
}
.areas-left { max-width: 640px; }

.areas-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 8px;
}
.area-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color var(--transition);
}
.area-link:hover { color: var(--gold); }
.area-arrow {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}

/* =============================================
   ATENDIMENTO NACIONAL
   ============================================= */
.nacional {
  background: var(--dark-3);
  padding: 100px 0;
}
.nacional-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.nacional-map {
  display: flex;
  justify-content: center;
}
.nacional-map img {
  max-width: 420px;
  width: 100%;
  filter: drop-shadow(0 0 40px rgba(201,168,76,0.25));
}
.nacional-text p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 380px;
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  background: var(--light-bg);
  padding: 100px 0;
  text-align: center;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
.cta-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
}
.cta-icon svg { width: 100%; height: 100%; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 16px;
}
.cta-sub {
  font-family: var(--font-sans);
  font-size: 14px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 36px;
}
.cta-section .btn-outline {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}
.cta-section .btn-outline:hover {
  background: var(--gold-dark);
  color: var(--white);
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--dark-2);
  padding: 80px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr 2fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 20px;
  max-width: 260px;
}
.logo-footer .logo-mark { width: 40px; height: 40px; }
.logo-footer .logo-vb { font-size: 16px; }
.logo-footer .logo-name { font-size: 11px; }
.logo-footer .logo-sub { font-size: 8px; }

.footer-nav h4,
.footer-areas h4,
.footer-contact h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-nav ul li,
.footer-areas ul li {
  margin-bottom: 10px;
}
.footer-nav ul li a,
.footer-areas ul li a {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-nav ul li a:hover,
.footer-areas ul li a:hover { color: var(--gold); }

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}
.footer-contact ul li a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-contact ul li a:hover { color: var(--gold); }
.footer-contact ul li svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: 20px 0;
}
.footer-bottom p {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* =============================================
   PAGE HERO (páginas internas)
   ============================================= */
.page-hero {
  position: relative;
  height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,12,16,0.20) 0%,
    rgba(10,12,16,0.4) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
}
.breadcrumb {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* =============================================
   SOBRE NÓS PAGE
   ============================================= */
.sobre-historia {
  background: var(--dark);
  padding: 100px 0;
}
.sobre-historia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.sobre-historia-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}
.sobre-historia-text p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}
.sobre-historia-img img {
  width: 100%;
  border: 1px solid rgba(201,168,76,0.2);
}

.socios {
  background: var(--dark-3);
  padding: 100px 0;
}
.socios-header {
  text-align: center;
  margin-bottom: 64px;
}
.socios-header p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
}
.socios-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto;
}
.socio-card {
  background: var(--dark-4);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 40px;
  transition: border-color var(--transition);
}
.socio-card:hover { border-color: var(--gold); }
.socio-card h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.socio-role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}
.socio-card p {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.8;
}

.socio-photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  margin-bottom: 1rem;
  border-radius: 4px;
}

.como-trabalhamos {
  background: var(--dark);
  padding: 100px 0;
}
.como-trabalhamos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.como-trabalhamos h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
}
.como-trabalhamos p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 20px;
}

/* =============================================
   ATUAÇÃO PAGE
   ============================================= */
.atuacao-intro {
  background: var(--dark);
  padding: 100px 0;
}
.atuacao-intro-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.atuacao-intro-inner p {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-top: 16px;
}

.areas-detail {
  background: var(--dark-3);
  padding: 80px 0;
}
.area-block {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 64px 0;
}
.area-block:first-child { padding-top: 0; }
.area-block:last-child { border-bottom: none; }
.area-block-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.area-block-label {
  position: sticky;
  top: 100px;
}
.area-block-label .area-number {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.area-block-label h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
}
.area-block-label .area-tag {
  display: inline-block;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 4px 12px;
  margin-top: 12px;
}
.area-block-content p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}
.area-block-content p:last-child { margin-bottom: 0; }

/* =============================================
   CONTATO PAGE
   ============================================= */
.contato-section {
  background: var(--dark);
  padding: 100px 0;
}
.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contato-info h2 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}
.contato-info p {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}
.contato-cards { display: flex; flex-direction: column; gap: 20px; }
.contato-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 24px;
}
.contato-card-icon {
  width: 40px;
  height: 40px;
  background: rgba(201,168,76,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contato-card-icon svg { width: 20px; height: 20px; }
.contato-card-body h4 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 6px;
}
.contato-card-body p, .contato-card-body a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}
.contato-card-body a:hover { color: var(--gold); }

/* Form */
.contato-form-wrap {
  background: var(--dark-3);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 48px;
}
.contato-form-wrap h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark-4);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-light);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 16px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  margin-top: 8px;
}
.form-submit:hover { background: var(--gold-light); }

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .diferenciais-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nacional-inner { gap: 48px; }
  .sobre-historia-inner,
  .como-trabalhamos-inner,
  .contato-inner { gap: 48px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 40px 32px;
    transition: right var(--transition);
    box-shadow: -4px 0 32px rgba(0,0,0,0.5);
  }
  .main-nav.open { right: 0; }
  .nav-link { font-size: 14px; }
  .btn-nav { width: 100%; text-align: center; }

  .diferenciais-grid { grid-template-columns: 1fr; gap: 0; }
  .areas-list { grid-template-columns: 1fr; }
  .nacional-inner { grid-template-columns: 1fr; gap: 40px; }
  .socios-grid { grid-template-columns: 1fr; }
  .sobre-historia-inner,
  .como-trabalhamos-inner,
  .contato-inner { grid-template-columns: 1fr; }
  .area-block-inner { grid-template-columns: 1fr; gap: 24px; }
  .area-block-label { position: static; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .contato-form-wrap { padding: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 36px; }
  .page-hero { height: 280px; }
  .socios-grid { gap: 24px; }
  .socio-card { padding: 28px; }
}

/* --- FORÇAR JUSTIFICAÇÃO GLOBAL --- */
p, 
.area-block-content p, 
.socio-card p, 
.sobre-historia-text p {
    text-align: justify !important;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

/* Ajuste para telas menores (celulares) para não criar buracos no texto */
@media (max-width: 768px) {
    p, .area-block-content p {
        text-align: justify !important;
        hyphens: auto;
    }
}

/* --- FORÇAR JUSTIFICAÇÃO GLOBAL --- */
p, 
.area-block-content p, 
.socio-card p, 
.sobre-historia-text p {
    text-align: justify !important;
    text-justify: inter-word;
    hyphens: auto;
    -webkit-hyphens: auto;
    -moz-hyphens: auto;
    -ms-hyphens: auto;
}

/* Ajuste para telas menores (celulares) para não criar buracos no texto */
@media (max-width: 768px) {
    p, .area-block-content p {
        text-align: justify !important;
        hyphens: auto;
    }
}

.contato-card-body p {
    margin-bottom: 0.21rem !important; /* Ajuste este valor conforme desejar */
}
    /* Correção exclusiva para o texto abaixo de Sócios Fundadores */
.socios-header p {
    text-align: center !important;
}





/* ======================================================
VARGAS & BICCA ADVOGADOS
PREMIUM TYPOGRAPHY OVERRIDE 2026
Adicionar no FINAL do style.css
====================================================== */

/* ---------- FONTES ---------- */

:root{
--font-serif:'Cormorant Garamond',serif;
--font-sans:'Inter',sans-serif;

--gold:#C9A84C;
--gold-light:#DFC478;
--gold-dark:#A07830;

--dark:#0B0E13;
--dark-2:#11161D;
--dark-3:#171D27;
--dark-4:#202938;

--text-light:#EAE6DD;
--text-muted:#B1B7C0;
}

/* ---------- BODY ---------- */

body{
font-family:var(--font-sans);
font-size:16px;
font-weight:400;
line-height:1.75;

-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;

text-rendering:optimizeLegibility;
}

/* ---------- PARÁGRAFOS ---------- */

p{
font-size:16px;
line-height:1.85;
letter-spacing:.01em;
}

/* ---------- HERO ---------- */

.hero-title{
font-family:var(--font-serif);

font-size:clamp(48px,7vw,82px);

font-weight:500;

line-height:1.02;

letter-spacing:-0.03em;

max-width:760px;

margin-bottom:28px;
}

.hero-subtitle{
font-family:var(--font-sans);

font-size:18px;

font-weight:400;

line-height:1.9;

color:rgba(255,255,255,.78);

max-width:540px;

margin-bottom:48px;
}

/* ---------- TITULOS ---------- */

.section-title{
font-family:var(--font-serif);

font-size:clamp(28px,3vw,46px);

font-weight:500;

line-height:1.12;

letter-spacing:-0.02em;
}

.page-hero-content h1{
font-family:var(--font-serif);

font-size:clamp(42px,5vw,70px);

font-weight:500;

line-height:1.08;

letter-spacing:-0.02em;
}

.cta-title{
font-family:var(--font-serif);

font-size:clamp(38px,5vw,62px);

font-weight:500;

letter-spacing:-0.02em;
}

/* ---------- MENU ---------- */

.nav-link{
font-family:var(--font-sans);

font-size:12px;

font-weight:600;

letter-spacing:1.2px;

text-transform:uppercase;
}

/* ---------- LOGO ---------- */

.logo-name{
font-size:14px;

font-weight:700;

letter-spacing:1.5px;
}

.logo-sub{
font-size:9px;

letter-spacing:3px;
}

/* ---------- BOTÕES ---------- */

.btn-outline{
display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border:1px solid var(--gold);

font-size:12px;

font-weight:600;

letter-spacing:1.5px;

text-transform:uppercase;

transition:.35s ease;
}

.btn-outline:hover{
transform:translateY(-2px);
}

.btn-nav{
font-size:12px;

font-weight:700;

letter-spacing:1.5px;
}

/* ---------- LABELS ---------- */

.section-label{
font-size:12px;

letter-spacing:3px;

font-weight:600;
}

/* ---------- DIFERENCIAIS ---------- */

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

.diferencial-item:hover{
transform:translateY(-6px);

box-shadow:
0 20px 40px rgba(0,0,0,.08);
}

.diferencial-item h3{
font-family:var(--font-serif);

font-size:26px;

font-weight:500;

line-height:1.2;
}

.diferencial-item p{
font-size:15px;

line-height:1.9;
}

/* ---------- AREAS ---------- */

.area-link{
font-size:15px;

line-height:1.7;
}

/* ---------- SOCIOS ---------- */

.socio-card h3{
font-family:var(--font-serif);

font-size:30px;

font-weight:500;
}

.socio-role{
font-size:12px;

letter-spacing:2px;
}

.socio-card p{
font-size:15px;

line-height:1.9;
}

/* ---------- CONTATO ---------- */

.contato-info h2{
font-family:var(--font-serif);

font-size:clamp(32px,4vw,50px);

font-weight:500;

letter-spacing:-0.02em;
}

.contato-form-wrap h3{
font-family:var(--font-serif);

font-size:34px;

font-weight:500;
}

.form-group input,
.form-group textarea,
.form-group select{
font-size:15px;
}

/* ---------- FOOTER ---------- */

.footer-nav h4,
.footer-areas h4,
.footer-contact h4{
font-size:12px;

letter-spacing:2px;
}

.footer-nav ul li a,
.footer-areas ul li a,
.footer-contact ul li{
font-size:14px;
}

/* ---------- HEADER PREMIUM ---------- */

.site-header.scrolled{
background:rgba(11,14,19,.96);

backdrop-filter:blur(12px);

-webkit-backdrop-filter:blur(12px);

box-shadow:
0 10px 40px rgba(0,0,0,.45);
}

/* ---------- RESPONSIVO ---------- */

@media (max-width:768px){

.hero-title{
font-size:52px;
}

.section-title{
font-size:38px;
}

.hero-subtitle{
font-size:17px;
}

p{
font-size:15px;
}
}

@media (max-width:480px){

.hero-title{
font-size:42px;
line-height:1.1;
}

.section-title{
font-size:34px;
}

.hero-subtitle{
font-size:16px;
}
}

.cta-sub {
    text-align: center !important; /* Centraliza o texto */
    text-justify: auto; /* Permite que o navegador determine a melhor forma de justificar, ou desativa a justificação forçada */
}




