    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: #202124;
      background: #fff;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    ul { list-style: none; }

    /* ===== CSS VARIABLES ===== */
    :root {
      --primary: #1A73E8;
      --primary-dark: #0D47A1;
      --primary-light: #E8F0FE;
      --secondary: #34A853;
      --secondary-light: #E6F4EA;
      --surface: #F8F9FA;
      --bg: #FFFFFF;
      --border: #E0E0E0;
      --text-primary: #202124;
      --text-secondary: #5F6368;
      --text-tertiary: #9AA0A6;
      --white: #FFFFFF;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
      --shadow-lg: 0 8px 30px rgba(26,115,232,0.15);
      --radius: 12px;
      --radius-lg: 20px;
      --transition: 0.3s ease;
    }

    /* ===== CONTAINER ===== */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ===== ANIMATIONS ===== */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-12px); }
    }
    @keyframes float-slow {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      50% { transform: translateY(-8px) rotate(5deg); }
    }
    @keyframes pulse-pin {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.3); opacity: 0.5; }
    }
    @keyframes fade-in-up {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes slide-in-right {
      from { opacity: 0; transform: translateX(40px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes gradient-shift {
      0%, 100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }
    @keyframes shimmer {
      0% { background-position: -200% 0; }
      100% { background-position: 200% 0; }
    }

    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    .animate-on-scroll.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 16px 0;
      transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    }
    .navbar.scrolled {
      background: rgba(255,255,255,0.95);
      backdrop-filter: blur(10px);
      box-shadow: var(--shadow-sm);
      padding: 10px 0;
    }
    .navbar .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-brand {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .nav-brand img {
      height: 72px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-links a {
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-secondary);
      position: relative;
      transition: color var(--transition);
      cursor: pointer;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      border-radius: 1px;
      transition: width var(--transition);
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-links a:hover::after { width: 100%; }

    .hamburger {
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
      width: 44px;
      height: 44px;
      padding: 0;
      background: none;
      border: none;
      appearance: none;
      -webkit-appearance: none;
      border-radius: 12px;
      position: relative;
      z-index: 1001;
      flex-shrink: 0;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
    .hamburger span {
      width: 24px;
      height: 2.5px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: all var(--transition);
    }
    .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 0;
      right: -100%;
      width: 280px;
      height: 100vh;
      background: var(--white);
      box-shadow: -4px 0 20px rgba(0,0,0,0.1);
      padding: 80px 32px 32px;
      transition: right 0.4s ease;
      z-index: 999;
      visibility: hidden;
      pointer-events: none;
    }
    .mobile-menu.open {
      right: 0;
      visibility: visible;
      pointer-events: auto;
    }
    .mobile-menu a {
      display: block;
      padding: 16px 0;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--text-primary);
      border-bottom: 1px solid var(--border);
      transition: color var(--transition);
    }
    .mobile-menu a:hover { color: var(--primary); }
    .mobile-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 998;
      opacity: 0;
      transition: opacity 0.3s ease;
      visibility: hidden;
      pointer-events: none;
    }
    .mobile-overlay.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .is-mobile-safari .hamburger span {
      pointer-events: none;
    }
    .is-mobile-safari .mobile-menu,
    .is-mobile-safari .mobile-overlay {
      touch-action: manipulation;
    }

    /* ===== HERO ===== */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
      position: relative;
      overflow: hidden;
      padding-top: 80px;
    }
    .hero .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-content { z-index: 2; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--secondary-light);
      color: var(--secondary);
      font-size: 0.85rem;
      font-weight: 600;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
      animation: fade-in-up 0.6s ease-out;
    }
    .hero h1 {
      font-size: clamp(2.2rem, 5vw, 3.5rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--text-primary);
      margin-bottom: 20px;
      animation: fade-in-up 0.6s ease-out 0.1s both;
    }
    .hero h1 span {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero p {
      font-size: clamp(1rem, 1.5vw, 1.2rem);
      color: var(--text-secondary);
      max-width: 520px;
      margin-bottom: 32px;
      animation: fade-in-up 0.6s ease-out 0.2s both;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      animation: fade-in-up 0.6s ease-out 0.3s both;
    }
    .btn, a.btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer !important;
      border: none;
      transition: all var(--transition);
    }
    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 15px rgba(26,115,232,0.3);
    }
    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(26,115,232,0.4);
    }
    .btn-outline {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
    }

    /* Hero Illustration */
    .hero-illustration {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: slide-in-right 0.8s ease-out 0.2s both;
    }
    .hero-illustration svg {
      width: 100%;
      max-width: 500px;
    }
    .floating-icon {
      position: absolute;
      width: 56px;
      height: 56px;
      background: var(--white);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-md);
    }
    .floating-icon svg { width: 28px; height: 28px; }
    .floating-icon:nth-child(2) { top: 10%; right: 5%; animation: float 3s ease-in-out infinite; }
    .floating-icon:nth-child(3) { top: 55%; right: -5%; animation: float 3.5s ease-in-out 0.5s infinite; }
    .floating-icon:nth-child(4) { bottom: 15%; left: 5%; animation: float 4s ease-in-out 1s infinite; }
    .floating-icon:nth-child(5) { top: 5%; left: 10%; animation: float-slow 3.8s ease-in-out 0.3s infinite; }

    .hero-wave {
      position: absolute;
      bottom: -2px;
      left: 0;
      width: 100%;
    }

    /* ===== SOCIAL PROOF ===== */
    .social-proof {
      background: var(--white);
      padding: 48px 0;
      border-bottom: 1px solid var(--border);
    }
    .stats-grid {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }
    .stat-item {
      text-align: center;
    }
    .stat-number {
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--primary);
      line-height: 1;
    }
    .stat-label {
      font-size: 0.95rem;
      color: var(--text-secondary);
      margin-top: 6px;
      font-weight: 500;
    }

    /* ===== SECTION COMMON ===== */
    .section {
      padding: 100px 0;
    }
    .section-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .section-header h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      color: var(--text-primary);
      margin-bottom: 16px;
    }
    .section-header p {
      font-size: 1.1rem;
      color: var(--text-secondary);
      max-width: 600px;
      margin: 0 auto;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--primary);
      margin-bottom: 12px;
    }

    /* ===== HOW IT WORKS ===== */
    .how-it-works { background: var(--surface); }
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      position: relative;
    }
    .step-card {
      text-align: center;
      padding: 40px 24px;
      background: var(--white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all var(--transition);
      position: relative;
    }
    .step-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .step-number {
      width: 48px;
      height: 48px;
      background: var(--primary);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
      margin: 0 auto 24px;
    }
    .step-icon {
      width: 64px;
      height: 64px;
      background: var(--primary-light);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .step-icon svg { width: 32px; height: 32px; color: var(--primary); }
    .step-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .step-card p {
      font-size: 0.95rem;
      color: var(--text-secondary);
      line-height: 1.6;
    }
    .step-connector {
      display: none;
    }

    /* ===== CATEGORIES ===== */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 24px;
    }
    .category-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 24px;
      display: flex;
      align-items: center;
      gap: 20px;
      transition: all var(--transition);
      cursor: default;
    }
    .category-card:hover {
      transform: scale(1.03);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }
    .category-icon {
      width: 52px;
      height: 52px;
      min-width: 52px;
      background: var(--primary-light);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background var(--transition);
    }
    .category-card:hover .category-icon {
      background: var(--primary);
    }
    .category-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--primary);
      transition: stroke var(--transition);
    }
    .category-card:hover .category-icon svg {
      stroke: var(--white);
    }
    .category-info h3 {
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 4px;
    }
    .category-info span {
      font-size: 0.85rem;
      color: var(--text-tertiary);
      font-weight: 500;
    }

    /* ===== CITIES ===== */
    .cities { background: var(--surface); }
    .cities-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .cities-map {
      position: relative;
      overflow: visible;
    }
    .cities-map svg {
      width: 100%;
    }
    .cities-map-grid {
      display: flex;
      flex-wrap: nowrap;
      gap: 8px;
      align-items: flex-end;
      justify-content: center;
      overflow: visible;
    }
    .map-connection {
      position: absolute;
      left: 66%;
      top: 86px;
      width: 340px;
      height: 150px;
      transform: translateX(-50%);
      pointer-events: none;
      z-index: 1;
    }
    .map-connection svg {
      width: 100%;
      height: 100%;
      overflow: visible;
    }
    .map-connection-label {
      position: absolute;
      top: 44%;
      left: 50%;
      transform: translate(-50%, -50%);
      padding: 6px 12px;
      border-radius: 999px;
      border: 1px solid rgba(26, 115, 232, 0.16);
      background: rgba(255, 255, 255, 0.96);
      color: var(--primary-dark);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      white-space: nowrap;
      box-shadow: var(--shadow-sm);
    }
    .map-card {
      position: relative;
      display: flex;
      align-items: flex-end;
      justify-content: center;
    }
    .map-card--brazil {
      flex: 0 1 250px;
      max-width: 250px;
    }
    .map-card--portugal {
      flex: 0 1 270px;
      max-width: 270px;
      margin-left: -6px;
      transform: translateY(-82px);
    }
    .map-card img {
      width: 100%;
      height: auto;
      display: block;
    }
    .map-pin {
      position: absolute;
      animation: pulse-pin 2s ease-in-out infinite;
    }
    .map-pin::before,
    .map-pin::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      transform: translate(-50%, -50%);
    }
    .map-pin::before {
      width: 18px;
      height: 18px;
      background: rgba(26, 115, 232, 0.18);
    }
    .map-pin::after {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border: 2px solid var(--white);
      box-sizing: border-box;
    }
    .map-pin--secondary::before {
      background: rgba(52, 168, 83, 0.18);
    }
    .map-pin--secondary::after {
      background: var(--secondary);
    }
    .map-pin:nth-child(even) { animation-delay: 0.5s; }
    .map-pin:nth-child(3n) { animation-delay: 1s; }

    .cities-list {}
    .country-group {
      margin-bottom: 32px;
    }
    .country-group:last-child { margin-bottom: 0; }
    .country-title {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-primary);
    }
    .country-title .flag {
      font-size: 1.4rem;
    }
    .city-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .city-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-primary);
      transition: all var(--transition);
    }
    .city-tag:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
    }
    .city-tag svg {
      width: 14px;
      height: 14px;
      stroke: var(--primary);
    }
    .cross-border-callout {
      margin-top: 32px;
      background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
      border-radius: var(--radius);
      padding: 24px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .cross-border-callout svg {
      width: 32px;
      height: 32px;
      min-width: 32px;
      stroke: var(--primary);
    }
    .cross-border-callout h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
      color: var(--text-primary);
    }
    .cross-border-callout p {
      font-size: 0.9rem;
      color: var(--text-secondary);
    }

    /* ===== CTA ===== */
    .cta {
      background: var(--primary);
      position: relative;
      padding: 100px 0;
      overflow: hidden;
    }
    .cta::before {
      content: '';
      position: absolute;
      top: -60px;
      left: 0;
      right: 0;
      height: 80px;
      background: var(--surface);
      clip-path: polygon(0 0, 100% 0, 100% 30%, 0 100%);
    }
    .cta .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .cta-content { z-index: 2; }
    .cta-content h2 {
      font-size: clamp(1.8rem, 3vw, 2.5rem);
      font-weight: 800;
      color: var(--white);
      margin-bottom: 16px;
    }
    .cta-content p {
      font-size: 1.1rem;
      color: rgba(255,255,255,0.85);
      margin-bottom: 32px;
    }
    .email-form {
      display: flex;
      gap: 12px;
      max-width: 460px;
    }
    .email-form input {
      flex: 1;
      padding: 14px 20px;
      border: 2px solid rgba(255,255,255,0.3);
      background: rgba(255,255,255,0.15);
      border-radius: 50px;
      font-size: 1rem;
      color: var(--white);
      font-family: inherit;
      outline: none;
      transition: all var(--transition);
    }
    .email-form input::placeholder { color: rgba(255,255,255,0.6); }
    .email-form input:focus {
      border-color: var(--white);
      background: rgba(255,255,255,0.2);
    }
    .btn-white {
      background: var(--white);
      color: var(--primary);
      font-weight: 700;
      white-space: nowrap;
    }
    .btn-white:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
    }
    .btn-white:disabled {
      opacity: 0.75;
      cursor: wait;
      transform: none;
    }
    .form-feedback {
      margin-top: 12px;
      font-size: 0.95rem;
      font-weight: 600;
    }
    .form-feedback--success {
      color: #E6F4EA;
    }
    .form-feedback--error {
      color: #FDE7E9;
    }

    /* Phone mockup */
    .phone-mockup {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .phone-frame {
      width: 280px;
      height: 560px;
      background: #1a1a2e;
      border-radius: 36px;
      padding: 12px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
      position: relative;
    }
    .phone-screen {
      width: 100%;
      height: 100%;
      background: var(--white);
      border-radius: 26px;
      overflow: hidden;
      padding: 20px 16px;
    }
    .phone-notch {
      width: 120px;
      height: 28px;
      background: #1a1a2e;
      border-radius: 0 0 16px 16px;
      margin: -20px auto 16px;
    }
    .phone-app-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 16px;
    }
    .phone-logo { width: 24px; height: 24px; }
    .phone-app-header span {
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--primary);
    }
    .phone-map {
      width: 100%;
      height: 150px;
      background: linear-gradient(135deg, #e8f0fe, #d4e4fc);
      border-radius: 12px;
      margin-bottom: 12px;
      position: relative;
      overflow: hidden;
    }
    .phone-map-dot {
      width: 10px;
      height: 10px;
      background: var(--primary);
      border-radius: 50%;
      position: absolute;
      box-shadow: 0 0 0 4px rgba(26,115,232,0.2);
    }
    .phone-card-mock {
      background: var(--surface);
      border-radius: 10px;
      padding: 12px;
      margin-bottom: 8px;
    }
    .phone-card-line {
      height: 8px;
      background: var(--border);
      border-radius: 4px;
      margin-bottom: 6px;
    }
    .phone-card-line:last-child { width: 60%; margin-bottom: 0; }

    /* Decorative circles behind CTA */
    .cta-decoration {
      position: absolute;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,0.1);
    }
    .cta-decoration:nth-child(1) { width: 300px; height: 300px; top: -80px; right: -50px; }
    .cta-decoration:nth-child(2) { width: 200px; height: 200px; bottom: -40px; left: -30px; }
    .cta-decoration:nth-child(3) { width: 150px; height: 150px; top: 50%; left: 40%; }

    /* ===== FOOTER ===== */
    .footer {
      background: #202124;
      color: rgba(255,255,255,0.7);
      padding: 60px 0 30px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand img {
      height: 66px;
      margin-bottom: 16px;
      filter: brightness(10);
    }
    .footer-brand p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.5);
      max-width: 280px;
    }
    .footer h4 {
      font-size: 0.85rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer a {
      display: block;
      padding: 6px 0;
      font-size: 0.9rem;
      transition: color var(--transition);
    }
    .footer a:hover { color: var(--primary); }
    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }
    .footer-social a {
      display: flex;
      width: 40px;
      height: 40px;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      transition: all var(--transition);
      padding: 0;
    }
    .footer-social a:hover {
      background: var(--primary);
      color: var(--white);
    }
    .footer-social a svg {
      width: 18px;
      height: 18px;
      fill: rgba(255,255,255,0.7);
      transition: fill var(--transition);
    }
    .footer-social a:hover svg { fill: var(--white); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 24px;
      text-align: center;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.4);
    }

    /* ===== LEGAL PAGES ===== */
    .internal-page {
      background: linear-gradient(180deg, #f5f9ff 0%, #ffffff 24%);
    }
    .internal-page main {
      padding-top: 112px;
    }
    .internal-hero {
      padding: 48px 0 28px;
    }
    .internal-hero .container {
      display: grid;
      gap: 20px;
    }
    .eyebrow-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-size: 0.95rem;
      font-weight: 700;
    }
    .eyebrow-link:hover {
      color: var(--primary-dark);
    }
    .internal-kicker {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      border-radius: 999px;
      background: rgba(26,115,232,0.08);
      color: var(--primary);
      font-size: 0.85rem;
      font-weight: 700;
      width: fit-content;
    }
    .internal-hero h1 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      line-height: 1.05;
      letter-spacing: -0.04em;
      max-width: 760px;
    }
    .internal-hero p {
      max-width: 760px;
      color: var(--text-secondary);
      font-size: 1.05rem;
    }
    .legal-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
      gap: 32px;
      align-items: start;
      padding-bottom: 88px;
    }
    .legal-main,
    .legal-sidebar,
    .legal-card,
    .faq-item {
      background: rgba(255,255,255,0.9);
      border: 1px solid rgba(26,115,232,0.1);
      border-radius: 24px;
      box-shadow: var(--shadow-sm);
    }
    .legal-main {
      padding: 36px;
    }
    .legal-main h2,
    .legal-main h3 {
      color: var(--text-primary);
      line-height: 1.2;
    }
    .legal-main h2 {
      font-size: 1.65rem;
      margin-top: 40px;
      margin-bottom: 14px;
    }
    .legal-main h2:first-child {
      margin-top: 0;
    }
    .legal-main h3 {
      font-size: 1.1rem;
      margin-top: 24px;
      margin-bottom: 8px;
    }
    .legal-main p,
    .legal-main li {
      color: var(--text-secondary);
      font-size: 1rem;
    }
    .legal-main p + p,
    .legal-main ul + p,
    .legal-main p + ul,
    .legal-main ul + ul {
      margin-top: 14px;
    }
    .legal-main ul {
      list-style: disc;
      padding-left: 20px;
    }
    .legal-main li + li {
      margin-top: 8px;
    }
    .legal-sidebar {
      padding: 24px;
      position: sticky;
      top: 96px;
      display: grid;
      gap: 22px;
    }
    .legal-sidebar h2 {
      font-size: 0.8rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--text-tertiary);
      margin-bottom: 12px;
    }
    .legal-sidebar nav {
      display: grid;
      gap: 10px;
    }
    .legal-sidebar nav a,
    .legal-sidebar .sidebar-link {
      color: var(--text-secondary);
      font-weight: 600;
      line-height: 1.4;
    }
    .legal-sidebar nav a:hover,
    .legal-sidebar .sidebar-link:hover {
      color: var(--primary);
    }
    .legal-sidebar p {
      color: var(--text-secondary);
      font-size: 0.95rem;
    }
    .legal-meta {
      display: grid;
      gap: 8px;
      padding-top: 18px;
      border-top: 1px solid rgba(26,115,232,0.12);
      font-size: 0.95rem;
    }
    .legal-meta strong {
      color: var(--text-primary);
    }
    .legal-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      margin-top: 24px;
    }
    .legal-card {
      padding: 26px;
      transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    }
    .legal-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(26,115,232,0.22);
    }
    .legal-card span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--primary);
      font-size: 0.84rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 14px;
    }
    .legal-card h2 {
      font-size: 1.35rem;
      margin-bottom: 10px;
      color: var(--text-primary);
    }
    .legal-card p {
      color: var(--text-secondary);
      margin-bottom: 18px;
    }
    .legal-card strong {
      color: var(--primary);
      font-weight: 700;
    }
    .legal-bullets {
      display: grid;
      gap: 10px;
      margin-top: 14px;
    }
    .legal-bullets li {
      position: relative;
      padding-left: 18px;
      color: var(--text-secondary);
      list-style: none;
    }
    .legal-bullets li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 10px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--secondary);
    }
    .faq-list {
      display: grid;
      gap: 16px;
    }
    .faq-item {
      padding: 24px 26px;
    }
    .faq-item h2 {
      font-size: 1.1rem;
      margin-bottom: 10px;
      color: var(--text-primary);
    }
    .faq-item p {
      color: var(--text-secondary);
    }
    .legal-callout {
      padding: 22px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(26,115,232,0.1), rgba(52,168,83,0.08));
      border: 1px solid rgba(26,115,232,0.12);
    }
    .legal-callout h3 {
      margin: 0 0 8px;
      color: var(--text-primary);
    }
    .legal-callout p {
      color: var(--text-secondary);
      margin: 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .hero .container { grid-template-columns: 1fr; text-align: center; }
      .hero p { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .hero-illustration { margin-top: 40px; }
      .hero-illustration svg { max-width: 380px; }
      .cta .container { grid-template-columns: 1fr; text-align: center; }
      .email-form { margin: 0 auto; }
      .phone-mockup { margin-top: 40px; }
      .cities-layout { grid-template-columns: 1fr; }
      .cities-map { order: 2; }
      .cities-list { order: 1; }
      .legal-layout { grid-template-columns: 1fr; }
      .legal-sidebar { position: static; }
      .legal-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .mobile-menu { display: block; }
      .mobile-overlay { display: block; }
      .nav-brand img { height: 62px; }
      .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .stats-grid { gap: 32px; }
      .stat-number { font-size: 2rem; }
      .section { padding: 72px 0; }
      .floating-icon { width: 44px; height: 44px; border-radius: 12px; }
      .floating-icon svg { width: 22px; height: 22px; }
      .internal-hero { padding-top: 24px; }
      .legal-main { padding: 28px 22px; }
      .legal-sidebar { padding: 22px; }
      .cities-map-grid {
        gap: 0;
        align-items: flex-end;
      }
      .map-card--brazil {
        flex-basis: 220px;
        max-width: 220px;
      }
      .map-card--portugal {
        flex-basis: 190px;
        max-width: 190px;
        margin-left: -20px;
        transform: translateY(-54px);
      }
      .map-connection {
        left: 61%;
        top: 52px;
        width: 220px;
        height: 118px;
      }
      .map-connection-label {
        top: 42%;
        font-size: 0.68rem;
        padding: 5px 10px;
      }
      .footer-brand img { height: 58px; }

      .is-mobile-safari .mobile-overlay {
        display: none !important;
      }
      .is-mobile-safari .mobile-overlay.open {
        display: block !important;
      }
      .is-mobile-safari .mobile-menu {
        display: none !important;
        inset: 0;
        right: auto;
        width: 100vw;
        height: 100dvh;
        padding: 112px 28px 40px;
        box-shadow: none;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        gap: 4px;
        overflow-y: auto;
      }
      .is-mobile-safari .mobile-menu.open {
        display: flex !important;
      }
      .is-mobile-safari .mobile-menu a {
        font-size: 1.25rem;
        font-weight: 700;
        padding: 18px 0;
      }
      .is-mobile-safari .nav-links {
        display: none !important;
      }
      .is-mobile-safari .hamburger {
        display: flex !important;
      }
    }
    @media (max-width: 480px) {
      .email-form { flex-direction: column; }
      .footer-grid { grid-template-columns: 1fr; }
      .categories-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2rem; }
      .phone-frame { width: 240px; height: 480px; }
      .map-card--brazil {
        flex-basis: 180px;
        max-width: 180px;
      }
      .map-card--portugal {
        flex-basis: 156px;
        max-width: 156px;
        margin-left: -18px;
        transform: translateY(-42px);
      }
      .map-connection {
        left: 62%;
        top: 46px;
        width: 188px;
        height: 104px;
      }
      .map-connection-label {
        font-size: 0.62rem;
        padding: 4px 8px;
      }
    }
  
