/* ============================================================
   GRUPO PADRÃO — GLOBAL STYLESHEET
   Versão 1.0 | Todos os direitos reservados
   ============================================================ */

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

:root {
  --black:       #0a0a0a;
  --dark:        #141414;
  --dark-2:      #1e1e1e;
  --dark-3:      #2a2a2a;
  --gold:        #C9A055;
  --gold-light:  #E2C07A;
  --gold-dark:   #9E7A35;
  --orange:      #E07B39;
  --orange-dark: #C0622A;
  --white:       #FFFFFF;
  --off-white:   #F8F6F2;
  --gray:        #888;
  --gray-light:  #CCCCCC;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 8px 40px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 30px rgba(201,160,85,0.25);
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.2;
  font-weight: 700;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto 3rem;
}
.text-gold { color: var(--gold); }
.text-orange { color: var(--orange); }
.text-center { text-align: center; }
.text-muted { color: var(--gray); }

/* ---- DECORATIVE LINE ---- */
.section-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--orange));
  margin: 0.8rem auto 1.5rem;
  border-radius: 2px;
}
.section-line.left { margin-left: 0; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(201,160,85,0.4);
}
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(224,123,57,0.3);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(224,123,57,0.5);
}
.btn-outline {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 35px rgba(37,211,102,0.45);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}
#header.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201,160,85,0.2);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: 50px;
  width: auto;
  filter: brightness(1);
  transition: var(--transition);
}
.nav-logo img:hover { filter: brightness(1.2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-light);
  transition: var(--transition);
  padding: 4px 0;
  letter-spacing: 0.3px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
  border-radius: 1px;
}
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { cursor: pointer; }
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark-2);
  border: 1px solid rgba(201,160,85,0.2);
  border-radius: var(--radius);
  padding: 12px 0;
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 0.88rem;
  color: var(--gray-light);
  transition: var(--transition);
}
.dropdown a:hover {
  color: var(--gold);
  background: rgba(201,160,85,0.08);
  padding-left: 28px;
}
.dropdown .sub-label {
  font-size: 0.75rem;
  color: var(--gray);
  padding: 8px 20px 4px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-cta { display: flex; align-items: center; gap: 1rem; }

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 100px 2rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-nav-links { display: flex; flex-direction: column; gap: 0.5rem; }
.mobile-nav-links a {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-nav-links a:hover { color: var(--gold); padding-left: 8px; }
.mobile-sub { padding-left: 1rem; }
.mobile-sub a { font-size: 0.95rem; color: var(--gray-light); }
.mobile-cta { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,160,85,0.12) 0%, transparent 70%),
              radial-gradient(ellipse at 0% 100%, rgba(224,123,57,0.08) 0%, transparent 60%),
              var(--black);
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,160,85,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,160,85,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 80px;
}
.hero-tagline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,160,85,0.1);
  border: 1px solid rgba(201,160,85,0.3);
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 2rem;
  animation: fadeInUp 0.6s ease both;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s 0.1s ease both;
}
.hero-title .highlight {
  background: linear-gradient(135deg, var(--gold), var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1.15rem;
  color: var(--gray-light);
  max-width: 580px;
  margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeInUp 0.6s 0.2s ease both;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.6s 0.3s ease both;
  margin-bottom: 4rem;
}

/* Orbit Animation */
.orbit-system {
  position: relative;
  width: 480px;
  height: 480px;
  margin: 0 auto;
  animation: fadeIn 1s 0.4s ease both;
}
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.orbit-center img {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  padding: 8px;
  background: var(--dark-2);
  border: 2px solid rgba(201,160,85,0.4);
  box-shadow: 0 0 40px rgba(201,160,85,0.2);
}
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(201,160,85,0.12);
}
.orbit-ring-1 { width: 240px; height: 240px; animation: spin 18s linear infinite; }
.orbit-ring-2 { width: 360px; height: 360px; animation: spin 28s linear infinite reverse; }
.orbit-ring-3 { width: 460px; height: 460px; animation: spin 40s linear infinite; }

