    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy: #0A0E1A;
      --navy-mid: #111827;
      --steel: #1E2D4A;
      --blue: #0066FF;
      --blue-light: #3385FF;
      --orange: #FF6B00;
      --orange-glow: rgba(255,107,0,0.35);
      --blue-glow: rgba(0,102,255,0.25);
      --text-primary: #F0F4FF;
      --text-secondary: #8EA4C8;
      --text-muted: #4A6080;
      --border: rgba(255,255,255,0.07);
      --card-bg: rgba(30,45,74,0.5);
      --white: #FFFFFF;
    }

    html { scroll-behavior: smooth; }
    body {
      background-color: var(--navy);
      color: var(--text-primary);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 72px;
      background: rgba(10,14,26,0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      transition: background 0.3s;
    }
    nav.scrolled {
      background: rgba(10,14,26,0.98);
      box-shadow: 0 2px 32px rgba(0,102,255,0.12);
    }
    .nav-logo { display: flex; align-items: center; text-decoration: none; }
    .nav-logo img { height: 52px; width: auto; object-fit: contain; }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-family: 'Inter', sans-serif;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      text-decoration: none;
      letter-spacing: 0.03em;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--orange) !important;
      color: var(--white) !important;
      padding: 0.5rem 1.25rem !important;
      border-radius: 4px;
      font-weight: 600 !important;
    }
    .nav-cta:hover {
      background: #e05e00 !important;
      box-shadow: 0 0 20px var(--orange-glow);
    }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--text-primary);
      border-radius: 2px;
      transition: all 0.3s;
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 120px 5% 80px;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 60% 50%, rgba(0,102,255,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 80% 20%, rgba(255,107,0,0.08) 0%, transparent 60%),
        linear-gradient(135deg, #0A0E1A 0%, #0D1628 50%, #0A0E1A 100%);
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(0,102,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,102,255,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 30%, rgba(0,0,0,0.8) 70%, transparent 100%);
    }
    .laser-scan {
      position: absolute; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 0%, var(--blue) 20%, #66AAFF 50%, var(--blue) 80%, transparent 100%);
      box-shadow: 0 0 20px 4px var(--blue-glow), 0 0 60px 8px rgba(0,102,255,0.15);
      animation: laserScan 4s ease-in-out infinite;
      opacity: 0.7; z-index: 1;
    }
    @keyframes laserScan {
      0% { top: 10%; opacity: 0; }
      5% { opacity: 0.7; }
      50% { top: 90%; opacity: 0.4; }
      95% { opacity: 0.7; }
      100% { top: 10%; opacity: 0; }
    }
    .hero-content { position: relative; z-index: 2; max-width: 680px; }
    .hero-eyebrow {
      font-family: 'Rajdhani', sans-serif;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 1.25rem;
      display: flex; align-items: center; gap: 0.75rem;
    }
    .hero-eyebrow::before {
      content: ''; display: block;
      width: 32px; height: 2px; background: var(--orange);
    }
    .hero-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700; line-height: 1.1;
      letter-spacing: -0.01em; color: var(--white); margin-bottom: 1rem;
    }
    .hero-title .highlight { color: var(--orange); }
    .hero-title .blue-word { color: var(--blue-light); }
    .hero-subtitle {
      font-size: 1.05rem; color: var(--text-secondary);
      max-width: 560px; margin-bottom: 2rem; line-height: 1.7;
    }
    .hero-alert {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: rgba(255,107,0,0.1);
      border: 1px solid rgba(255,107,0,0.35);
      border-radius: 6px; padding: 0.85rem 1.25rem;
      margin-bottom: 2rem; font-size: 0.92rem;
      color: #FFCB99; max-width: 560px;
    }
    .hero-alert strong { color: var(--orange); }
    .hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

    .btn-primary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--orange); color: var(--white);
      font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 600;
      padding: 0.875rem 2rem; border-radius: 4px; text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
      border: none; cursor: pointer;
    }
    .btn-primary:hover {
      background: #e05e00;
      box-shadow: 0 0 32px var(--orange-glow);
      transform: translateY(-1px);
    }
    .btn-secondary {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: transparent; color: var(--white);
      font-family: 'Inter', sans-serif; font-size: 0.95rem; font-weight: 500;
      padding: 0.875rem 2rem; border-radius: 4px; text-decoration: none;
      border: 1px solid rgba(255,255,255,0.2);
      transition: border-color 0.2s, background 0.2s, transform 0.15s;
    }
    .btn-secondary:hover {
      border-color: var(--blue); background: rgba(0,102,255,0.08);
      transform: translateY(-1px);
    }

    .hero-visual {
      position: absolute; right: 5%; top: 50%;
      transform: translateY(-50%);
      width: 40%; max-width: 520px; z-index: 2;
    }
    .hero-visual-inner {
      position: relative; border-radius: 8px; overflow: hidden;
      border: 1px solid rgba(0,102,255,0.2);
      box-shadow: 0 0 80px rgba(0,102,255,0.15), inset 0 1px 0 rgba(255,255,255,0.05);
    }
    .hero-visual-inner img { width: 100%; display: block; opacity: 0.85; }
    .hero-visual-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,102,255,0.15) 0%, transparent 50%, rgba(255,107,0,0.08) 100%);
    }
    .hero-stats {
      position: absolute; bottom: -1px; left: 0; right: 0;
      display: flex; background: rgba(10,14,26,0.92);
      backdrop-filter: blur(12px); border-top: 1px solid var(--border);
    }
    .hero-stat { flex: 1; padding: 1.1rem; text-align: center; border-right: 1px solid var(--border); }
    .hero-stat:last-child { border-right: none; }
    .hero-stat-num {
      font-family: 'Rajdhani', sans-serif; font-size: 1.6rem;
      font-weight: 700; color: var(--orange); line-height: 1;
    }
    .hero-stat-label {
      font-size: 0.65rem; color: var(--text-muted);
      text-transform: uppercase; letter-spacing: 0.08em; margin-top: 2px;
    }

    /* URGENCY */
    .urgency-section {
      background: linear-gradient(135deg, rgba(255,107,0,0.07) 0%, rgba(0,102,255,0.07) 100%);
      border-top: 1px solid rgba(255,107,0,0.2);
      border-bottom: 1px solid rgba(255,107,0,0.2);
      padding: 60px 5%;
    }
    .urgency-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: center;
    }
    .urgency-text h2 {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      font-weight: 700; color: var(--white);
      margin-bottom: 1rem; line-height: 1.2;
    }
    .urgency-text h2 .alert-word { color: var(--orange); }
    .urgency-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.5rem; }
    .urgency-cards { display: flex; flex-direction: column; gap: 1rem; }
    .urgency-card {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.1rem 1.25rem;
      background: var(--card-bg); border: 1px solid var(--border);
      border-left: 3px solid var(--orange);
      border-radius: 0 6px 6px 0;
    }
    .urgency-card-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
    .urgency-card h4 {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 1rem; color: var(--white); margin-bottom: 2px;
    }
    .urgency-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

    /* SECTIONS */
    section { padding: 100px 5%; }
    .section-eyebrow {
      font-family: 'Rajdhani', sans-serif; font-size: 0.75rem;
      font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
      color: var(--orange); margin-bottom: 0.75rem;
      display: flex; align-items: center; gap: 0.6rem;
    }
    .section-eyebrow::before {
      content: ''; display: inline-block;
      width: 24px; height: 2px; background: var(--orange);
    }
    .section-title {
      font-family: 'Rajdhani', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; color: var(--white);
      line-height: 1.15; letter-spacing: -0.01em;
    }
    .section-title .accent { color: var(--blue-light); }

    /* QUEM SOMOS */
    #quem-somos {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
      max-width: 1200px; margin: 0 auto;
    }
    .about-text p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1.25rem; font-size: 1rem; }
    .about-text p:last-child { margin-bottom: 0; }
    .about-pillars { display: flex; flex-direction: column; gap: 1.25rem; }
    .pillar {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.25rem; background: var(--card-bg);
      border: 1px solid var(--border); border-radius: 6px;
      transition: border-color 0.2s, transform 0.2s;
    }
    .pillar:hover { border-color: rgba(0,102,255,0.3); transform: translateX(4px); }
    .pillar-icon {
      width: 40px; height: 40px; min-width: 40px;
      background: linear-gradient(135deg, rgba(0,102,255,0.2), rgba(0,102,255,0.05));
      border-radius: 6px; display: flex; align-items: center;
      justify-content: center; font-size: 1.1rem;
    }
    .pillar-body h4 {
      font-family: 'Rajdhani', sans-serif; font-weight: 600;
      font-size: 1rem; color: var(--white); margin-bottom: 2px;
    }
    .pillar-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

    /* EQUIPE */
    .team-section {
      padding: 100px 5%;
      background: var(--navy);
    }
    .team-header { margin-bottom: 3.5rem; max-width: 1200px; margin-left: auto; margin-right: auto; margin-bottom: 3.5rem; }
    .team-layout {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: start;
    }

    /* Team photo panel */
    .team-photo-panel {
      position: relative;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(0,102,255,0.2);
      box-shadow: 0 0 60px rgba(0,102,255,0.1), 0 32px 80px rgba(0,0,0,0.4);
    }
    .team-photo-panel img {
      width: 100%; display: block;
      object-fit: cover;
      filter: brightness(0.92) contrast(1.05);
      transition: transform 0.5s ease;
    }
    .team-photo-panel:hover img { transform: scale(1.02); }
    .team-photo-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,14,26,0.85) 0%, rgba(10,14,26,0.1) 50%, transparent 100%);
    }
    .team-photo-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.75rem 2rem;
    }
    .team-photo-caption h3 {
      font-family: 'Rajdhani', sans-serif;
      font-size: 1.25rem; font-weight: 700; color: var(--white);
      margin-bottom: 0.25rem;
    }
    .team-photo-caption p {
      font-size: 0.78rem; color: var(--blue-light);
      text-transform: uppercase; letter-spacing: 0.1em;
    }
    .team-photo-badge {
      position: absolute; top: 1.25rem; right: 1.25rem;
      background: rgba(10,14,26,0.85);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(0,102,255,0.3);
      border-radius: 6px; padding: 0.5rem 0.85rem;
      font-size: 0.72rem; color: var(--blue-light);
      text-transform: uppercase; letter-spacing: 0.1em;
      font-weight: 600;
    }

    /* Team cards */
    .team-cards { display: flex; flex-direction: column; gap: 1.5rem; }
    .team-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 8px; padding: 1.75rem;
      position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s;
    }
    .team-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--orange));
      opacity: 0; transition: opacity 0.3s;
    }
    .team-card:hover { border-color: rgba(0,102,255,0.25); transform: translateX(4px); }
    .team-card:hover::before { opacity: 1; }
    .team-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
    .team-avatar {
      width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Rajdhani', sans-serif; font-size: 1.2rem;
      font-weight: 700; color: var(--white);
      border: 2px solid rgba(0,102,255,0.3);
    }
    .team-card h3 {
      font-family: 'Rajdhani', sans-serif; font-size: 1.25rem;
      font-weight: 700; color: var(--white); margin-bottom: 2px;
    }
    .team-card .role {
      font-size: 0.75rem; color: var(--orange);
      text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
    }
    .team-card .bio {
      font-size: 0.875rem; color: var(--text-secondary);
      line-height: 1.7; margin-bottom: 1rem;
    }
    .tag-list { display: flex; flex-wrap: wrap; gap: 0.4rem; }
    .tag {
      font-size: 0.7rem; font-weight: 500; letter-spacing: 0.04em;
      padding: 0.25rem 0.65rem; border-radius: 3px;
      background: rgba(0,102,255,0.1);
      border: 1px solid rgba(0,102,255,0.2);
      color: var(--blue-light);
    }

    /* SERVICES */
    #servicos {
      background: var(--navy-mid);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }
    .services-header { max-width: 1200px; margin: 0 auto 3.5rem; }
    .services-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem; max-width: 1200px; margin: 0 auto;
    }
    .service-card {
      background: rgba(10,14,26,0.6);
      border: 1px solid var(--border); border-radius: 8px;
      padding: 2rem; position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s; cursor: default;
    }
    .service-card::after {
      content: ''; position: absolute;
      bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--orange));
      transform: scaleX(0); transform-origin: left; transition: transform 0.3s;
    }
    .service-card:hover {
      border-color: rgba(0,102,255,0.3); transform: translateY(-6px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,102,255,0.1);
    }
    .service-card:hover::after { transform: scaleX(1); }
    .service-icon {
      width: 52px; height: 52px; border-radius: 8px;
      background: linear-gradient(135deg, rgba(255,107,0,0.15), rgba(255,107,0,0.05));
      border: 1px solid rgba(255,107,0,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1.25rem;
    }
    .service-card h3 {
      font-family: 'Rajdhani', sans-serif; font-size: 1.15rem;
      font-weight: 700; color: var(--white); margin-bottom: 0.65rem;
    }
    .service-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }
    .service-num {
      position: absolute; top: 1.5rem; right: 1.75rem;
      font-family: 'Rajdhani', sans-serif; font-size: 2.5rem;
      font-weight: 700; color: rgba(255,255,255,0.03); line-height: 1; pointer-events: none;
    }

    /* COURSE CARDS */
    .courses-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1.5rem; max-width: 1200px; margin: 2rem auto 0;
    }
    .course-card {
      background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(255,107,0,0.04));
      border: 1px solid rgba(0,102,255,0.2);
      border-radius: 8px; padding: 2rem; position: relative; overflow: hidden;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    }
    .course-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--blue), var(--orange));
    }
    .course-card:hover {
      border-color: rgba(0,102,255,0.4); transform: translateY(-4px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    }
    .course-badge {
      background: var(--orange); color: var(--white);
      font-family: 'Rajdhani', sans-serif; font-size: 0.68rem;
      font-weight: 700; letter-spacing: 0.1em;
      padding: 0.25rem 0.65rem; border-radius: 3px;
      text-transform: uppercase; display: inline-block; margin-bottom: 0.75rem;
    }
    .course-card h3 {
      font-family: 'Rajdhani', sans-serif; font-size: 1.25rem;
      font-weight: 700; color: var(--white); margin-bottom: 0.6rem;
    }
    .course-card p {
      font-size: 0.875rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.25rem;
    }
    .courses-section-label {
      max-width: 1200px; margin: 3rem auto 0;
      display: flex; align-items: center; gap: 1rem;
    }
    .courses-section-label h3 {
      font-family: 'Rajdhani', sans-serif; font-size: 1.4rem;
      font-weight: 700; color: var(--white); white-space: nowrap;
    }
    .courses-section-label::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    /* FORM */
    .form-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start;
      max-width: 1200px; margin: 0 auto;
    }
    .form-left p { color: var(--text-secondary); margin-top: 1.25rem; margin-bottom: 2rem; line-height: 1.8; }
    .form-benefit { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 0.75rem; }
    .form-benefit-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
    .contact-form { background: var(--card-bg); border: 1px solid var(--border); border-radius: 8px; padding: 2.5rem; }
    .form-field { margin-bottom: 1.25rem; }
    .form-field label { display: block; font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); margin-bottom: 0.4rem; letter-spacing: 0.03em; }
    .form-field input, .form-field textarea {
      width: 100%; background: rgba(10,14,26,0.6);
      border: 1px solid var(--border); border-radius: 4px;
      padding: 0.75rem 1rem; color: var(--white);
      font-family: 'Inter', sans-serif; font-size: 0.9rem;
      transition: border-color 0.2s, box-shadow 0.2s; outline: none;
    }
    .form-field input:focus, .form-field textarea:focus {
      border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,102,255,0.1);
    }
    .form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
    .form-field textarea { resize: vertical; min-height: 110px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    /* CONTATO */
    #contato { background: var(--navy-mid); border-top: 1px solid var(--border); }
    .contato-inner {
      max-width: 1200px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .contact-info-item {
      display: flex; align-items: center; gap: 1rem;
      margin-bottom: 1.5rem; padding: 1.25rem;
      background: var(--card-bg); border: 1px solid var(--border);
      border-radius: 6px; text-decoration: none; color: inherit;
      transition: border-color 0.2s, transform 0.2s;
    }
    .contact-info-item:hover { border-color: rgba(0,102,255,0.3); transform: translateX(4px); }
    .contact-info-icon { font-size: 1.4rem; width: 44px; text-align: center; }
    .contact-info-text small { display: block; font-size: 0.72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
    .contact-info-text strong { font-size: 0.95rem; font-weight: 500; color: var(--text-primary); }
    .contact-cta {
      text-align: center; padding: 3rem;
      background: linear-gradient(135deg, rgba(0,102,255,0.08), rgba(255,107,0,0.05));
      border: 1px solid rgba(0,102,255,0.15); border-radius: 10px;
    }
    .contact-cta h3 { font-family: 'Rajdhani', sans-serif; font-size: 1.75rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
    .contact-cta p { color: var(--text-muted); margin-bottom: 2rem; font-size: 0.9rem; }
    .btn-whatsapp {
      display: inline-flex; align-items: center; gap: 0.75rem;
      background: #25D366; color: var(--white);
      font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600;
      padding: 1rem 2.5rem; border-radius: 6px; text-decoration: none;
      transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
    }
    .btn-whatsapp:hover { background: #1eb856; box-shadow: 0 0 32px rgba(37,211,102,0.3); transform: translateY(-2px); }

    /* FOOTER */
    footer { background: var(--navy); border-top: 1px solid var(--border); padding: 3rem 5%; text-align: center; }
    .footer-logo img { height: 60px; width: auto; margin-bottom: 0.75rem; opacity: 0.9; }
    .footer-tagline { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.5rem; }
    .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2rem; }
    .footer-links a { font-size: 0.8rem; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--text-secondary); }
    .footer-divider { width: 100%; height: 1px; background: var(--border); margin-bottom: 1.5rem; }
    .footer-copy { font-size: 0.75rem; color: var(--text-muted); }

    /* ANIMATIONS */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s 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; }
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; }
      .laser-scan { display: none; }
    }

    /* RESPONSIVE */
    @media (max-width: 768px) {
      .hamburger { display: flex; }
      .nav-links {
        position: fixed; top: 72px; left: 0; right: 0;
        background: rgba(10,14,26,0.98); backdrop-filter: blur(16px);
        flex-direction: column; align-items: flex-start;
        padding: 1.5rem 5%; gap: 1.25rem;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%); transition: transform 0.3s; z-index: 999;
      }
      .nav-links.open { transform: translateY(0); }
      .nav-links li { width: 100%; }
      .nav-links a { font-size: 1rem; display: block; }
      .nav-cta { text-align: center; padding: 0.75rem 1.25rem !important; }
    }
    @media (max-width: 1024px) {
      .hero-visual { display: none; }
      .hero-content { max-width: 100%; }
      .services-grid { grid-template-columns: 1fr 1fr; }
      .courses-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      section { padding: 70px 5%; }
      .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .team-layout { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      .contato-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .urgency-inner { grid-template-columns: 1fr; gap: 2rem; }
      .courses-grid { grid-template-columns: 1fr; }
      .hero-alert { font-size: 0.82rem; }
    }
  
