/* ============================================
   VIRTUS INVEST — Design System
   Luxury Financial Dark Theme
   ============================================ */

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif; background: var(--navy); color: var(--off-white); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- VARIABLES ---------- */
:root {
  --gold: #F49D19;
  --gold-light: #F7B84A;
  --gold-dark: #C47E10;
  --gold-glow: rgba(244, 157, 25, 0.15);
  --gold-border: rgba(244, 157, 25, 0.2);

  --navy: #0A0F1C;
  --navy-light: #111827;
  --navy-medium: #1A2236;
  --navy-surface: #141B2D;

  --white: #FFFFFF;
  --off-white: #E8E4DD;
  --gray: #8A8F9E;
  --gray-light: #B0B5C3;
  --border: rgba(255, 255, 255, 0.06);

  --font-heading: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1200px;
  --container-padding: 1.25rem;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 50px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 0 30px var(--gold-glow);

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- NOISE TEXTURE ---------- */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0.025;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- CONTAINER ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.15;
  color: var(--white);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.25rem, 3vw, 1.6rem); }
h4 { font-size: 1.125rem; }

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

p { color: var(--off-white); font-size: 1rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.925rem;
  letter-spacing: 0.02em;
  transition: var(--transition);
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(244, 157, 25, 0.25);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(244, 157, 25, 0.35);
}

.btn-outline {
  border: 1.5px solid var(--gold-border);
  color: var(--gold-light);
  background: rgba(244, 157, 25, 0.05);
}
.btn-outline:hover {
  background: rgba(244, 157, 25, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #20BD5A;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.btn-lg { padding: 1.05rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(10, 15, 28, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.7rem 0;
  background: rgba(10, 15, 28, 0.95);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
}
.navbar-logo img {
  height: 80px;
  width: auto;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.navbar-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-light);
  position: relative;
  letter-spacing: 0.01em;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: var(--gold);
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
}

.navbar-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 500;
}
.navbar-phone svg { width: 16px; height: 16px; color: var(--gold); }
.navbar-phone:hover { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--off-white);
  transition: var(--transition);
  border-radius: 2px;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(8,12,24,0.82) 0%, rgba(10,15,28,0.75) 30%, rgba(14,22,40,0.7) 60%, rgba(10,15,28,0.82) 100%),
    url('../images/hero-investment.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 15%; right: -5%;
  width: 500px; height: 500px;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  opacity: 0.3;
  animation: heroCircle 20s linear infinite;
}

@keyframes heroCircle {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero .container { position: relative; z-index: 1; }

.hero-content { max-width: 680px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(244, 157, 25, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--gray-light);
  margin-bottom: 2rem;
  max-width: 520px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ---------- DECORATIVE LINE ---------- */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

/* ---------- SECTIONS ---------- */
.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  position: relative;
}

.section-dark { background: var(--navy); }
.section-alt { background: var(--navy-light); }
.section-surface { background: var(--navy-surface); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-badge::before,
.section-badge::after {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold-border);
}

.section-header h2 { margin-bottom: 1rem; }

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ---------- TRUST STRIP ---------- */
.trust-strip {
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--navy-light);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 500;
}

.trust-item svg {
  width: 20px; height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item strong { color: var(--white); }

/* ---------- CARDS GRID ---------- */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

.cards-grid-3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark), transparent);
  opacity: 0;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 50px; height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 157, 25, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; color: var(--gold); }

.card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }

.card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.card-link svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.card-link:hover svg { transform: translateX(4px); }

