/* ═══════════════════════════════════════════════════════════
   ROGÉRIO SOUZA — index.css (homepage específico)
   ═══════════════════════════════════════════════════════════ */

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(201,168,76,.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(12,32,68,.8) 0%, transparent 50%),
    linear-gradient(135deg, #05101f 0%, #07152b 40%, #0c2044 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.3), transparent);
  animation: float-particle linear infinite;
}
.particle.p1 { width: 400px; height: 400px; top: -100px; right: 5%; opacity: .4; animation-duration: 20s; }
.particle.p2 { width: 200px; height: 200px; bottom: 10%; left: 10%; opacity: .2; animation-duration: 15s; animation-delay: -5s; }
.particle.p3 { width: 100px; height: 100px; top: 30%; right: 30%; opacity: .15; animation-duration: 12s; animation-delay: -8s; }
.particle.p4 { width: 60px; height: 60px; top: 60%; left: 40%; opacity: .2; animation-duration: 18s; animation-delay: -2s; }
@keyframes float-particle {
  0%, 100% { transform: translateY(0) scale(1); }
  33% { transform: translateY(-30px) scale(1.05); }
  66% { transform: translateY(20px) scale(.95); }
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 80px;
  align-items: center;
  padding-top: 80px;
}
.hero-credential {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.hero-credential img { height: 36px; border-radius: 6px; background: white; padding: 3px; }
.hero-credential span { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .05em; }
.hero-h1 {
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 900;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--gold2);
  font-weight: 400;
}
.hero-h1-sub {
  display: block;
  font-size: .65em;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: .02em;
}
.hero-lead {
  font-size: 17px;
  color: rgba(255,255,255,.7);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-btn-wa {
  background: #25D366 !important;
  color: white !important;
}
.hero-btn-wa:hover {
  background: #1ebd5a !important;
  box-shadow: 0 8px 30px rgba(37,211,102,.4) !important;
}

/* Stats hero */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stat-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(201,168,76,.4);
  transform: translateY(-2px);
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--gold2);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.3);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  z-index: 2;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,.5));
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Ticker ──────────────────────────────────────────────── */
.ticker-bar {
  background: var(--gold);
  overflow: hidden;
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker-move 30s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  padding: 0 48px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .05em;
  flex-shrink: 0;
}
@keyframes ticker-move {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Serviços ────────────────────────────────────────────── */
.services-section { background: var(--cream); }
.section-header { margin-bottom: 60px; }
.section-lead { font-size: 18px; color: var(--muted); max-width: 600px; margin: 16px auto 0; line-height: 1.7; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.service-item {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: white;
  text-decoration: none;
  color: var(--text);
  transition: var(--transition);
  position: relative;
  gap: 16px;
}
.service-item:hover {
  background: var(--navy);
  color: white;
  z-index: 2;
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(7,21,43,.3);
}
.service-item:hover h3 { color: var(--gold2); }
.service-item:hover p { color: rgba(255,255,255,.7); }
.service-item:hover .service-num { color: rgba(255,255,255,.2); }
.service-item:hover .service-arrow { color: var(--gold); }
.service-item--featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  color: white;
}
.service-item--featured h3 { color: var(--gold2); }
.service-item--featured p { color: rgba(255,255,255,.7); }
.service-item--featured .service-num { color: rgba(255,255,255,.15); }
.service-item--featured:hover { background: linear-gradient(135deg, #0c2044, #112a55); }
.service-item--gold {
  background: linear-gradient(135deg, #faf5e6, #fff8e8);
  border-color: rgba(201,168,76,.3);
}
.service-item--gold:hover { background: #c9a84c; }
.service-item--gold:hover h3 { color: white; }
.service-item--gold:hover p { color: rgba(255,255,255,.8); }
.service-icon { font-size: 32px; line-height: 1; flex-shrink: 0; }
.service-content { flex: 1; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: rgba(7,21,43,.06);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.service-item--featured .service-icon { font-size: 48px; margin-top: 4px; }
.service-content h3 { font-size: 20px; margin-bottom: 10px; color: inherit; }
.service-content p { font-size: 14px; line-height: 1.65; color: var(--muted); }
.service-arrow {
  font-size: 20px;
  color: var(--gold);
  align-self: center;
  transition: var(--transition);
  flex-shrink: 0;
}
.service-item:hover .service-arrow { transform: translateX(6px); }
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.service-tags span {
  font-size: 11px;
  padding: 4px 10px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 999px;
  color: var(--gold2);
  font-weight: 600;
}

/* ── AIMA Section ────────────────────────────────────────── */
.aima-section {
  background: linear-gradient(135deg, #07152b 0%, #0c2044 100%);
  padding: 100px 0;
  color: white;
  position: relative;
  overflow: hidden;
}
.aima-section::before {
  content: '⚖';
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 400px;
  opacity: .03;
  line-height: 1;
}
.aima-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.aima-content h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 20px; }
.aima-content p { color: rgba(255,255,255,.7); font-size: 17px; line-height: 1.75; margin-bottom: 36px; }
.aima-stats { display: flex; flex-direction: column; gap: 20px; }
.aima-stat {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
}
.aima-stat strong {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold2);
  white-space: nowrap;
  min-width: 100px;
}
.aima-stat span { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.5; }

.aima-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px;
  overflow: hidden;
}
.aima-card-header {
  background: rgba(201,168,76,.1);
  border-bottom: 1px solid rgba(201,168,76,.2);
  padding: 16px 24px;
}
.aima-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold2);
}
.aima-card-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.law-item { padding: 16px; background: rgba(255,255,255,.03); border-radius: 8px; border-left: 3px solid var(--gold); }
.law-ref {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.law-item p { font-size: 14px; color: rgba(255,255,255,.65); line-height: 1.55; margin: 0; }

/* ── Curiosidades ────────────────────────────────────────── */
.curiosidades-section { background: white; }
.curio-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.curio-card { border-radius: 12px; overflow: hidden; transition: var(--transition); }
.curio-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.curio-card--large {
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: white;
}
.curio-img { height: 240px; background-size: cover; background-position: center; }
.curio-img--1 {
  background-image: linear-gradient(rgba(7,21,43,.2), rgba(7,21,43,.6)),
    url('https://images.unsplash.com/photo-1555881400-74d7acaacd8b?auto=format&fit=crop&w=900&q=80');
}
.curio-body { padding: 28px; flex: 1; }
.curio-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.curio-body h3 { font-size: 22px; color: white; margin-bottom: 12px; line-height: 1.3; }
.curio-body p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; }
.curio-stack { display: flex; flex-direction: column; gap: 12px; }
.curio-card--sm {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream);
  border: 1px solid var(--line);
}
.curio-icon { font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.curio-card--sm h4 { font-size: 15px; color: var(--navy); margin-bottom: 4px; }
.curio-card--sm p { font-size: 13px; color: var(--muted); line-height: 1.55; }

.direitos-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--line);
}
.direito-item { padding: 28px; border-radius: 8px; background: var(--cream); border: 1px solid var(--line); }
.direito-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 900;
  color: rgba(7,21,43,.08);
  margin-bottom: 12px;
}
.direito-item h4 { font-size: 15px; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.direito-item p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ── Notícias ─────────────────────────────────────────────── */
.news-section { background: var(--cream); }
.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.news-header h2 { margin: 0; }
.news-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 320px;
  gap: 24px;
}
.news-card--featured {
  background: var(--navy);
  border-radius: 12px;
  padding: 36px;
  color: white;
}
.news-cat {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,.12);
  border: 1px solid rgba(201,168,76,.25);
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.news-card--featured h3 { font-size: 24px; color: white; margin-bottom: 14px; line-height: 1.3; }
.news-card--featured p { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.75; }
.news-meta { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; }
.news-date { font-size: 12px; color: rgba(255,255,255,.35); }
.news-link { color: var(--gold); font-weight: 700; font-size: 14px; }
.news-column { display: flex; flex-direction: column; gap: 16px; }
.news-card--sm {
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 20px;
  flex: 1;
  transition: var(--transition);
}
.news-card--sm:hover { border-color: rgba(201,168,76,.3); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.news-cat--sm { font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 8px; }
.news-card--sm h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; line-height: 1.35; }
.news-card--sm p { font-size: 13px; color: var(--muted); line-height: 1.6; margin-bottom: 10px; }
.news-link-sm { font-size: 12px; font-weight: 700; color: var(--gold); }
.news-links-panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
}
.news-links-panel h4 { font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.ext-links { display: flex; flex-direction: column; gap: 10px; }
.ext-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: var(--cream);
  border: 1px solid var(--line);
  color: var(--text);
  transition: var(--transition);
}
.ext-link:hover { border-color: var(--gold); background: #faf7ee; }
.ext-icon { font-size: 20px; flex-shrink: 0; }
.ext-link strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); }
.ext-link span { font-size: 11px; color: var(--muted); }

