@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ============================================
   SK ADVOGADOS - ELITE DESIGN v1
   High Contrast Hybrid Layout
   Primary: #46727b (Slate-Teal)
   Accent: #ffcc00 (Gold)
   ============================================ */

:root {
  /* Brand Colors */
  --teal:        #46727b;
  --teal-light:  #5c8c94;
  --teal-dark:   #35565d;
  --gold:        #ffcc00;
  --green-wa:    #25d366;

  /* Dark Theme */
  --dark-bg:     #070709;
  --dark-surface:#111116;
  --dark-border: rgba(255,255,255,0.08);

  /* Light Theme */
  --light-bg:    #f3f4f6;
  --light-card:  #ffffff;
  --dark-text:   #1f2937;
  --muted-text:  #4b5563;

  /* Typography */
  --font-h: 'Outfit', sans-serif;
  --font-b: 'Inter', sans-serif;

  /* Gradients */
  --grad-teal: linear-gradient(135deg, #5c8c94 0%, #46727b 50%, #35565d 100%);

  /* Spacing */
  --max-w: 1280px;
  --gap-xl: 8rem;
  --gap-lg: 5rem;
  --gap-md: 3rem;
}

/* ============ RESET ============ */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-b);
  background: var(--dark-bg);
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight:700; line-height:1.1; letter-spacing:-0.02em; }
a { text-decoration:none; color:inherit; transition: all 0.25s ease; }
ul { list-style:none; }
img { max-width:100%; height:auto; display:block; border-radius:12px; }

/* ============ UTILITIES ============ */
.container { width:100%; max-width:var(--max-w); margin:0 auto; padding:0 2.5rem; }
.section    { padding: var(--gap-xl) 0; position:relative; }

.text-gradient {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  font-family: var(--font-h);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: var(--teal-light);
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title { font-size: 3.2rem; margin-bottom: 2.5rem; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.active { opacity:1; transform:translateY(0); }

/* ============ GLASSMORPHISM ============ */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-teal);
  color: #fff;
  box-shadow: 0 6px 24px rgba(70,114,123,0.3);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(70,114,123,0.45); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid var(--dark-border);
}
.btn-outline:hover { border-color: var(--teal); background: rgba(70,114,123,0.1); }