.orbit-item {
  position: absolute;
  width: 72px;
  height: 72px;
  cursor: pointer;
  transition: var(--transition);
}
.orbit-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  background: var(--dark-2);
  border: 1.5px solid rgba(201,160,85,0.25);
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: var(--transition);
}
.orbit-item:hover img {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201,160,85,0.4);
  transform: scale(1.15);
}
.orbit-item .orbit-tooltip {
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-3);
  color: var(--gold);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.orbit-item:hover .orbit-tooltip { opacity: 1; }

/* Counter-rotate items so they stay upright */
.orbit-ring-1 .orbit-item { animation: counter-spin 18s linear infinite; }
.orbit-ring-2 .orbit-item { animation: counter-spin 28s linear infinite reverse; }
.orbit-ring-3 .orbit-item { animation: counter-spin 40s linear infinite; }

/* Positioning orbit items around rings */
.orbit-ring-1 .orbit-item:nth-child(1) { top: -36px; left: calc(50% - 36px); }
.orbit-ring-1 .orbit-item:nth-child(2) { bottom: -36px; left: calc(50% - 36px); }
.orbit-ring-2 .orbit-item:nth-child(1) { top: -36px; left: calc(50% - 36px); }
.orbit-ring-2 .orbit-item:nth-child(2) { right: -36px; top: calc(50% - 36px); }
.orbit-ring-2 .orbit-item:nth-child(3) { bottom: -36px; left: calc(50% - 36px); }
.orbit-ring-3 .orbit-item:nth-child(1) { top: -36px; left: calc(50% - 36px); }
.orbit-ring-3 .orbit-item:nth-child(2) { right: -36px; top: calc(50% - 36px); }
.orbit-ring-3 .orbit-item:nth-child(3) { bottom: -36px; left: calc(50% - 36px); }
.orbit-ring-3 .orbit-item:nth-child(4) { left: -36px; top: calc(50% - 36px); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border-top: 1px solid rgba(201,160,85,0.15);
  border-bottom: 1px solid rgba(201,160,85,0.15);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { padding: 1rem; }
.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.9rem;
  color: var(--gray-light);
  letter-spacing: 0.5px;
}

/* ============================================================
   ECOSYSTEM / EMPRESAS
   ============================================================ */
#ecosystem {
  background: var(--dark);
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.company-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.company-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,160,85,0.05), transparent);
  opacity: 0;
  transition: var(--transition);
}
.company-card:hover {
  border-color: rgba(201,160,85,0.4);
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}
.company-card:hover::before { opacity: 1; }
.company-logo-wrap {
  height: 90px;
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.company-logo-wrap img {
  max-height: 80px;
  max-width: 200px;
  object-fit: contain;
}
.company-card h3 {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.company-card p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.company-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  transition: var(--transition);
}
.company-card .card-link:hover { gap: 0.7rem; }
.company-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(224,123,57,0.1);
  border: 1px solid rgba(224,123,57,0.2);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}

/* ============================================================
   PORTFÓLIO
   ============================================================ */
#portfolio {
  background: var(--black);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.portfolio-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}