/* ── Steps ────────────────────────────────────────────────── */
.steps-section { background: var(--navy); color: white; }
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.steps-text h2 { font-size: clamp(28px, 4vw, 44px); color: white; margin-bottom: 16px; }
.steps-text p { color: rgba(255,255,255,.65); font-size: 17px; line-height: 1.75; }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 42px;
  font-weight: 900;
  color: rgba(201,168,76,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.step:hover .step-num { color: var(--gold); transition: var(--transition); }
.step-content h4 { font-size: 17px; color: var(--gold2); margin-bottom: 6px; }
.step-content p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ── Testemunhos ──────────────────────────────────────────── */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 36px; }
.testimonial {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  transition: var(--transition);
}
.testimonial:hover { border-color: rgba(201,168,76,.3); box-shadow: var(--shadow-sm); }
.testimonial-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial p { font-size: 15px; font-family: 'Crimson Pro', serif; font-style: italic; color: #2a3344; line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-author span { font-size: 12px; color: var(--muted); }
.video-cta { text-align: center; }

/* ── Contacto ─────────────────────────────────────────────── */
.contact-section { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
.contact-info h2 { font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 12px; }
.contact-info > p { color: var(--muted); font-size: 16px; line-height: 1.7; margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 12px; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  transition: var(--transition);
}
.contact-item:hover { border-color: rgba(201,168,76,.3); transform: translateX(4px); }
.contact-item--wa { border-color: rgba(37,211,102,.3); background: #f0fff4; }
.contact-item--wa:hover { border-color: #25D366; }
.contact-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.contact-item span { font-size: 14px; color: var(--muted); }
.credentials-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 20px;
}
.credentials-bar img { height: 40px; border-radius: 6px; }
.cred-text strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); }
.cred-text span { font-size: 12px; color: var(--muted); }

/* Form */
.contact-form-wrap {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 24px; margin-bottom: 28px; color: var(--navy); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  transition: var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  background: white;
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--muted); text-align: center; margin-top: 12px; line-height: 1.6; }