/* ============ UTILITIES ============ */
.glass-panel {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.glass-panel:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.15);
  transform: translateY(-3px);
}
.text-gradient {
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-whatsapp {
  background: var(--green-wa);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover { background: #1ebe57; transform:translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,0.45); }

/* ============ HEADER ============ */
.header {
  position: fixed;
  width:100%; top:0; z-index:1000;
  padding: 1.4rem 0;
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}
.header.scrolled {
  background: rgba(7,7,9,0.88);
  backdrop-filter: blur(16px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--dark-border);
}
.navbar { display:flex; justify-content:space-between; align-items:center; }
.logo { font-family:var(--font-h); font-size:1.8rem; font-weight:800; letter-spacing:-0.03em; z-index:10; display: flex; align-items: center; }
.logo span { font-weight:300; color: rgba(255,255,255,0.5); }

.logo-img {
  height: 65px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.footer .logo-img {
  height: 75px;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-links { display:flex; gap:2.5rem; align-items:center; }
.nav-links a {
  font-family:var(--font-h); font-size:0.9rem; font-weight:500;
  color: rgba(255,255,255,0.65);
  letter-spacing:0.08em; text-transform:uppercase;
}
.nav-links a:hover, .nav-links a.active { color:#fff; }
.nav-btn { padding:0.55rem 1.5rem; font-size:0.85rem; }

/* ============ DROPDOWN ============ */
.dropdown { position:relative; display:inline-block; }
.dropdown > a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: -20px; /* Bridges the gap */
    background: transparent;
}
.dropdown-content {
  position:absolute;
  top:calc(100% + 0.8rem);
  left:50%;
  transform:translateX(-50%);
  min-width:280px;
  padding:0.8rem 0;
  z-index:1001;
  background: rgba(11, 11, 16, 0.98) !important;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7);
  
  /* Transition Logic */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
/* Small delay when leaving to prevent flickering */
.dropdown .dropdown-content {
  transition-delay: 0.2s;
}
.dropdown:hover .dropdown-content {
  transition-delay: 0s;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(255, 255, 255, 0.1);
}
.dropdown-content a {
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 0.9rem 1.8rem !important;
  text-decoration: none;
  display: block;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  text-align: left;
}
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--teal-light) !important;
  padding-left: 2.2rem !important;
}
.dropdown:hover .dropdown-content { display: block; }
@keyframes dropdownFade {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.mobile-menu-btn { display:none; background:none; border:none; color:#fff; font-size:1.5rem; cursor:pointer; z-index:10; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}
.hero-glow {
  position:absolute; top:20%; left:50%;
  transform:translate(-50%,-50%);
  width:900px; height:900px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.25) 0%, transparent 70%);
  border-radius:50%; z-index:0; pointer-events:none;
}
.hero-bg-icon {
  position:absolute; right:-5%; top:55%; transform:translateY(-50%);
  font-size:65vw; color:transparent;
  -webkit-text-stroke: 1.5px rgba(255, 153, 0, 0.08);
  z-index:0; pointer-events:none;
  animation: fadeIcon 1.5s ease 0.5s both;
}
@keyframes fadeIcon { to { opacity:1; } }
.hero-content { max-width:750px; position:relative; z-index:1; }
.hero-title { font-size:2.8rem; line-height:1.15; margin-bottom:1.2rem; font-weight:800; }
.hero-subtitle { font-size:1rem; color:rgba(255,255,255,0.5); max-width:600px; margin-bottom:2.2rem; font-weight:300; }
.hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; }

/* ============ FOUNDER SECTION ============ */
.founder-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.content-block h2 { font-size:2.8rem; margin-bottom:1.5rem; }
.content-block p { color:rgba(255,255,255,0.6); font-size:1.05rem; margin-bottom:1.5rem; }
.feature-list { margin-top:2rem; }
.feature-list li { display:flex; align-items:flex-start; gap:1rem; margin-bottom:1.5rem; color:rgba(255,255,255,0.75); }
.feature-list i { color:var(--teal-light); margin-top:4px; }

.founder-image { position:relative; border-radius:24px; overflow:hidden; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
.founder-image img { width:100%; height:100%; object-fit:cover; }
.founder-tag {
  position:absolute; bottom:0; left:0; right:0;
  background: rgba(70,114,123,0.92);
  backdrop-filter: blur(8px);
  padding:1.5rem 2rem;
  color:#fff;
}
.founder-tag h4 { font-size:1.1rem; margin-bottom:0.25rem; }
.founder-tag p { font-size:0.85rem; opacity:0.8; margin:0; }

/* ============ SERVICES SECTION (LIGHT) ============ */
.services-section {
  background: var(--light-bg);
  padding: var(--gap-xl) 0;
  color: var(--dark-text);
}
.services-section .section-label { color: var(--teal); }
.services-section .section-title { color: var(--dark-text); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  background: var(--light-card);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  border: 1px solid rgba(70,114,123,0.08);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.35s ease;
  color: var(--dark-text);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(70,114,123,0.15);
  border-color: rgba(70,114,123,0.25);
}
.service-card h3 {
  font-size: 1.8rem;
  color: var(--teal);
  margin-bottom: 1.5rem;
}

.service-card-tag {
  position: absolute;
  top: 0; right: 2rem;
  background: var(--teal);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: 0 0 10px 10px;
  font-family: var(--font-h);
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: var(--grad-teal);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.service-sub-list { display:flex; flex-direction:column; gap:1.2rem; margin: 1rem 0 2rem; }
.service-card .btn { margin-top: auto; }
.service-sub-item { display:flex; flex-direction:column; gap:0.2rem; padding-bottom:1.2rem; border-bottom:1px solid #f0f2f5; }
.service-sub-item:last-child { border-bottom:none; }
.service-sub-item strong { color:var(--dark-text); font-family:var(--font-h); font-size:0.98rem; }
.service-sub-item span { color:var(--muted-text); font-size:0.88rem; line-height:1.4; }

.service-checklist { display:flex; flex-direction:column; gap:0.7rem; margin: 1rem 0 2rem; }
.service-checklist li { display:flex; align-items:center; gap:0.8rem; color:var(--muted-text); font-size:0.93rem; }
.service-checklist i { color:var(--teal); font-size:0.85rem; flex-shrink:0; }

.btn-saber {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 50px;
  font-family: var(--font-h);
  font-weight: 700;
  padding: 0.9rem 2rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}
.btn-saber:hover { background: var(--teal); color:#fff; }

/* ============ AUTHORITY BANNER (TEAL) ============ */
.authority-banner {
  background: var(--teal);
  padding: 6rem 0;
}
.authority-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  text-align: center;
}
.auth-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.auth-icon {
  font-size: 2.2rem;
  color: #fff;
  opacity: 0.85;
}
.auth-number {
  font-family: var(--font-h);
  font-weight: 800;
  font-size: 3.5rem;
  color: #fff;
  line-height: 1;
}
.auth-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  max-width: 170px;
  line-height: 1.4;
  margin: 0 auto;
}

/* ============ OFFICE HIGHLIGHT (WHITE) ============ */
.office-highlight {
  background: #fff;
  padding: var(--gap-xl) 0;
  color: var(--dark-text);
}
.office-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}
.office-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
}
.office-image-container img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s ease; }
.office-image-container:hover img { transform: scale(1.04); }
.office-location-tag {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(70,114,123,0.95);
  backdrop-filter: blur(8px);
  padding: 1.5rem 2rem;
  color: #fff;
}
.office-location-tag h4 { font-size:1.05rem; margin-bottom:0.6rem; }
.office-location-tag div { display:flex; gap:2rem; font-size:0.88rem; opacity:0.9; }
.office-location-tag span { display:flex; align-items:center; gap:0.5rem; }

.office-content .section-label { color: var(--teal); }
.office-content h2 { font-size:2.8rem; color:var(--dark-text); margin-bottom:1.5rem; }
.office-content p { color:var(--muted-text); font-size:1.05rem; margin-bottom:1.2rem; }
.accent-text { color:var(--teal) !important; font-weight:600; }

/* ============ TRUST SECTION ============ */
.trust-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.badge-group { display:flex; flex-wrap:wrap; gap:1rem; margin-top:2rem; }
.trust-image {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap:0.8rem;
  background: rgba(255,255,255,0.04);
  border:1px solid var(--dark-border);
  border-radius:50px;
  padding:0.7rem 1.5rem;
  font-family:var(--font-h);
  font-size:0.9rem;
  font-weight:500;
}
.info-summary-card {
  background: rgba(255,255,255,0.03);
  border:1px solid var(--dark-border);
  border-radius:20px;
  padding: 3rem;
}
.info-grid { display:flex; flex-direction:column; gap:1.5rem; }
.info-row { display:flex; flex-direction:column; gap:0.4rem; }
.info-label { font-size:0.75rem; text-transform:uppercase; letter-spacing:0.15em; color:rgba(255,255,255,0.4); }
.info-value { font-family:var(--font-h); font-size:1.1rem; font-weight:600; color:#fff; }

/* ============ NEWS SECTION ============ */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.5rem;
  margin-top: 4rem;
}
.news-card {
  display:flex; flex-direction:column;
  background: rgba(255,255,255,0.03);
  border:1px solid var(--dark-border);
  border-radius:20px;
  overflow:hidden;
  transition: all 0.35s ease;
}
.news-card:hover { transform:translateY(-8px); border-color:var(--teal); }
.news-image { height:220px; overflow:hidden; position:relative; }
.news-image img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; border-radius:0; }
.news-card:hover .news-image img { transform:scale(1.05); }
.news-date {
  position:absolute; top:1rem; left:1rem;
  background:var(--grad-teal); color:#fff;
  padding:0.35rem 1rem; border-radius:20px;
  font-family:var(--font-h); font-weight:700; font-size:0.75rem; z-index:1;
}
.news-body { padding:2rem; flex-grow:1; display:flex; flex-direction:column; }
.news-card h3 { font-size:1.3rem; margin-bottom:0.8rem; line-height:1.35; }
.news-card p { color:rgba(255,255,255,0.55); font-size:0.93rem; margin-bottom:1.5rem; flex-grow:1; }
.service-link { display:inline-flex; align-items:center; gap:0.5rem; color:var(--teal-light); font-family:var(--font-h); font-weight:600; font-size:0.95rem; }
.service-link:hover { color:#fff; }

/* ============ FAQ SECTION ============ */
.faq-container { max-width:800px; margin: 4rem auto 0; display:flex; flex-direction:column; gap:1rem; text-align:left; }
.faq-item { background:rgba(255,255,255,0.04); border:1px solid var(--dark-border); border-radius:16px; overflow:hidden; }
.faq-header {
  width:100%; display:flex; justify-content:space-between; align-items:center;
  padding:1.5rem 2rem; background:none; border:none; color:#fff;
  font-family:var(--font-h); font-size:1.05rem; font-weight:500;
  cursor:pointer; text-align:left; gap:1.5rem;
  transition: color 0.25s ease;
}
.faq-header:hover { color:var(--teal-light); }
.faq-header i { flex-shrink:0; color:var(--teal-light); transition:transform 0.3s ease; }
.faq-item.open .faq-header i { transform:rotate(-180deg); }
.faq-content { max-height:0; overflow:hidden; transition:max-height 0.4s ease; }
.faq-content p { padding:0 2rem 1.5rem; color:rgba(255,255,255,0.6); font-size:0.97rem; line-height:1.7; }

/* ============ ABOUT / STRATEGY SECTION ============ */
.split-layout { 
  display:grid; 
  grid-template-columns:1fr 1fr; 
  gap:5rem; 
  align-items:center; 
  max-width: 1100px; /* More contained for readability */
  margin: 0 auto;
}
.image-wrapper { position:relative; border-radius:20px; overflow:hidden; }

/* ============ FOOTER ============ */
.footer {
  border-top:1px solid var(--dark-border);
  padding:6rem 0 2rem;
  background:var(--dark-surface);
}
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr; gap:4rem; margin-bottom:4rem; }
.footer p { color:rgba(255,255,255,0.5); }
.footer-links h4 { font-size:1.1rem; margin-bottom:1.5rem; }
.footer-links li { margin-bottom:0.9rem; }
.footer-links a { color:rgba(255,255,255,0.5); font-size:0.95rem; }
.footer-links a:hover { color:var(--teal-light); }
.footer-brand { display: flex !important; flex-direction: column !important; align-items: flex-start !important; text-align: left !important; width: 100% !important; }
.footer-brand > a:first-child { margin-left: -115px !important; display: inline-block !important; width: fit-content !important; }
.footer-brand img { margin: 0 !important; display: block !important; }
.footer-bottom {
  border-top:1px solid var(--dark-border); padding-top:2rem;
  display:flex; justify-content:space-between; align-items:center;
  color:rgba(255,255,255,0.35); font-size:0.88rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position:fixed; bottom:2rem; right:2rem; z-index:999;
  width:60px; height:60px; border-radius:50%;
  background:var(--green-wa);
  display:flex; align-items:center; justify-content:center;
  font-size:1.8rem; color:#fff;
  box-shadow: 0 8px 30px rgba(37,211,102,0.5);
  transition:all 0.3s ease;
}
.whatsapp-float:hover { transform:scale(1.12) translateY(-4px); box-shadow:0 12px 40px rgba(37,211,102,0.65); }