.portfolio-card:hover {
  border-color: rgba(201,160,85,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.portfolio-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(201,160,85,0.15), rgba(224,123,57,0.1));
  border: 1px solid rgba(201,160,85,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-icon {
  background: linear-gradient(135deg, rgba(201,160,85,0.25), rgba(224,123,57,0.2));
  border-color: var(--gold);
}
.portfolio-card h3 {
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.7rem;
}
.portfolio-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================================
   QUEM SOMOS
   ============================================================ */
#about {
  background: var(--dark);
  overflow: hidden;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 520px;
}
.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.about-image-badge .badge-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Playfair Display', serif;
  line-height: 1;
}
.about-image-badge .badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.about-text { padding: 1rem 0; }
.about-text p {
  color: var(--gray-light);
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.9;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.mvv-item {
  background: var(--dark-3);
  border: 1px solid rgba(201,160,85,0.15);
  border-radius: var(--radius);
  padding: 1.2rem;
  text-align: center;
}
.mvv-icon { font-size: 1.8rem; margin-bottom: 0.6rem; }
.mvv-item h4 {
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.mvv-item p { font-size: 0.8rem; color: var(--gray); line-height: 1.6; }

/* ============================================================
   SOBRE MIM
   ============================================================ */
#founder {
  background: linear-gradient(180deg, var(--black) 0%, var(--dark) 100%);
  overflow: hidden;
}
.founder-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 5rem;
  align-items: start;
}
.founder-photos {
  position: relative;
}
.founder-photo-main {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 580px;
  border: 2px solid rgba(201,160,85,0.2);
  box-shadow: var(--shadow);
}
.founder-photo-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--black);
  box-shadow: var(--shadow-gold);
  bottom: -20px;
  right: -20px;
}
.founder-info { padding-top: 1rem; }
.founder-name {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 0.3rem;
}
.founder-title {
  font-size: 0.9rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.founder-bio {
  color: var(--gray-light);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.founder-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 2rem 0;
}
.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}
.credential-icon {
  width: 32px;
  height: 32px;
  background: rgba(201,160,85,0.1);
  border: 1px solid rgba(201,160,85,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.credential-text h5 {
  font-size: 0.88rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.1rem;
}
.credential-text p { font-size: 0.8rem; color: var(--gray); }

/* ============================================================
   BLOG
   ============================================================ */
#blog {
  background: var(--dark);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.blog-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover {
  border-color: rgba(201,160,85,0.3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold);
}
.blog-card-header {
  padding: 2rem 2rem 1rem;
  background: linear-gradient(135deg, rgba(201,160,85,0.08), rgba(224,123,57,0.05));
}
.blog-category {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.8rem;
}
.blog-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.blog-card-body { padding: 1rem 2rem 1.5rem; }
.blog-card p {
  font-size: 0.87rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray);
}
.blog-read-more {
  color: var(--gold);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 0.6rem; }

/* ============================================================
   DEPOIMENTOS
   ============================================================ */
#testimonials {
  background: var(--black);
  overflow: hidden;
}
.testimonials-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  border-color: rgba(201,160,85,0.3);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--gold);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.testimonial-text {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--orange));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.author-info h5 {
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--white);
}
.author-info p { font-size: 0.8rem; color: var(--gray); }

/* ============================================================
   CONTATO
   ============================================================ */
#contact {
  background: var(--dark);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 1rem; }
.contact-info p { color: var(--gray-light); font-size: 0.98rem; line-height: 1.8; margin-bottom: 2rem; }
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.contact-channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  transition: var(--transition);
  text-decoration: none;
}
.contact-channel:hover {
  border-color: rgba(201,160,85,0.3);
  transform: translateX(6px);
}
.contact-channel-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-channel-icon.whatsapp { background: rgba(37,211,102,0.15); }
.contact-channel-icon.phone { background: rgba(201,160,85,0.15); }
.contact-channel-icon.email { background: rgba(224,123,57,0.15); }
.contact-channel h5 {
  font-size: 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-channel span {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}
.contact-form {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-light);
  margin-bottom: 0.4rem;
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white);
  font-size: 0.9rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,160,85,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark-3); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ============================================================
   MAP
   ============================================================ */
.map-section {
  background: var(--black);
  padding: 60px 0 0;
}
.map-wrap {
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  height: 380px;
  border: 1px solid rgba(201,160,85,0.15);
  border-bottom: none;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(30%) invert(5%); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(201,160,85,0.15);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand img { height: 55px; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.footer-social {
  display: flex;
  gap: 0.7rem;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.social-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-size: 0.85rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.footer-contact-item span:first-child { font-size: 0.9rem; margin-top: 2px; }
.footer-contact-item span:last-child { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray); }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  animation: floatPulse 2.5s ease-in-out infinite;
}
.whatsapp-float a {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 30px rgba(37,211,102,0.5);
  transition: var(--transition);
  color: white;
  text-decoration: none;
}
.whatsapp-float a:hover {
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.6);
}
.whatsapp-float-label {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-2);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(37,211,102,0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.whatsapp-float:hover .whatsapp-float-label { opacity: 1; }

/* ============================================================
   INNER PAGES — COMPANY / BLOG / LEGAL
   ============================================================ */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: 140px 0 60px;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,160,85,0.1) 0%, transparent 70%),
              var(--dark);
  border-bottom: 1px solid rgba(201,160,85,0.1);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); margin-bottom: 0.5rem; }