/* ── Reveal animation ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsividade homepage ─────────────────────────────── */
@media (max-width: 1200px) {
  .hero-content { gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-item--featured { grid-column: span 2; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-links-panel { display: none; }
  .aima-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .curio-grid { grid-template-columns: 1fr; }
  .direitos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-item--featured { grid-column: span 1; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .news-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .direitos-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 36px; }
  .contact-form-wrap { padding: 24px; }
  .curio-stack { gap: 10px; }
}

/* ── Weather Bar ─────────────────────────────────────────── */
.weather-bar {
  background: white;
  border-bottom: 1px solid var(--line);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(7,21,43,.06);
}
.weather-bar-inner {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.weather-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  flex: 1;
  min-width: 160px;
}
.weather-divider {
  width: 1px;
  height: 40px;
  background: var(--line);
  flex-shrink: 0;
}
.weather-icon-el { font-size: 32px; }

/* ── Vistos Section ──────────────────────────────────────── */
.vistos-section { background: var(--cream); }
.vistos-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
  margin-top: 48px;
}
.visto-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.visto-card:hover {
  border-color: rgba(201,168,76,.4);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.visto-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--navy);
  color: var(--gold2);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 900;
  border-radius: 10px;
}
.visto-card h3 { font-size: 17px; color: var(--navy); line-height: 1.3; }
.visto-card p { font-size: 14px; color: var(--muted); line-height: 1.7; flex: 1; }