/* ============ INSS DENIAL BANNER ============ */
.inss-denial-banner {
  background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1589829037471-205126896896?auto=format&fit=crop&q=80&w=1920');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--dark-border);
  border-bottom: 1px solid var(--dark-border);
}

.inss-denial-banner .container {
  max-width: 1000px;
}

.inss-denial-title {
  font-size: 3.8rem;
  color: #ff9900; /* Orange/Yellow from image */
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
  line-height: 1.1;
}

.inss-denial-subtitle {
  font-size: 1.9rem;
  color: #ffcc00; /* Yellow from image */
  margin-bottom: 2.5rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.inss-denial-text {
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.7;
  font-weight: 400;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
}

.inss-denial-text strong {
  font-weight: 700;
  color: #fff;
}

@media (max-width: 768px) {
  .inss-denial-banner { padding: 5rem 0; }
  .inss-denial-title { font-size: 2.5rem; }
  .inss-denial-subtitle { font-size: 1.4rem; }
  .inss-denial-text { font-size: 1.1rem; }
}

/* ============ CONTACT FORM ============ */
.contact-grid { display:grid; grid-template-columns:1fr 1.5fr; gap:4rem; }
.form-group { margin-bottom:1.5rem; }
.form-label { display:block; margin-bottom:0.7rem; font-family:var(--font-h); font-size:0.82rem; text-transform:uppercase; letter-spacing:0.1em; color:rgba(255,255,255,0.5); }
.form-control {
  width:100%; padding:1.1rem 1.3rem;
  background:rgba(255,255,255,0.04); border:1px solid var(--dark-border);
  border-radius:12px; color:#fff; font-family:var(--font-b); font-size:1rem;
  transition:all 0.25s ease;
}
.form-control:focus { outline:none; border-color:var(--teal); background:rgba(70,114,123,0.08); }
textarea.form-control { min-height:150px; resize:vertical; }
.alert { padding:1.2rem 1.5rem; border-radius:12px; margin-bottom:1.5rem; display:flex; align-items:center; gap:0.8rem; font-family:var(--font-h); }
.alert-success { background:rgba(37,211,102,0.1); border:1px solid rgba(37,211,102,0.3); color:#25d366; }
.alert-error { background:rgba(239,68,68,0.1); border:1px solid rgba(239,68,68,0.3); color:#ef4444; }

/* ============ PAGE HEADERS (Inner pages) ============ */
.page-header { 
  padding: 140px 0 70px; 
  text-align: center; 
  position: relative; 
  background: radial-gradient(circle at top, rgba(70, 114, 123, 0.1) 0%, transparent 60%);
}
.page-header-glow {
  position: absolute; 
  top: 0; left: 50%; 
  transform: translateX(-50%);
  width: 1000px; height: 500px;
  background: radial-gradient(ellipse at top, rgba(255, 204, 0, 0.04) 0%, transparent 70%);
  z-index: -1; 
  pointer-events: none;
}
.page-header .section-label {
  margin-bottom: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
}
.page-header .hero-title {
  font-size: 2.2rem; /* Compact and clean */
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
}
.page-header .hero-subtitle {
  font-size: 1rem; /* Minimalist */
  color: rgba(255, 255, 255, 0.5);
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .page-header { padding: 120px 0 50px; }
  .page-header .hero-title { font-size: 2.4rem; }
  .page-header .hero-subtitle { font-size: 1.05rem; }
}

/* ============ PROCESS SECTION ============ */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; margin-top:3rem; }
.process-card { padding:2.5rem 1.8rem; border-radius:24px; position:relative; overflow:hidden; transition: transform 0.3s ease; }
.process-card:hover { transform: translateY(-10px); }
.process-step-header { display:flex; align-items:center; gap:1.2rem; margin-bottom:2rem; }
.process-num { font-size:3.5rem; font-weight:800; color:#fff; font-family:var(--font-h); line-height:1; }
.process-line { height:2px; flex-grow:1; background: linear-gradient(to right, var(--teal-light), transparent); opacity: 0.3; }
.process-icon { font-size:2.2rem; color:var(--teal-light); margin-bottom:1.5rem; }
.process-card p { font-size:0.92rem; line-height:1.6; color:rgba(255,255,255,0.65); }

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

/* ============ TEAM COLLAGE ============ */
.team-collage { position:relative; height:550px; width:100%; }
.collage-item { position:absolute; border-radius:24px; overflow:hidden; border:6px solid var(--dark-surface); box-shadow:0 30px 60px rgba(0,0,0,0.6); transition: all 0.5s ease; }
.collage-item:hover { transform: scale(1.05); z-index:10 !important; }
.collage-item img { width:100%; height:100%; object-fit:cover; }

.c1 { top:0; left:0; width:300px; height:240px; z-index:1; }
.c2 { top:60px; right:0; width:320px; height:260px; z-index:2; }
.c3 { bottom:0; left:80px; width:340px; height:280px; z-index:3; }

@media (max-width:768px) {
  .team-collage { height:400px; margin-bottom:3rem; }
  .c1 { width:200px; height:160px; }
  .c2 { width:220px; height:180px; top:40px; }
  .c3 { width:240px; height:200px; bottom:20px; left:40px; }
}

/* ============ DIFFERENTIALS SECTION ============ */
.diff-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.diff-card { padding:3rem 2rem; text-align:center; transition:all 0.3s ease; }
.diff-card:hover { transform:translateY(-10px); background:rgba(255,255,255,0.05); }
.diff-icon { font-size:2.8rem; color:var(--teal-light); margin-bottom:1.5rem; }
.diff-card h3 { font-size:1.1rem; letter-spacing:0.1em; margin-bottom:1.2rem; color: #fff; }
.diff-card p { font-size:0.9rem; color:rgba(255,255,255,0.5); line-height:1.6; }

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

/* ============ TESTIMONIALS SECTION ============ */
.testimonial-layout { display:grid; grid-template-columns:300px 1fr; gap:3rem; align-items:flex-start; }
.google-summary { padding:3rem 2rem; text-align:center; border-radius:24px; border:1px solid rgba(255,255,255,0.1); }
.google-summary h3 { font-size:1.4rem; font-weight:800; margin-bottom:1rem; color:#fff; }
.google-summary .stars { color:#FBBC05; font-size:1.3rem; margin-bottom:1.5rem; }
.google-summary p { font-size:0.9rem; color:rgba(255,255,255,0.6); margin-bottom:2rem; }

.testimonial-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.testimonial-card { padding:2rem; border-radius:20px; border:1px solid rgba(255,255,255,0.05); transition:transform 0.3s ease; }
.testimonial-card:hover { transform:translateY(-10px); }
.test-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:1.5rem; }
.test-user { display:flex; align-items:center; gap:1rem; }
.user-avatar { width:45px; height:45px; border-radius:50%; background-size:cover; background-position:center; }
.test-user h4 { font-size:0.95rem; color:#fff; margin-bottom:0.2rem; }
.test-user span { font-size:0.75rem; color:rgba(255,255,255,0.4); }
.test-stars { color:#FBBC05; font-size:0.85rem; margin-bottom:1.2rem; display:flex; align-items:center; }
.testimonial-card p { font-size:0.88rem; line-height:1.6; color:rgba(255,255,255,0.7); font-style:italic; }

@media (max-width:1200px) {
  .testimonial-layout { grid-template-columns:1fr; }
  .google-summary { max-width:400px; margin:0 auto; }
}
@media (max-width:992px) {
  .testimonial-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .testimonial-grid { grid-template-columns:1fr; }
}

/* ============ FAQ SECTION ============ */
.faq-container { max-width: 900px; margin: 4rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border-radius: 16px !important; overflow: hidden; border: 1px solid rgba(255,255,255,0.05); transition: all 0.3s ease; }
.faq-header { width: 100%; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; background: none; border: none; color: #fff; font-size: 1.1rem; font-weight: 600; text-align: left; cursor: pointer; transition: all 0.3s ease; }
.faq-header:hover { background: rgba(255,255,255,0.03); color: var(--teal-light); }
.faq-header i { font-size: 0.9rem; transition: transform 0.3s ease; color: var(--teal-light); }
.faq-item.active .faq-header i { transform: rotate(45deg); }
.faq-content { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: rgba(0,0,0,0.2); }
.faq-content p { padding: 1.5rem 2rem; color: rgba(255,255,255,0.6); line-height: 1.8; font-size: 0.95rem; margin: 0; }
.faq-item.active { background: rgba(255,255,255,0.02); border-color: rgba(92, 140, 148, 0.3); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.faq-item.active .faq-content { max-height: 500px; }

/* ============ LABOR CTA BANNER ============ */
.labor-cta-banner { 
  position: relative; 
  padding: 5rem 0; 
  background: url('../assets/img/labor-banner-elite.png') center/cover no-repeat fixed;
  margin: 0;
  overflow: hidden;
  text-align: center;
}
.labor-cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(7, 7, 9, 0.85); /* Stronger dark overlay */
  z-index: 1;
}

.labor-cta-content { 
  position: relative; 
  z-index: 2; 
  max-width: 1000px; /* FULL WIDTH CONTENT */
  margin: 0 auto;
  padding: 0 2rem;
  background: none;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.labor-cta-content h2 { 
  font-size: 2rem; /* Much smaller */
  margin-bottom: 1rem; 
  line-height: 1.2; 
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.labor-cta-content p { 
  font-size: 1rem; 
  color: rgba(255, 255, 255, 0.6); 
  margin-bottom: 2rem; 
  font-weight: 400;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.labor-cta-content .btn {
  padding: 0.9rem 2.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .labor-cta-banner { padding: 4rem 0; }
  .labor-cta-content h2 { font-size: 1.5rem; }
}

/* ============ GENERAL CTA BANNER ============ */
.cta-banner {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--dark-surface);
  border: 1px solid var(--dark-border);
  border-radius: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #fff;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}

/* ============ MOBILE ============ */
@media (max-width:1100px) {
  .authority-grid { grid-template-columns:repeat(3,1fr); gap:2.5rem; }
  .authority-grid .auth-item:nth-child(4),
  .authority-grid .auth-item:nth-child(5) { grid-column: span 1; }
  .founder-layout { grid-template-columns:1fr; gap:3rem; }
  .office-grid { grid-template-columns:1fr; gap:3rem; }
  .trust-container { grid-template-columns:1fr; gap:3rem; }
  .contact-grid { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
  :root { --gap-xl:5rem; --gap-lg:3rem; }
  .hero-title { font-size:3rem; }
  .section-title { font-size:2.2rem; }
  .auth-number { font-size:2.5rem; }
  .authority-grid { grid-template-columns:repeat(2,1fr); }
  .services-grid { grid-template-columns:1fr; }
  .split-layout { grid-template-columns:1fr; gap:3rem; }
  .footer-grid { grid-template-columns:1fr; }
  .nav-links { display:none; }
  .mobile-menu-btn { display:block; }

  .nav-links.mobile-open {
    display:flex; flex-direction:column;
    position:fixed; top:0; left:0; right:0; bottom:0;
    background:rgba(7,7,9,0.98);
    align-items:center; justify-content:center;
    gap:2.5rem; z-index:999;
  }
  .nav-links.mobile-open a { font-size:1.4rem; }
}

@media (max-width:480px) {
  .authority-grid { grid-template-columns:1fr; }
  .hero-buttons { flex-direction:column; }
  .container { padding:0 1.2rem; }
}

/* ============ CTA INSS FIGHT ============ */
.cta-inss-fight {
    background: #0d0d0d;
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
    padding: var(--gap-lg) 0;
}

.btn-whatsapp-large {
    background: var(--green-wa);
    color: #fff;
    padding: 1.2rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.btn-whatsapp-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: #20ba5a;
    color: #fff;
}

.trust-badges-mini {
    display: flex;
    justify-content: center;
    gap: 3.5rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.badge-mini {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
}

.badge-mini i {
    font-size: 1.4rem;
    color: var(--teal-light);
}

@media (max-width: 768px) {
    .btn-whatsapp-large { font-size: 1.1rem; padding: 1rem 2rem; width: 100%; }
    .trust-badges-mini { gap: 2rem; }
}
