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

    :root {
      --navy: #0d1b2e;
      --navy-mid: #152238;
      --navy-light: #1e3150;
      --gold: #c9a84c;
      --gold-light: #d4b870;
      --gold-pale: #e8d49a;
      --white: #ffffff;
      --off-white: #f0ece4;
      --text-muted: rgba(255,255,255,0.7);
    }

    html { scroll-behavior: smooth; }
    body { font-family: "Barlow", sans-serif; background: var(--navy); color: var(--white); overflow-x: hidden; }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: var(--navy);
      border-bottom: 1px solid rgba(201, 168, 76, 0.15);
      height: 60px;
      display: flex;
      align-items: center;
      padding: 0 32px;
    }

    .nav-inner {
      width: 100%;
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .nav-logo img {
      height: 34px;
      width: auto;
      display: block;
      /* Logo é azul escuro no original, aqui invertemos para branco */
      /* logo já em branco */
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 6px;
      list-style: none;
      flex: 1;
      justify-content: center;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--white);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 6px 10px;
      border-radius: 2px;
      transition: color 0.2s;
      display: flex;
      align-items: center;
      gap: 4px;
      white-space: nowrap;
    }

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

    .nav-links .dropdown-arrow {
      font-size: 9px;
      opacity: 0.7;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .btn-portal {
      text-decoration: none;
      color: var(--gold);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1.5px solid var(--gold);
      padding: 7px 16px;
      border-radius: 2px;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-portal:hover {
      background: var(--gold);
      color: var(--navy);
    }

    .btn-contato {
      text-decoration: none;
      color: var(--navy);
      background: var(--gold);
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1.5px solid var(--gold);
      padding: 7px 16px;
      border-radius: 2px;
      transition: all 0.2s;
      white-space: nowrap;
    }

    .btn-contato:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
    }

    /* ─── HERO ─── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 60px;
      overflow: hidden;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url("assets/hero.jpg");
      background-size: cover;
      background-position: center right;
      background-repeat: no-repeat;
      background-position: 70% center;
      filter: brightness(0.72);
      z-index: 1;
    }


    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        105deg,
        rgba(13, 27, 46, 0.97) 0%,
        rgba(13, 27, 46, 0.88) 35%,
        rgba(13, 27, 46, 0.55) 60%,
        rgba(13, 27, 46, 0.25) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 1400px;
      margin: 0 auto;
      padding: 80px 32px 80px;
      width: 100%;
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }

    .hero-eyebrow-line {
      width: 40px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .hero-eyebrow-text {
      font-family: "Barlow Condensed", sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .hero-headline {
      font-family: "Playfair Display", serif;
      font-size: clamp(52px, 7vw, 88px);
      font-weight: 400;
      line-height: 1.05;
      color: var(--white);
      margin-bottom: 0;
      max-width: 680px;
    }

    .hero-headline-accent {
      font-family: "Playfair Display", serif;
      font-style: italic;
      color: var(--gold);
    }

    .hero-desc {
      max-width: 420px;
      font-family: "Barlow", sans-serif;
      font-size: 15px;
      font-weight: 300;
      line-height: 1.7;
      color: var(--text-muted);
      margin-top: 28px;
      margin-bottom: 40px;
    }

    .hero-ctas {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gold);
      color: var(--navy);
      text-decoration: none;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: 2px solid var(--gold);
      border-radius: 2px;
      transition: all 0.25s;
    }

    .cta-primary:hover {
      background: var(--gold-light);
      border-color: var(--gold-light);
      transform: translateX(2px);
    }

    .cta-primary .arrow {
      font-size: 16px;
      transition: transform 0.2s;
    }

    .cta-primary:hover .arrow { transform: translateX(4px); }

    .cta-secondary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      text-decoration: none;
      font-family: "Barlow Condensed", sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 14px 28px;
      border: 2px solid rgba(255,255,255,0.4);
      border-radius: 2px;
      transition: all 0.25s;
    }

    .cta-secondary:hover {
      border-color: var(--white);
      background: rgba(255,255,255,0.06);
    }

    /* ─── TICKER STRIP ─── */
    .ticker-strip {
      background: rgba(13, 27, 46, 0.82);
      backdrop-filter: blur(4px);
      border-top: 1px solid rgba(201, 168, 76, 0.2);
      border-bottom: 1px solid rgba(201, 168, 76, 0.2);
      padding: 14px 32px;
      position: relative;
      z-index: 3;
      margin-top: -1px;
    }

    .ticker-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }

    .ticker-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'Barlow', sans-serif;
      font-size: 13.5px;
      font-weight: 400;
      color: rgba(255,255,255,0.85);
      white-space: nowrap;
    }

    .ticker-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* ─── SERVICES BAR ─── */
    .services-bar {
      background: #c9a84c;
      padding: 32px;
    }

    .services-inner {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 0;
    }

    .service-card {
      flex: 1;
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 0 32px;
    }

    .service-card:first-child { padding-left: 0; }
    .service-card:last-child  { padding-right: 0; }

    .service-divider {
      width: 1px;
      height: 56px;
      background: rgba(13, 27, 46, 0.2);
      flex-shrink: 0;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background: rgba(13, 27, 46, 0.12);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .service-text { flex: 1; }

    .service-title {
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
      line-height: 1.3;
    }

    .service-desc {
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: rgba(13, 27, 46, 0.75);
      line-height: 1.45;
    }

    /* ─── PARA QUEM ─── */
    .para-quem {
      background: #f0ece4;
      padding: 96px 32px;
    }

    .pq-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .pq-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }

    .pq-eyebrow-line {
      width: 36px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .pq-eyebrow-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .pq-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 28px;
      max-width: 900px;
    }

    .pq-headline em {
      font-style: italic;
      color: var(--gold);
    }

    .pq-sub {
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #4a5568;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 52px;
    }

    /* Cards */
    .pq-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border: 1px solid rgba(13,27,46,0.12);
      border-radius: 2px;
      overflow: hidden;
    }

    .pq-card {
      padding: 44px 48px 48px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .pq-card--light {
      background: #fff;
      border-right: 1px solid rgba(13,27,46,0.1);
    }

    .pq-card--dark {
      background: var(--navy-mid);
    }

    .pq-card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
    }

    .pq-badge {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 5px 12px;
      border-radius: 1px;
    }

    .pq-number {
      font-family: 'Playfair Display', serif;
      font-size: 48px;
      font-weight: 400;
      line-height: 1;
      opacity: 0.12;
    }

    .pq-card--light .pq-number { color: var(--navy); }
    .pq-card--dark  .pq-number { color: var(--white); }

    .pq-card-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2vw, 26px);
      font-weight: 400;
      line-height: 1.3;
      margin-bottom: 20px;
    }

    .pq-card--light .pq-card-title { color: var(--gold); }
    .pq-card--dark  .pq-card-title { color: var(--white); }

    .pq-card-desc {
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 400;
      line-height: 1.75;
      flex: 1;
      margin-bottom: 32px;
    }

    .pq-card--light .pq-card-desc { color: #4a5568; }
    .pq-card--dark  .pq-card-desc { color: rgba(255,255,255,0.7); }

    .pq-card-link {
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-bottom: 1.5px solid currentColor;
      padding-bottom: 2px;
      align-self: flex-start;
      transition: opacity 0.2s;
    }

    .pq-card--light .pq-card-link { color: var(--navy); }
    .pq-card--dark  .pq-card-link { color: var(--gold); }
    .pq-card-link:hover { opacity: 0.7; }

    @media (max-width: 768px) {
      .pq-cards { grid-template-columns: 1fr; }
      .pq-card--light { border-right: none; border-bottom: 1px solid rgba(13,27,46,0.1); }
      .pq-card { padding: 32px 24px; }
    }

    /* ─── SOLUÇÕES ─── */
    .solucoes {
      background: #f0ece4;
      padding: 96px 32px;
    }

    .sol-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .sol-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .sol-eyebrow-line {
      width: 36px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .sol-eyebrow-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .sol-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3.5vw, 52px);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.15;
      margin-bottom: 20px;
      max-width: 860px;
    }

    .sol-headline em {
      font-style: italic;
      color: var(--gold);
    }

    .sol-sub {
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: #555;
      line-height: 1.7;
      max-width: 420px;
      margin-bottom: 52px;
    }

    /* Category label */
    .sol-category-label {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .sol-category-label span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #888;
    }

    .sol-category-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: rgba(13,27,46,0.12);
    }

    /* Grids */
    .sol-grid {
      display: grid;
      gap: 20px;
      margin-bottom: 52px;
    }

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

    /* Cards */
    .sol-card {
      background: #fff;
      border: 1px solid rgba(13,27,46,0.08);
      border-radius: 2px;
      padding: 28px 28px 24px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: box-shadow 0.2s;
    }

    .sol-card:hover {
      box-shadow: 0 4px 24px rgba(13,27,46,0.08);
    }

    .sol-card-icon {
      margin-bottom: 18px;
    }

    .sol-card-title {
      font-family: 'Playfair Display', serif;
      font-size: 16px;
      font-weight: 400;
      color: var(--gold);
      line-height: 1.35;
      margin-bottom: 10px;
    }

    .sol-card-desc {
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      font-weight: 400;
      color: #666;
      line-height: 1.65;
      flex: 1;
      margin-bottom: 20px;
    }

    .sol-card-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid rgba(13,27,46,0.07);
    }

    .sol-tag {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 9.5px;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: #999;
    }

    .sol-btn {
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 6px 14px;
      border-radius: 1px;
      white-space: nowrap;
      transition: background 0.2s;
    }

    .sol-btn:hover { background: var(--gold-light); }

    @media (max-width: 900px) {
      .sol-grid--3 { grid-template-columns: 1fr 1fr; }
      .sol-grid--4 { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 600px) {
      .sol-grid--3,
      .sol-grid--4 { grid-template-columns: 1fr; }
    }

    /* ─── FORMAÇÃO ÂNCORA ─── */
    .formacao {
      background: #f0ece4;
      padding: 0 32px 80px;
    }

    .form-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    /* Label categoria */
    .form-category-label {
      display: flex;
      align-items: center;
      gap: 8px;
      padding-bottom: 20px;
      margin-bottom: 0;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .form-star { color: var(--gold); font-size: 12px; }

    /* Card bipartido */
    .form-card {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 420px;
      border-radius: 2px;
      overflow: hidden;
    }

    /* Lado esquerdo */
    .form-content {
      background: var(--navy-mid);
      padding: 48px 48px 52px;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .form-badge {
      display: inline-block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 5px 14px;
      border-radius: 1px;
      margin-bottom: 24px;
      align-self: flex-start;
    }

    .form-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(24px, 2.8vw, 38px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .form-desc {
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 300;
      color: rgba(255,255,255,0.75);
      line-height: 1.75;
      margin-bottom: 28px;
    }

    .form-desc strong { font-weight: 600; color: var(--gold-pale); }

    /* Pills */
    .form-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 36px;
    }

    .form-pill {
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(255,255,255,0.7);
      border: 1px solid rgba(255,255,255,0.25);
      border-radius: 40px;
      padding: 5px 14px;
    }

    /* CTAs */
    .form-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: auto;
    }

    .form-btn-primary {
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 14px 28px;
      border: 2px solid var(--gold);
      border-radius: 2px;
      transition: all 0.2s;
    }

    .form-btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

    .form-btn-secondary {
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: transparent;
      color: var(--white);
      padding: 14px 28px;
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 2px;
      transition: all 0.2s;
    }

    .form-btn-secondary:hover { border-color: var(--white); }

    /* Lado direito — imagem */
    .form-img-wrap {
      position: relative;
      overflow: hidden;
    }

    .form-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }

    .form-img-overlay {
      position: absolute;
      inset: 0;
      background: rgba(13, 27, 46, 0.45);
      z-index: 1;
    }

    @media (max-width: 768px) {
      .form-card { grid-template-columns: 1fr; }
      .form-img-wrap { min-height: 260px; }
      .form-content { padding: 32px 24px; }
    }

    /* ─── DIFERENCIAIS ─── */
    .diferenciais {
      background: #f0ece4;
      padding: 96px 32px;
    }

    .dif-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .dif-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .dif-eyebrow-line {
      width: 36px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .dif-eyebrow-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .dif-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(34px, 4.5vw, 62px);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.1;
      margin-bottom: 22px;
    }

    .dif-headline em {
      font-style: italic;
      color: var(--gold);
    }

    .dif-sub {
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      font-weight: 400;
      color: #555;
      line-height: 1.7;
      max-width: 480px;
      margin-bottom: 52px;
    }

    /* Grid */
    .dif-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border: 1px solid rgba(13,27,46,0.1);
      border-radius: 2px;
      background: #fff;
      overflow: hidden;
    }

    .dif-item {
      padding: 40px 40px 44px;
      border-right: 1px solid rgba(13,27,46,0.08);
    }

    .dif-item:nth-child(3),
    .dif-item:nth-child(6) {
      border-right: none;
    }

    .dif-item--border-top {
      border-top: 1px solid rgba(13,27,46,0.08);
    }

    .dif-num {
      display: block;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px;
      font-weight: 400;
      color: rgba(13,27,46,0.3);
      letter-spacing: 0.08em;
      margin-bottom: 20px;
    }

    .dif-item-title {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--navy);
      line-height: 1.3;
      margin-bottom: 14px;
    }

    .dif-item-desc {
      font-family: 'Barlow', sans-serif;
      font-size: 13.5px;
      font-weight: 400;
      color: #666;
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .dif-grid { grid-template-columns: 1fr 1fr; }
      .dif-item:nth-child(3) { border-right: none; border-top: 1px solid rgba(13,27,46,0.08); }
      .dif-item:nth-child(2) { border-right: none; }
      .dif-item:nth-child(4) { border-right: 1px solid rgba(13,27,46,0.08); }
    }

    @media (max-width: 600px) {
      .dif-grid { grid-template-columns: 1fr; }
      .dif-item { border-right: none !important; border-top: 1px solid rgba(13,27,46,0.08); }
      .dif-item:first-child { border-top: none; }
    }

    /* ─── COMO TRABALHAMOS ─── */
    .metodo {
      background: var(--navy-mid);
      padding: 96px 32px;
    }

    .met-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .met-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .met-eyebrow-line {
      width: 36px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .met-eyebrow-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .met-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 4vw, 58px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 22px;
      max-width: 800px;
    }

    .met-headline em {
      font-style: italic;
      color: var(--gold);
    }

    .met-sub {
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      max-width: 440px;
      margin-bottom: 56px;
    }

    /* Grid 5 colunas */
    .met-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 2px;
      overflow: hidden;
    }

    .met-card {
      padding: 40px 28px 44px;
      border-right: 1px solid rgba(255,255,255,0.08);
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .met-card:last-child { border-right: none; }

    .met-num {
      font-family: 'Playfair Display', serif;
      font-size: 52px;
      font-weight: 400;
      color: rgba(255,255,255,0.1);
      line-height: 1;
      margin-bottom: 24px;
      display: block;
    }

    .met-card-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }

    .met-card-desc {
      font-family: 'Barlow', sans-serif;
      font-size: 13.5px;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
    }

    @media (max-width: 900px) {
      .met-grid { grid-template-columns: repeat(3, 1fr); }
      .met-card:nth-child(3) { border-right: none; }
      .met-card:nth-child(4),
      .met-card:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.08); }
      .met-card:nth-child(5) { border-right: none; }
    }

    @media (max-width: 600px) {
      .met-grid { grid-template-columns: 1fr 1fr; }
      .met-card { border-right: none; border-top: 1px solid rgba(255,255,255,0.08); }
      .met-card:first-child { border-top: none; }
      .met-card:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
    }

    /* ─── GALERIA ─── */
    .galeria {
      background: #f0ece4;
      padding: 80px 32px 96px;
    }

    .gal-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .gal-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(22px, 2.8vw, 38px);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 36px;
    }

    .gal-headline em {
      font-style: italic;
      color: var(--gold);
    }

    /* Mosaico: 3 colunas */
    .gal-mosaic {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 8px;
      align-items: stretch;
    }

    .gal-col {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .gal-col--tall .gal-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      border-radius: 2px;
      display: block;
    }

    .gal-col--stack {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .gal-col--stack .gal-img {
      width: 100%;
      height: calc(50% - 4px);
      flex: 1;
      object-fit: cover;
      object-position: center;
      border-radius: 2px;
      display: block;
    }

    @media (max-width: 768px) {
      .gal-mosaic { grid-template-columns: 1fr; }
      .gal-col--tall .gal-img { max-height: 320px; }
      .gal-col--stack .gal-img { max-height: 220px; }
    }

    /* ─── SOBRE ─── */
    .sobre {
      background: #fff;
      padding: 96px 32px;
    }

    .sob-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    /* Foto */
    .sob-img-wrap {
      border-radius: 2px;
      overflow: hidden;
      line-height: 0;
    }

    .sob-img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    /* Conteúdo */
    .sob-eyebrow {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 22px;
    }

    .sob-eyebrow-line {
      width: 36px;
      height: 2px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .sob-eyebrow-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .sob-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(28px, 3vw, 44px);
      font-weight: 400;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 28px;
    }

    .sob-headline em {
      font-style: italic;
      color: var(--gold);
    }

    .sob-p {
      font-family: 'Barlow', sans-serif;
      font-size: 14px;
      font-weight: 400;
      color: #555;
      line-height: 1.75;
      margin-bottom: 18px;
    }

    /* Quote */
    .sob-quote {
      margin: 28px 0 0;
      padding: 24px 28px;
      background: #f0ece4;
      border-left: 3px solid var(--gold);
      border-radius: 0 2px 2px 0;
    }

    .sob-quote p {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-style: italic;
      font-weight: 400;
      color: var(--navy-mid);
      line-height: 1.75;
      margin: 0;
    }

    @media (max-width: 768px) {
      .sob-inner { grid-template-columns: 1fr; gap: 40px; }
    }

    /* ─── CTA FINAL ─── */
    .cta-final {
      position: relative;
      padding: 100px 32px;
      text-align: center;
      overflow: hidden;
    }

    .ctaf-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      z-index: 0;
    }

    .ctaf-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(13, 27, 46, 0.82) 0%,
        rgba(13, 27, 46, 0.78) 100%
      );
      z-index: 1;
    }

    .ctaf-content {
      position: relative;
      z-index: 2;
      max-width: 780px;
      margin: 0 auto;
    }

    .ctaf-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(30px, 4vw, 54px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 24px;
    }

    .ctaf-headline em {
      font-style: italic;
      color: var(--gold);
    }

    .ctaf-sub {
      font-family: 'Barlow', sans-serif;
      font-size: 15px;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      max-width: 540px;
      margin: 0 auto 44px;
    }

    .ctaf-ctas {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    .ctaf-btn-primary {
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: var(--gold);
      color: var(--navy);
      padding: 15px 32px;
      border: 2px solid var(--gold);
      border-radius: 2px;
      transition: all 0.2s;
    }

    .ctaf-btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }

    .ctaf-btn-secondary {
      text-decoration: none;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      background: transparent;
      color: var(--white);
      padding: 15px 32px;
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 2px;
      transition: all 0.2s;
    }

    .ctaf-btn-secondary:hover { border-color: var(--white); }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--navy);
      border-top: 1px solid rgba(201,168,76,0.15);
    }

    .footer-main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 60px 32px 48px;
      display: grid;
      grid-template-columns: 1.8fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-logo {
      height: 36px;
      width: auto;
      margin-bottom: 16px;
      display: block;
    }

    .footer-tagline {
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.55);
      line-height: 1.65;
      margin-bottom: 24px;
    }

    /* Social */
    .footer-social {
      display: flex;
      gap: 10px;
    }

    .footer-social-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: all 0.2s;
    }

    .footer-social-btn:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* Colunas */
    .footer-col-title {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      text-decoration: none;
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      font-weight: 300;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }

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

    /* Bottom bar */
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 32px;
      border-top: 1px solid rgba(255,255,255,0.07);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-family: 'Barlow', sans-serif;
      font-size: 12px;
      font-weight: 300;
      color: rgba(255,255,255,0.35);
    }

    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .footer-bottom-links a {
      text-decoration: none;
      color: rgba(255,255,255,0.35);
      transition: color 0.2s;
    }

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

    .footer-dot { opacity: 0.4; }

    @media (max-width: 900px) {
      .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    }

    @media (max-width: 600px) {
      .footer-main { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }

    /* Dropdown Gestão */
    .nav-dropdown-wrap {
      position: relative;
    }

    .nav-dropdown-toggle {
      cursor: pointer;
    }

    .nav-dropdown-menu {
      display: none;
      position: absolute;
      top: calc(100% + 10px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--navy);
      border: 1px solid rgba(201,168,76,0.2);
      border-radius: 2px;
      list-style: none;
      min-width: 200px;
      padding: 8px 0;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
      z-index: 200;
    }

    .nav-dropdown-menu::before {
      content: '';
      position: absolute;
      top: -5px;
      left: 50%;
      transform: translateX(-50%);
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-bottom: 5px solid rgba(201,168,76,0.3);
    }

    .nav-dropdown-menu li a {
      display: block;
      padding: 10px 20px;
      font-family: 'Barlow', sans-serif;
      font-size: 13px;
      font-weight: 400;
      letter-spacing: 0.03em;
      text-transform: none;
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: all 0.15s;
      white-space: nowrap;
    }

    .nav-dropdown-menu li a:hover {
      color: var(--gold);
      background: rgba(201,168,76,0.06);
      padding-left: 26px;
    }

    .nav-dropdown-wrap:hover .nav-dropdown-menu,
    .nav-dropdown-menu.open {
      display: block;
    }

    .sol-grid--2 { grid-template-columns: 1fr 1fr; }

    .sol-card--featured {
      border-color: rgba(201,168,76,0.3);
      background: #fffdf7;
    }

    .sol-card--featured .sol-card-title { color: var(--navy); font-weight: 500; }

    @media (max-width: 900px) {
      .sol-grid--2 { grid-template-columns: 1fr; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hero-content { padding: 60px 20px; }
      .hero-headline { font-size: 44px; }
      .hero-ctas { flex-direction: column; align-items: flex-start; }
      .ticker-inner { gap: 10px; }
      .ticker-item { font-size: 12px; }
      .services-inner { flex-direction: column; gap: 20px; }
      .service-card { padding: 0; }
      .service-divider { width: 100%; height: 1px; }
    }