/* ── Team Section ────────────────────────────────────────── */
.team-section { background: white; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 40px 0;
}
.team-photo-wrap { border-radius: 12px; overflow: hidden; position: relative; }
.team-photo { width: 100%; height: 380px; object-fit: cover; display: block; }
.team-photo-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(7,21,43,.8));
  color: white;
  padding: 20px 20px 16px;
  font-size: 14px;
  font-weight: 600;
}
.team-info {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.team-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.team-info-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.team-info-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-info-item span { font-size: 13px; color: var(--muted); line-height: 1.5; }

/* ── Sobre Advogado Homepage ─────────────────────────────── */
.sobre-adv-section { background: var(--cream); }
.sobre-adv-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
}
.sobre-adv-foto { display: flex; flex-direction: column; gap: 16px; }
.sobre-adv-foto-inner {
  background: linear-gradient(135deg, var(--navy), var(--navy2));
  border-radius: 16px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 120px;
  color: rgba(255,255,255,.1);
  position: relative;
  overflow: hidden;
}
.sobre-adv-foto-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(7,21,43,.6));
}
.sobre-adv-foto-placeholder { position: relative; z-index: 2; }
.sobre-adv-cred {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
}
.sobre-adv-cred img { height: 36px; border-radius: 6px; flex-shrink: 0; }
.sobre-adv-cred strong { display: block; font-size: 14px; font-weight: 800; color: var(--navy); }
.sobre-adv-cred span { font-size: 12px; color: var(--muted); line-height: 1.4; }
.sobre-adv-texto h2 { font-size: clamp(28px, 3.5vw, 44px); margin-bottom: 12px; }
.sobre-adv-lead { font-size: 18px; color: var(--navy); font-family: 'Cormorant Garamond', serif; font-style: italic; line-height: 1.6; margin-bottom: 20px; }
.sobre-adv-texto p { font-size: 15px; color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.sobre-adv-texto p:last-of-type { font-style: italic; color: var(--navy); border-left: 3px solid var(--gold); padding-left: 16px; }
.sobre-adv-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.sobre-adv-stats div { text-align: center; }
.sobre-adv-stats strong { display: block; font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 900; color: var(--gold); }
.sobre-adv-stats span { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; }

/* ── Responsividade novos elementos ─────────────────────── */
@media (max-width: 1200px) {
  .vistos-grid { grid-template-columns: 1fr 1fr; }
  .sobre-adv-grid { grid-template-columns: 1fr; }
  .sobre-adv-foto { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
  .sobre-adv-foto-inner { display: none; }
  .team-info { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .weather-bar-inner { gap: 8px; }
  .weather-item { padding: 8px 16px; min-width: 140px; }
  .vistos-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .team-photo { height: 280px; }
  .sobre-adv-foto { grid-template-columns: 1fr 1fr; }
  .sobre-adv-stats { grid-template-columns: 1fr 1fr; }
  .team-info { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .weather-item { min-width: 100%; border-bottom: 1px solid var(--line); padding-bottom: 12px; }
  .weather-divider { display: none; }
  .sobre-adv-foto { grid-template-columns: 1fr; }
  .team-info { grid-template-columns: 1fr; }
}

/* ── Vídeos de depoimento ────────────────────────────────── */
.videos-depoimento { margin-top: 36px; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}
.video-card-thumb {
  position: relative;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: var(--navy);
}
.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.video-card-thumb:hover img { transform: scale(1.05); }
.video-card-thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7,21,43,.1), rgba(7,21,43,.6));
}
.video-play {
  position: absolute;
  z-index: 2;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 52px; height: 52px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
  transition: transform .2s, box-shadow .2s;
}
.video-card-thumb:hover .video-play {
  transform: translate(-50%,-50%) scale(1.15);
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.video-label {
  position: absolute;
  z-index: 2;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 600;
  color: white;
}

/* Nav logo maior */
.nav-logo img {
  height: 62px !important;
  border-radius: 10px;
}

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

/* ── Foto real Dr. Rogério ───────────────────────────────── */
.sobre-adv-foto-real {
  padding: 0 !important;
  overflow: hidden;
  border-radius: 16px;
}
.sobre-adv-foto-real img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
/* Foto retrato na galeria — ajustar para não cortar */
.team-photo--portrait {
  object-fit: cover;
  object-position: center;
}

/* ── Galeria 3 fotos ─────────────────────────────────────── */
.team-grid--3 {
  grid-template-columns: 1.3fr 1fr 1fr !important;
}
.team-grid--3 .team-photo-wrap:first-child .team-photo {
  height: 340px;
  object-position: center;
}
.team-grid--3 .team-photo--portrait {
  height: 340px;
  object-fit: cover;
  object-position: center top;
}

/* ── Placeholders de vídeo ───────────────────────────────── */
.video-card-placeholder { cursor: pointer; }
.video-placeholder-bg {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.video-ph-1 { background: linear-gradient(135deg, #07152b 0%, #1a3a6b 100%); }
.video-ph-2 { background: linear-gradient(135deg, #0c1f3a 0%, #c9a84c22 100%), linear-gradient(135deg,#07152b,#0c2044); }
.video-ph-3 { background: linear-gradient(135deg, #0a1f3a 0%, #1a3a5a 100%); }
.video-ph-icon { font-size: 48px; opacity: .5; }
.video-ph-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
}

/* Nota: quando tiver links YouTube reais, substituir os placeholders
   por: <img src="URL_THUMBNAIL_YOUTUBE"> */

@media (max-width: 900px) {
  .team-grid--3 {
    grid-template-columns: 1fr !important;
  }
}

/* ── Ticker dentro do Hero ───────────────────────────────── */
.hero-ticker-inner {
  position: absolute;
  bottom: 90px;
  left: 0; right: 0;
  z-index: 3;
  background: var(--gold);
  overflow: hidden;
  padding: 11px 0;
}
.hero-ticker-inner .ticker-track span {
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 0 40px;
  flex-shrink: 0;
}

/* ── 5.º stat card — largo ───────────────────────────────── */
.stat-card--wide {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(201,168,76,.15), rgba(201,168,76,.05)) !important;
  border-color: rgba(201,168,76,.4) !important;
}
.stat-card--wide .stat-num { color: var(--gold2); }

/* ── Logos OA/OAB nos stats ─────────────────────────────── */
.stat-card--logos {
  grid-column: span 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 16px 20px !important;
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(255,255,255,.1) !important;
}
.stat-card--logos img {
  height: 36px;
  border-radius: 6px;
  background: white;
  padding: 3px;
  flex-shrink: 0;
}
.stat-oa-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.stat-oa-text span {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
  letter-spacing: .05em;
}

/* Nav logo maior */
.nav-logo img {
  height: 78px !important;
  border-radius: 12px;
}
.nav-logo-text strong {
  font-size: 24px !important;
  letter-spacing: .01em;
}
.nav-logo-text span {
  font-size: 11px;
  letter-spacing: .15em;
}

/* Hero-scroll sobe para não sobrepor ticker */
.hero-scroll {
  bottom: 126px !important;
}

/* Ticker externo abaixo do hero — pode manter mas fica secundário */
.ticker-bar {
  background: #f5f0e8;
}
.ticker-bar .ticker-track span {
  color: var(--navy) !important;
}

@media (max-width: 900px) {
  .stat-card--wide, .stat-card--logos { grid-column: span 2; }
  .hero-ticker-inner { bottom: 80px; }
}