.page-hero .page-subtitle {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin-top: 1rem;
  line-height: 1.8;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--gray); }

/* Company Page */
.company-hero-logo {
  height: 100px;
  margin-bottom: 2rem;
  object-fit: contain;
}
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}
.service-item {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: var(--transition);
}
.service-item:hover {
  border-color: rgba(201,160,85,0.3);
  transform: translateY(-3px);
}
.service-item h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.service-item p { font-size: 0.85rem; color: var(--gray); line-height: 1.7; }
.feature-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  padding: 4px 12px;
  border-radius: 50px;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
}
.cta-banner {
  background: linear-gradient(135deg, var(--dark-2), var(--dark-3));
  border: 1px solid rgba(201,160,85,0.2);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  margin-top: 4rem;
}
.cta-banner h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.cta-banner p { color: var(--gray-light); margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Blog Article */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0;
}
.article-content h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  color: var(--gold);
}
.article-content h3 {
  font-size: 1.2rem;
  margin: 2rem 0 0.8rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.article-content p {
  color: var(--gray-light);
  line-height: 1.9;
  margin-bottom: 1.2rem;
  font-size: 0.98rem;
}
.article-content ul, .article-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.article-content li {
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.article-meta span { font-size: 0.82rem; color: var(--gray); }
.article-meta strong { color: var(--gold); }
.article-tag {
  background: rgba(201,160,85,0.1);
  border: 1px solid rgba(201,160,85,0.2);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--gold);
}

/* Legal pages */
.legal-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 0 80px;
}
.legal-content h2 {
  font-size: 1.3rem;
  color: var(--gold);
  margin: 2.5rem 0 1rem;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
}
.legal-content p, .legal-content li {
  color: var(--gray-light);
  font-size: 0.93rem;
  line-height: 1.9;
  margin-bottom: 0.9rem;
}
.legal-content ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content li { list-style: disc; }

/* ============================================================
   ANIMATIONS & KEYFRAMES
   ============================================================ */
@keyframes spin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@keyframes counter-spin { to { transform: rotate(-360deg); } }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes floatPulse {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .founder-grid { grid-template-columns: 1fr; }
  .about-image img { height: 360px; }
  .about-image-badge { right: 0; bottom: -15px; }
  .founder-photos { max-width: 400px; }
  .founder-photo-main { height: 460px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .orbit-system { width: 320px; height: 320px; }
  .orbit-center img { width: 90px; height: 90px; }
  .orbit-ring-1 { width: 160px; height: 160px; }
  .orbit-ring-2 { width: 240px; height: 240px; }
  .orbit-ring-3 { width: 310px; height: 310px; }
  .orbit-item { width: 52px; height: 52px; }
  .orbit-ring-1 .orbit-item { top: -26px; left: calc(50% - 26px); }
  .orbit-ring-1 .orbit-item:nth-child(2) { bottom: -26px; left: calc(50% - 26px); }
  .orbit-ring-2 .orbit-item:nth-child(2) { right: -26px; top: calc(50% - 26px); }
  .orbit-ring-2 .orbit-item:nth-child(3) { bottom: -26px; left: calc(50% - 26px); }
  .orbit-ring-3 .orbit-item { top: -26px; }
  .orbit-ring-3 .orbit-item:nth-child(2) { right: -26px; top: calc(50% - 26px); }
  .orbit-ring-3 .orbit-item:nth-child(3) { bottom: -26px; }
  .orbit-ring-3 .orbit-item:nth-child(4) { left: -26px; top: calc(50% - 26px); }
  .mvv-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-bottom-links { justify-content: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .orbit-system { width: 260px; height: 260px; }
  .orbit-ring-3 { width: 255px; height: 255px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { padding: 1.5rem; }
}