/* ---------- STEPS (Como Funciona) ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-border), var(--gold), var(--gold-border), transparent);
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 70px; height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: var(--navy);
  border: 2px solid var(--gold-border);
  border-radius: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  position: relative;
  z-index: 2;
  transition: var(--transition);
}

.step:hover .step-number {
  background: rgba(244, 157, 25, 0.1);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.85rem; color: var(--gray); }

/* ---------- ABOUT PREVIEW ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-medium);
  border: 1px solid var(--border);
}

.about-image img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.about-image-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-surface), var(--navy-medium));
}
.about-image-placeholder svg { width: 80px; height: 80px; color: var(--gold-border); }

.about-image-badge {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(10, 15, 28, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
}
.about-image-badge svg { width: 16px; height: 16px; }

.about-content .section-badge { display: flex; }

.about-credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}

.about-credential {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem;
  background: rgba(244, 157, 25, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.about-credential svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.about-credential span { font-size: 0.85rem; color: var(--gray-light); font-weight: 500; }

/* ---------- STATS / NUMBERS ---------- */
.stats-section {
  background:
    radial-gradient(ellipse 80% 50% at 50% 50%, rgba(244, 157, 25, 0.04) 0%, transparent 60%),
    var(--navy);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { padding: 1.5rem; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
}

/* ---------- TESTIMONIALS ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}
.testimonial-stars svg { width: 18px; height: 18px; color: var(--gold); fill: var(--gold); }

.testimonial-text {
  font-size: 0.95rem;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(244, 157, 25, 0.12);
  border: 1px solid var(--gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.testimonial-name { font-size: 0.9rem; font-weight: 600; color: var(--white); }
.testimonial-role { font-size: 0.8rem; color: var(--gray); }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
  border-color: var(--gold-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  background: var(--navy-surface);
  transition: var(--transition);
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(244, 157, 25, 0.08);
  border: 1px solid var(--gold-border);
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; color: var(--gold); transition: transform 0.3s ease; }

.faq-item.active .faq-icon { background: rgba(244, 157, 25, 0.15); }
.faq-item.active .faq-icon svg { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--gray-light);
  font-size: 0.925rem;
  line-height: 1.75;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(244, 157, 25, 0.06) 0%, transparent 60%),
    var(--navy-light);
  border-top: 1px solid var(--gold-border);
  border-bottom: 1px solid var(--gold-border);
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--gray-light); margin-bottom: 2rem; font-size: 1.1rem; }

/* ---------- FOOTER ---------- */
.footer {
  padding: 4rem 0 0;
  background: var(--navy);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-brand span { color: var(--gold); }

.footer-desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--gray);
  transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(244, 157, 25, 0.08);
}
.footer-social a svg { width: 18px; height: 18px; }

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a,
.footer-contact-item span {
  font-size: 0.875rem;
  color: var(--gray);
}
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}
.footer-bottom a { color: var(--gold); }
.footer-bottom a:hover { text-decoration: underline; }

/* ---------- WHATSAPP FLOAT ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  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.35);
  z-index: 900;
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.45);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: #fff; }

/* ---------- PAGE HERO (subpages) ---------- */
.page-hero {
  padding: 8rem 0 3.5rem;
  background:
    radial-gradient(ellipse 60% 60% at 50% 30%, rgba(244, 157, 25, 0.04) 0%, transparent 50%),
    var(--navy);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { color: var(--gray); font-size: 1.1rem; max-width: 500px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

/* ---------- COMPARISON TABLE ---------- */
.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.comparison-table thead th {
  background: var(--navy-medium);
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  text-align: left;
  letter-spacing: 0.02em;
}

.comparison-table thead th:first-child { color: var(--gray); }
.comparison-table thead th.highlight-col { color: var(--gold); border-bottom: 2px solid var(--gold); }

.comparison-table tbody td {
  padding: 0.85rem 1.5rem;
  font-size: 0.9rem;
  color: var(--gray-light);
  border-bottom: 1px solid var(--border);
  background: var(--navy-surface);
}

.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table .check { color: var(--gold); font-weight: 700; }
.comparison-table .cross { color: #EF4444; }

/* ---------- CONTACT GRID ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info-card {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--gold-border); }

.contact-info-icon {
  width: 45px; height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 157, 25, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; color: var(--gold); }

.contact-info-card h4 { margin-bottom: 0.35rem; font-size: 1rem; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--gray); }
.contact-info-card a:hover { color: var(--gold); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.8) brightness(0.7) contrast(1.1); }

/* ---------- BLOG GRID ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.blog-card {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: var(--shadow-gold);
}

.blog-card-image {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy-medium), var(--navy-surface));
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.05); }
.blog-card-image svg { width: 48px; height: 48px; color: var(--gold-border); }

.post-hero-image {
  max-width: 760px;
  margin: 0 auto 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.post-hero-image img { width: 100%; height: auto; display: block; }

.blog-card-body { padding: 1.5rem; }

.blog-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.blog-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.blog-card h3 a:hover { color: var(--gold); }

.blog-excerpt {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
}
.blog-read-more svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.blog-read-more:hover svg { transform: translateX(4px); }

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- NAVBAR DROPDOWN ---------- */
.navbar-dropdown {
  position: relative;
}

.navbar-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  cursor: pointer;
}

.navbar-dropdown-trigger svg.chevron-down {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.navbar-dropdown:hover .navbar-dropdown-trigger svg.chevron-down,
.navbar-dropdown.open .navbar-dropdown-trigger svg.chevron-down {
  transform: rotate(180deg);
}

.navbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: rgba(20, 27, 45, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 1001;
  box-shadow: var(--shadow-lg);
}

.navbar-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 12px;
}

.navbar-dropdown:hover .navbar-dropdown-menu,
.navbar-dropdown.open .navbar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.navbar-dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.navbar-dropdown-menu a::after { display: none !important; }

.navbar-dropdown-menu a:hover {
  background: rgba(244, 157, 25, 0.08);
  color: var(--gold);
}

.navbar-dropdown-menu a svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
}

.navbar-dropdown-menu a:hover svg {
  opacity: 1;
}

/* ---------- SERVICE PAGE EXTRAS ---------- */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-feature-card {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.service-feature-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.service-feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  background: rgba(244, 157, 25, 0.08);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
}

.service-feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
}

