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

    :root {
      --navy: #0F1B2D;
      --navy-mid: #1E3A5F;
      --gold: #C9A96E;
      --gold-light: #E8D5B0;
      --teal: #2A9D8F;
      --bg-light: #FAFBFC;
      --bg-section: #F0F2F5;
      --text-dark: #1C2A3A;
      --text-body: #3D4F63;
      --text-muted: #7F8C9B;
      --white: #FFFFFF;
      --shadow-sm: 0 1px 3px rgba(15,27,45,0.06);
      --shadow-md: 0 4px 20px rgba(15,27,45,0.08);
      --shadow-lg: 0 8px 40px rgba(15,27,45,0.12);
      --radius: 10px;
      --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-body);
      background: var(--bg-light);
      line-height: 1.7;
      font-size: 16px;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      font-family: 'DM Serif Display', 'Noto Sans SC', Georgia, serif;
      color: var(--text-dark);
      line-height: 1.2;
    }

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

    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Header ────────────────────────────────────────── */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(15, 27, 45, 0.95);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(201,169,110,0.15);
      transition: var(--transition);
    }

    .header.scrolled {
      background: rgba(15, 27, 45, 0.98);
      box-shadow: 0 2px 20px rgba(0,0,0,0.2);
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    /* ── EDITAR: ajuste height para redimensionar a logo ── */
    .logo-img {
      height: 54px;
      width: auto;
      object-fit: contain;
    }

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

    .nav { display: flex; align-items: center; gap: 32px; }

    .nav-links {
      display: flex;
      gap: 28px;
    }

    .nav-links a {
      color: rgba(255,255,255,0.75);
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: var(--transition);
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1.5px;
      background: var(--gold);
      transition: var(--transition);
    }

    .nav-links a:hover { color: var(--white); }
    .nav-links a:hover::after { width: 100%; }

    .lang-switch {
      display: flex;
      border: 1px solid rgba(201,169,110,0.3);
      border-radius: 6px;
      overflow: hidden;
    }

    .lang-btn {
      background: none;
      border: none;
      color: rgba(255,255,255,0.6);
      font-size: 12px;
      font-weight: 600;
      padding: 6px 12px;
      cursor: pointer;
      transition: var(--transition);
      font-family: 'Inter', 'Noto Sans SC', sans-serif;
    }

    .lang-btn:hover { color: var(--white); }

    .lang-btn.active {
      background: var(--gold);
      color: var(--navy);
    }

    .lang-btn + .lang-btn {
      border-left: 1px solid rgba(201,169,110,0.3);
    }

    /* Mobile menu */
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      margin: 5px 0;
      transition: var(--transition);
    }

    /* ── Hero ──────────────────────────────────────────── */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%; right: -20%;
      width: 800px; height: 800px;
      background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%; left: -10%;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(42,157,143,0.06) 0%, transparent 70%);
      border-radius: 50%;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content { padding: 40px 0; }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 24px;
    }

    .hero-eyebrow::before {
      content: '';
      width: 32px; height: 1.5px;
      background: var(--gold);
    }

    .hero h1 {
      font-size: clamp(36px, 5vw, 56px);
      color: var(--white);
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .hero h1 .highlight {
      color: var(--gold);
      font-style: italic;
    }

    .hero-description {
      font-size: 18px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 40px;
      max-width: 520px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--navy);
      font-weight: 600;
      font-size: 15px;
      padding: 16px 36px;
      border-radius: 8px;
      transition: var(--transition);
      letter-spacing: 0.5px;
    }

    .hero-cta:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 6px 24px rgba(201,169,110,0.3);
    }

    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .globe-graphic {
      width: 400px; height: 400px;
      border-radius: 50%;
      border: 1.5px solid rgba(201,169,110,0.2);
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: spin-slow 60s linear infinite;
    }

    @keyframes spin-slow { to { transform: rotate(360deg); } }

    .globe-graphic::before {
      content: '';
      width: 80%; height: 80%;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.12);
      position: absolute;
    }

    .globe-graphic::after {
      content: '';
      width: 60%; height: 60%;
      border-radius: 50%;
      border: 1px solid rgba(42,157,143,0.15);
      position: absolute;
    }

    .globe-center {
      width: 120px; height: 120px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(201,169,110,0.15), rgba(42,157,143,0.1));
      display: flex;
      align-items: center;
      justify-content: center;
      animation: spin-slow 60s linear infinite reverse;
    }

    .globe-center svg {
      width: 48px; height: 48px;
      fill: var(--gold);
      opacity: 0.7;
    }

    .orbit-dot {
      position: absolute;
      width: 10px; height: 10px;
      background: var(--gold);
      border-radius: 50%;
      box-shadow: 0 0 12px rgba(201,169,110,0.4);
    }

    .orbit-dot:nth-child(2) { top: 10%; left: 50%; }
    .orbit-dot:nth-child(3) { top: 50%; right: 5%; }
    .orbit-dot:nth-child(4) { bottom: 15%; left: 20%; }

    /* ── Section Common ───────────────────────────────── */
    .section {
      padding: 100px 0;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .section-label::before {
      content: '';
      width: 24px; height: 1.5px;
      background: var(--gold);
    }

    .section-title {
      font-size: clamp(28px, 4vw, 42px);
      margin-bottom: 20px;
      letter-spacing: -0.3px;
    }

    .section-subtitle {
      font-size: 17px;
      color: var(--text-muted);
      max-width: 620px;
      line-height: 1.8;
    }

    .section-header {
      margin-bottom: 60px;
    }

    .section-header.center {
      text-align: center;
    }

    .section-header.center .section-subtitle {
      margin: 0 auto;
    }

    /* ── About ─────────────────────────────────────────── */
    .about { background: var(--white); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .about-image {
      position: relative;
    }

    .about-image-main {
      width: 100%;
      height: 380px;
      border-radius: var(--radius);
      overflow: hidden;
      position: relative;
    }

    .map-container {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: var(--radius);
      overflow: hidden;
    }

    .about-map-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 40%;
      display: block;
      border-radius: var(--radius);
    }

    .map-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .about-image-main::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 28% 55%, rgba(201,169,110,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 78% 32%, rgba(42,157,143,0.04) 0%, transparent 40%);
      z-index: 0;
    }

    .about-image-accent {
      position: absolute;
      bottom: -20px; right: -20px;
      width: 160px; height: 160px;
      border: 2px solid var(--gold);
      border-radius: var(--radius);
      opacity: 0.3;
    }

    .about-stats {
      position: absolute;
      top: 16px; right: 16px;
      display: flex;
      gap: 12px;
      z-index: 3;
    }

    .stat-card {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(8px);
      padding: 16px 24px;
      border-radius: 8px;
      box-shadow: var(--shadow-md);
      text-align: center;
    }

    .stat-number {
      font-family: 'DM Serif Display', serif;
      font-size: 28px;
      color: var(--navy);
      display: block;
    }

    .stat-text {
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--text-muted);
      font-weight: 600;
    }

    .about-text p {
      margin-bottom: 20px;
      font-size: 16px;
      color: var(--text-body);
    }

    .about-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
    }

    .about-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-dark);
    }

    .about-feature .check {
      width: 20px; height: 20px;
      background: rgba(42,157,143,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .about-feature .check svg {
      width: 12px; height: 12px;
      stroke: var(--teal);
    }

    /* ── Services ──────────────────────────────────────── */
    .services { background: var(--bg-section); }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    .service-card {
      background: var(--white);
      padding: 40px 32px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid transparent;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--gold);
      transform: scaleX(0);
      transition: var(--transition);
    }

    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(201,169,110,0.15);
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-icon {
      width: 52px; height: 52px;
      background: rgba(201,169,110,0.08);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
    }

    .service-icon svg {
      width: 26px; height: 26px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card h3 {
      font-size: 20px;
      margin-bottom: 14px;
      font-family: 'Inter', 'Noto Sans SC', sans-serif;
      font-weight: 600;
    }

    .service-card p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── Differentials ─────────────────────────────────── */
    .differentials { background: var(--white); }

    .diff-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 32px;
    }

    .diff-item {
      text-align: center;
      padding: 32px 20px;
    }

    .diff-icon-wrap {
      width: 72px; height: 72px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .diff-icon-wrap::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1px solid rgba(201,169,110,0.2);
    }

    .diff-icon-wrap svg {
      width: 28px; height: 28px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
    }

    .diff-item h3 {
      font-size: 17px;
      margin-bottom: 10px;
      font-family: 'Inter', 'Noto Sans SC', sans-serif;
      font-weight: 600;
    }

    .diff-item p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── Why Hire Us ──────────────────────────────────── */
    .why-hire { background: var(--white); }

    .why-hire-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .why-hire-content .section-label { display: flex; }

    .why-hire-content p {
      font-size: 16px;
      line-height: 1.8;
      color: var(--text-body);
    }

    .why-hire-cards {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .why-card {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      background: var(--bg-light);
      border: 1px solid rgba(0,0,0,0.06);
      border-radius: var(--radius);
      padding: 28px;
      transition: var(--transition);
    }

    .why-card:hover {
      border-color: rgba(201,169,110,0.25);
      box-shadow: var(--shadow-md);
    }

    .why-card-num {
      font-family: 'DM Serif Display', serif;
      font-size: 32px;
      font-weight: 400;
      color: var(--gold);
      line-height: 1;
      flex-shrink: 0;
      width: 40px;
    }

    .why-card h3 {
      font-family: 'Inter', 'Noto Sans SC', sans-serif;
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .why-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ── CTA Banner ────────────────────────────────────── */
    .cta-banner {
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      padding: 80px 0;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      top: -40%; right: -10%;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
      border-radius: 50%;
    }

    .cta-banner h2 {
      color: var(--white);
      font-size: clamp(26px, 3.5vw, 38px);
      margin-bottom: 16px;
      position: relative; z-index: 2;
    }

    .cta-banner p {
      color: rgba(255,255,255,0.6);
      font-size: 17px;
      margin-bottom: 36px;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      position: relative; z-index: 2;
    }

    .cta-banner .hero-cta {
      position: relative; z-index: 2;
    }

    /* ── Contact ───────────────────────────────────────── */
    .contact { background: var(--bg-section); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      max-width: 700px;
      margin: 0 auto;
    }

    .contact-info h3 {
      font-size: 22px;
      margin-bottom: 24px;
    }

    .contact-info p {
      color: var(--text-muted);
      margin-bottom: 32px;
      line-height: 1.8;
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .contact-icon {
      width: 44px; height: 44px;
      background: rgba(201,169,110,0.08);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 20px; height: 20px;
      stroke: var(--gold);
      fill: none;
      stroke-width: 1.5;
    }

    .contact-item-label {
      font-size: 12px;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--text-muted);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .contact-item-value {
      font-size: 15px;
      color: var(--text-dark);
      font-weight: 500;
    }

    .contact-item-value a {
      color: var(--navy-mid);
      transition: var(--transition);
    }

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

    /* ── Footer ────────────────────────────────────────── */
    .footer {
      background: var(--navy);
      padding: 48px 0 24px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      margin-bottom: 24px;
    }

    .footer-links {
      display: flex;
      gap: 32px;
    }

    .footer-links a {
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      transition: var(--transition);
    }

    .footer-links a:hover { color: var(--gold); }

    .footer-bottom {
      text-align: center;
      color: rgba(255,255,255,0.3);
      font-size: 13px;
    }

    /* ── WhatsApp Float ────────────────────────────────── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 900;
      width: 60px; height: 60px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.35);
      transition: var(--transition);
      cursor: pointer;
    }

    .whatsapp-float:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.45);
    }

    .whatsapp-float svg {
      width: 32px; height: 32px;
      fill: var(--white);
    }

    .whatsapp-tooltip {
      position: absolute;
      right: 70px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--white);
      color: var(--text-dark);
      font-size: 13px;
      font-weight: 500;
      padding: 8px 16px;
      border-radius: 8px;
      box-shadow: var(--shadow-md);
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;
      transition: var(--transition);
    }

    .whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

    /* ── Fade-in Animation ─────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── Responsive ────────────────────────────────────── */
    @media (max-width: 1024px) {
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-image { order: -1; }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .diff-grid { grid-template-columns: repeat(2, 1fr); }
      .why-hire-grid { grid-template-columns: 1fr; gap: 40px; }
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .menu-toggle { display: block; }

      .nav-links.open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0; right: 0;
        background: var(--navy);
        padding: 24px;
        gap: 20px;
        border-top: 1px solid rgba(201,169,110,0.1);
      }

      .hero { min-height: auto; padding: 120px 0 80px; }
      .hero h1 { font-size: 32px; }
      .section { padding: 60px 0; }
      .services-grid { grid-template-columns: 1fr; }
      .diff-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
      .about-stats { position: static; margin-top: 20px; }
      .about-image-main { height: 280px; }
      .footer-content { flex-direction: column; gap: 20px; }
      .footer-links { flex-wrap: wrap; justify-content: center; }
    }

    @media (max-width: 480px) {
      .about-features { grid-template-columns: 1fr; }
      .about-stats { flex-direction: column; }
      .lang-switch { order: -1; }
    }