.service-feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.service-feature-card p {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-highlight-box {
  background: linear-gradient(135deg, rgba(244, 157, 25, 0.06), rgba(244, 157, 25, 0.02));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
}

.service-highlight-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
}

.service-highlight-box p {
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.other-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.other-service-card {
  background: var(--navy-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
}

.other-service-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.other-service-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.other-service-card h4 {
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.other-service-card p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .service-features-grid { grid-template-columns: repeat(2, 1fr); }
  .other-services-grid { grid-template-columns: repeat(2, 1fr); }
  .cards-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  .navbar-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 15, 28, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 999;
  }
  .navbar-links.active { display: flex; }
  .navbar-links a { font-size: 1.25rem; }
  .navbar-phone { display: none; }
  .hamburger { display: flex; }

  .navbar-dropdown { width: 100%; text-align: center; }
  .navbar-dropdown-menu {
    position: static;
    transform: none;
    min-width: auto;
    width: 100%;
    background: rgba(20, 27, 45, 0.6);
    backdrop-filter: none;
    border: none;
    border-top: 1px solid var(--border);
    border-radius: 0;
    padding: 0.5rem 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    box-shadow: none;
    margin-top: 0.5rem;
  }
  .navbar-dropdown-menu::before { display: none; }
  .navbar-dropdown.open .navbar-dropdown-menu { display: block; }
  .navbar-dropdown-menu a { justify-content: center; font-size: 1rem; padding: 0.5rem 1rem; }
  .navbar-dropdown:hover .navbar-dropdown-menu { display: none; opacity: 1; visibility: visible; }
  .navbar-dropdown.open .navbar-dropdown-menu { display: block; }

  .service-features-grid { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr; }

  .hero-stats { flex-direction: column; gap: 1.5rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .cards-grid-3,
  .cards-grid-2 { grid-template-columns: 1fr; }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .steps-grid::before { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-image { max-height: 350px; }
  .about-credentials { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonials-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }

  .blog-grid { grid-template-columns: 1fr; }

  .trust-items { gap: 1.5rem; }
}

@media (max-width: 480px) {
  :root { --container-padding: 1rem; }
  .hero { padding: 6rem 0 3rem; }
  .hero-stats { gap: 1rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
}

/* ====== LOCALIZAÇÃO ====== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}

.location-map iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: 12px;
  border: 1px solid var(--gold-border);
  filter: grayscale(20%) brightness(0.85) contrast(1.1);
}

.location-info {
  background: var(--navy-surface);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  padding: 2rem;
}

.location-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gold-border);
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.location-item svg {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.location-item strong {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
}

.location-item span,
.location-item a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-decoration: none;
  transition: color 0.2s;
}

.location-item a:hover { color: var(--gold); }

.location-hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--gold-border);
}

.location-hours h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.location-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(244, 157, 25, 0.08);
}

.location-hours-row:last-child { border-bottom: none; }

@media (max-width: 900px) {
  .location-grid { grid-template-columns: 1fr; }
  .location-map iframe { height: 300px; }
}
