/* =============================================================
   Market Cash — main.css
   Tema WordPress personalizado
   ============================================================= */

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

    :root {
      --navy:       #01445e;
      --navy-mid:   #1A5070;
      --navy-light: #1E5F80;
      --teal:       #0db9bb;
      --teal-dark:  #009FA8;
      --teal-glow:  rgba(0,190,200,0.15);
      --white:      #FFFFFF;
      --off-white:  #F4F7FB;
      --grey:       #8A9BB5;
      --grey-light: #E2EAF4;
      --text-dark:  #0A1929;

      --font-display: 'Montserrat', sans-serif;
      --font-body:    'DM Sans', sans-serif;

      --radius:  12px;
      --radius-lg: 20px;
      --shadow:  0 4px 24px rgba(14,34,64,0.12);
      --shadow-lg: 0 16px 48px rgba(14,34,64,0.18);

      --nav-h: 76px;
      --section-pad: 100px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      text-rendering: optimizeLegibility;
    }

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

    /* =========================================
       UTILITIES
    ========================================= */
    .container {
      width: min(1160px, 100%);
      margin-inline: auto;
      padding-inline: 32px;
    }

    .tag {
      display: inline-block;
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      background: var(--teal-glow);
      border: 1px solid rgba(31,200,192,0.3);
      padding: 5px 14px;
      border-radius: 100px;
      margin-bottom: 20px;
    }

    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 800;
      line-height: 1.15;
      color: var(--navy);
      letter-spacing: -.01em;
    }

    .section-title span {
      color: var(--teal-dark);
    }

    .section-sub {
      font-size: 1.05rem;
      color: #4A6080;
      max-width: 540px;
      margin-top: 16px;
      font-weight: 300;
    }

    /* =========================================
       HEADER / NAV
    ========================================= */
    .header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      height: var(--nav-h);
      display: flex;
      align-items: center;
      background: #fff;
      transition: background .3s, box-shadow .3s;
    }

    .header.scrolled {
      background: #fff;
      backdrop-filter: blur(12px);
      box-shadow: 0 2px 24px rgba(0,0,0,0.25);
    }

    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    .logo {
      display: inline-flex;
      align-items: center;
      line-height: 1;
    }

    .logo-mark {
      width: 34px;
      height: 34px;
      background: var(--teal);
      border-radius: 8px;
      display: grid;
      place-items: center;
    }

    .logo-mark svg {
      width: 18px;
      height: 18px;
      fill: var(--navy);
    }

    .logo span { color: var(--teal); }

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

    nav a {
      font-family: var(--font-display);
      font-size: .92rem;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--navy);
      transition: color .2s;
      letter-spacing: .01em;
    }

    nav a:hover { color: var(--teal); }

    nav a.active {
      color: var(--teal);
      position: relative;
    }

    nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--teal);
      border-radius: 2px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-display);
      font-size: .9rem;
      font-weight: 500;
      padding: 11px 24px;
      border-radius: 8px;
      cursor: pointer;
      transition: all .22s;
      border: none;
    }

    .btn-teal {
      background: var(--teal);
      color: var(--navy);
      font-weight: 600;
    }

    .btn-teal:hover {
      background: var(--navy);
      color: var(--white);
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(31,200,192,0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.35);
    }

    .btn-outline:hover {
      border-color: var(--teal);
      color: var(--teal);
    }

    .btn-navy {
      background: var(--navy);
      color: var(--white);
    }

    .btn-navy:hover {
      background: var(--navy-mid);
      transform: translateY(-1px);
      box-shadow: var(--shadow);
    }

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

    /* Grid pattern de fundo */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(31,200,192,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,200,192,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    /* Gradiente radial glow */
    .hero::after {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 65%;
      height: 120%;
      background: radial-gradient(ellipse at 60% 40%, rgba(31,200,192,0.18) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Forma decorativa */
    .hero-shape {
      position: absolute;
      bottom: -80px;
      right: -80px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      border: 1px solid rgba(31,200,192,0.12);
      pointer-events: none;
    }

    .hero-shape::before {
      content: '';
      position: absolute;
      inset: 40px;
      border-radius: 50%;
      border: 1px solid rgba(31,200,192,0.08);
    }

    .hero .container {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
      padding-block: calc(var(--nav-h) + 60px) 80px;
    }

    .hero-content {}

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: .82rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 28px;
    }

    .hero-eyebrow::before {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--teal);
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2.6rem, 4.5vw, 3.8rem);
      font-weight: 800;
      line-height: 1.08;
      color: var(--white);
      letter-spacing: -.01em;
      margin-bottom: 24px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--teal);
    }

    .hero-desc {
      font-size: 1.1rem;
      font-weight: 300;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 40px;
      max-width: 460px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 56px;
      padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,0.1);
    }

    .hero-stat-value {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
    }

    .hero-stat-value span { color: var(--teal); }

    .hero-stat-label {
      font-size: .82rem;
      color: rgba(255,255,255,0.5);
      margin-top: 6px;
      font-weight: 300;
    }

    /* Imagem hero — placeholder */
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .hero-img-wrap {
      position: relative;
      width: 100%;
      aspect-ratio: 4/3;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(31,200,192,0.2);
      box-shadow: 0 32px 80px rgba(0,0,0,0.4);
    }

    .placeholder-img {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-light) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      color: rgba(255,255,255,0.3);
      font-size: .85rem;
      font-weight: 400;
      text-align: center;
    }

    .placeholder-img svg {
      opacity: .4;
    }

    .placeholder-img .prompt-hint {
      font-size: .72rem;
      color: rgba(31,200,192,0.6);
      margin-top: 8px;
      font-style: italic;
      max-width: 260px;
      line-height: 1.5;
    }

    /* Badge flutuante */
    .hero-badge {
      position: absolute;
      bottom: -20px;
      left: -24px;
      background: var(--white);
      border-radius: var(--radius);
      padding: 16px 20px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 200px;
    }

    .hero-badge-icon {
      width: 42px;
      height: 42px;
      border-radius: 10px;
      background: var(--teal-glow);
      border: 1px solid rgba(31,200,192,0.3);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .hero-badge-icon svg {
      width: 20px;
      height: 20px;
      color: var(--teal);
    }

    .hero-badge-text strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      line-height: 1;
    }

    .hero-badge-text span {
      font-size: .78rem;
      color: var(--grey);
      margin-top: 3px;
      display: block;
    }

    /* =========================================
       SOBRE A EMPRESA
    ========================================= */
    .sobre {
      padding-block: var(--section-pad);
      background: var(--off-white);
      position: relative;
      overflow: hidden;
    }

    .sobre::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(to bottom, var(--teal), transparent);
    }

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

    .sobre-visual {
      position: relative;
    }

    .sobre-img-main {
      width: 100%;
      aspect-ratio: 5/6;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .sobre-img-accent {
      position: absolute;
      bottom: -24px;
      right: -24px;
      width: 55%;
      aspect-ratio: 4/3;
      border-radius: var(--radius);
      overflow: hidden;
      border: 4px solid var(--white);
      box-shadow: var(--shadow-lg);
    }

    .sobre-num {
      position: absolute;
      top: 32px;
      right: -20px;
      background: var(--navy);
      color: var(--white);
      border-radius: var(--radius);
      padding: 16px 20px;
      text-align: center;
      box-shadow: var(--shadow-lg);
    }

    .sobre-num strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--teal);
      line-height: 1;
    }

    .sobre-num span {
      font-size: .75rem;
      color: rgba(255,255,255,0.6);
      margin-top: 4px;
      display: block;
    }

    .sobre-content {}

    .sobre-text {
      font-size: 1.05rem;
      color: #4A6080;
      line-height: 1.8;
      font-weight: 300;
      margin-top: 20px;
    }

    .sobre-pillars {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 36px;
    }

    .pillar {
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: var(--radius);
      padding: 20px;
      transition: border-color .2s, box-shadow .2s;
    }

    .pillar:hover {
      border-color: rgba(31,200,192,0.4);
      box-shadow: 0 4px 20px rgba(31,200,192,0.1);
    }

    .pillar-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      background: var(--teal-glow);
      display: grid;
      place-items: center;
      margin-bottom: 12px;
    }

    .pillar-icon svg {
      width: 18px;
      height: 18px;
      color: var(--teal-dark);
    }

    .pillar h4 {
      font-family: var(--font-display);
      font-size: .92rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 4px;
    }

    .pillar p {
      font-size: .82rem;
      color: var(--grey);
      line-height: 1.5;
    }

    /* =========================================
       SERVIÇOS
    ========================================= */
    .servicos {
      padding-block: var(--section-pad);
      background: var(--white);
    }

    .servicos-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
      gap: 40px;
    }

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

    .servico-card {
      background: var(--off-white);
      border: 1px solid var(--grey-light);
      border-radius: var(--radius-lg);
      padding: 36px 32px;
      position: relative;
      overflow: hidden;
      transition: all .3s;
      cursor: default;
    }

    .servico-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--teal), var(--teal-dark));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .3s;
    }

    .servico-card:hover {
      background: var(--navy);
      border-color: transparent;
      transition: all .3s;
    }
   .servico-card:hover h3 { color: var(--white); }
    .servico-card:hover p { color: rgba(255,255,255,0.6); }
    .servico-card:hover .servico-num { color: rgba(255,255,255,0.08); }

    .servico-card:hover .servico-icon {
      background: var(--teal-glow);
      border: 1px solid rgba(31,200,192,0.3);
    }
    .servico-card:hover::before {
      transform: scaleX(1);
    }


    .servico-num {
      font-family: var(--font-display);
      font-size: 3.5rem;
      font-weight: 800;
      color: rgba(31,200,192,0.12);
      line-height: 1;
      position: absolute;
      top: 24px;
      right: 24px;
    }

    .servico-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      display: grid;
      place-items: center;
      margin-bottom: 24px;
    }

    .servico-icon svg {
      width: 24px;
      height: 24px;
      color: var(--teal);
    }

    .servico-card h3 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
    }

    .servico-card p {
      font-size: .9rem;
      color: #4A6080;
      line-height: 1.7;
      font-weight: 300;
    }

    /* =========================================
       BANNER INFORMATIVO / CTA
    ========================================= */
    .cta-banner {
      position: relative;
      overflow: hidden;
      background: var(--navy);
      padding-block: 80px;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(31,200,192,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31,200,192,0.05) 1px, transparent 1px);
      background-size: 48px 48px;
    }

    /* glow lateral */
    .cta-banner::after {
      content: '';
      position: absolute;
      left: -10%;
      top: -50%;
      width: 50%;
      height: 200%;
      background: radial-gradient(ellipse, rgba(31,200,192,0.15) 0%, transparent 65%);
      pointer-events: none;
    }

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

    .cta-banner-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 16px;
    }

    .cta-banner-label::before {
      content: '';
      width: 20px;
      height: 2px;
      background: var(--teal);
    }

    .cta-banner h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.15;
      max-width: 560px;
    }

    .cta-banner h2 span { color: var(--teal); }

    .cta-banner p {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      margin-top: 14px;
      font-weight: 300;
      max-width: 500px;
    }

    .cta-banner-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      align-items: flex-start;
      flex-shrink: 0;
    }

    .cta-trust {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      color: rgba(255,255,255,0.4);
    }

    .cta-trust svg {
      width: 14px;
      height: 14px;
      color: var(--teal);
      flex-shrink: 0;
    }

    /* =========================================
       FORMULÁRIO DE CONTATO
    ========================================= */
    .contato {
      padding-block: var(--section-pad);
      background: var(--off-white);
    }

    .contato .container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }

    .contato-info {}

    .contato-desc {
      font-size: 1.05rem;
      color: #4A6080;
      font-weight: 300;
      line-height: 1.8;
      margin-top: 20px;
      margin-bottom: 40px;
    }

    .contato-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contato-item {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .contato-item-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: var(--white);
      border: 1px solid var(--grey-light);
      display: grid;
      place-items: center;
      flex-shrink: 0;
    }

    .contato-item-icon svg {
      width: 18px;
      height: 18px;
      color: var(--teal-dark);
    }

    .contato-item-text strong {
      display: block;
      font-size: .88rem;
      font-weight: 600;
      color: var(--navy);
    }

    .contato-item-text span {
      font-size: .85rem;
      color: var(--grey);
    }

    /* Formulário */
    .form-card {
      background: var(--white);
      border: 1px solid var(--grey-light);
      border-radius: var(--radius-lg);
      padding: 44px 40px;
      box-shadow: var(--shadow);
    }

    .form-card h3 {
      font-family: var(--font-display);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 28px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-bottom: 16px;
    }

    .form-group label {
      font-size: .82rem;
      font-weight: 500;
      color: var(--navy-light);
      letter-spacing: .01em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      font-family: var(--font-body);
      font-size: .9rem;
      color: var(--text-dark);
      background: var(--off-white);
      border: 1.5px solid var(--grey-light);
      border-radius: 8px;
      padding: 11px 16px;
      outline: none;
      transition: border-color .2s, box-shadow .2s;
      resize: none;
      width: 100%;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--grey); }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(31,200,192,0.12);
      background: var(--white);
    }

    .form-group textarea { height: 110px; padding-top: 12px; }

    .btn-submit {
      width: 100%;
      justify-content: center;
      padding: 14px;
      font-size: .95rem;
      border-radius: 8px;
      margin-top: 4px;
    }

    /* =========================================
       RODAPÉ
    ========================================= */
    footer {
      background: var(--navy);
      border-top: 1px solid rgba(255,255,255,0.07);
    }

    .footer-main {
      padding-block: 60px;
    }

    .footer-main .container {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
    }

    .footer-brand .logo {
      margin-bottom: 16px;
      background-color: #fff;
      padding: 8px 20px;
      border-radius: 0.35rem;
    }

    .footer-brand p {
      font-size: .88rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
      font-weight: 300;
      max-width: 280px;
    }

    .footer-col h5 {
      font-family: var(--font-display);
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
      margin-bottom: 20px;
    }

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

    .footer-col ul li a {
      font-size: .88rem;
      color: rgba(255,255,255,0.55);
      transition: color .2s;
    }

    .footer-col ul li a:hover {
      color: var(--teal);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-block: 22px;
    }

    .footer-bottom .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      font-size: .8rem;
      color: rgba(255,255,255,0.3);
    }

    .footer-bottom p strong {
      color: rgba(255,255,255,0.5);
    }

    /* =========================================
       ANIMAÇÕES DE ENTRADA
    ========================================= */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s cubic-bezier(.25,.8,.25,1), transform .65s cubic-bezier(.25,.8,.25,1);
    }

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

    .fade-up-delay-1 { transition-delay: .1s; }
    .fade-up-delay-2 { transition-delay: .2s; }
    .fade-up-delay-3 { transition-delay: .3s; }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 1024px) {
      .hero .container,
      .sobre .container,
      .contato .container {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-visual { display: none; }

      .footer-main .container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
      }

      .servicos-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    /* =========================================
       HAMBURGUER & MENU MOBILE
    ========================================= */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: transparent;
      border: 1.5px solid rgba(1,68,94,0.25);
      border-radius: 8px;
      cursor: pointer;
      padding: 8px 9px;
      transition: border-color .2s;
      flex-shrink: 0;
    }

    .hamburger:hover { border-color: var(--teal); }

    .hamburger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--navy);
      border-radius: 2px;
      transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .2s;
      transform-origin: center;
    }

    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* CTA dentro do menu mobile — oculto no desktop */
    .nav-mobile-cta { display: none !important; }

    /* =========================================
       RESPONSIVE
    ========================================= */
    @media (max-width: 768px) {
      :root { --section-pad: 64px; }

      /* Mostra hamburguer, esconde CTA do desktop */
      .hamburger { display: flex; }
      .nav-desktop-cta { display: none !important; }

      /* Nav dropdown */
      nav {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        position: absolute;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: #fff;
        border-top: 2px solid var(--teal);
        box-shadow: 0 8px 24px rgba(1,68,94,0.12);
        padding: 8px 0 16px;
        clip-path: inset(0 0 100% 0);
        opacity: 0;
        pointer-events: none;
        transition: clip-path .3s cubic-bezier(.4,0,.2,1), opacity .25s;
      }

      nav.open {
        clip-path: inset(0 0 -20px 0);
        opacity: 1;
        pointer-events: auto;
      }

      nav a {
        padding: 13px 24px;
        font-size: .95rem;
        color: var(--navy);
        border-bottom: 1px solid var(--grey-light);
        display: block;
      }

      nav a:last-child { border-bottom: none; }

      nav a.active {
        color: var(--teal);
        background: rgba(0,190,200,0.05);
      }

      nav a.active::after { display: none; }

      .nav-mobile-cta {
        display: block !important;
        margin: 12px 16px 0;
        padding: 11px 24px !important;
        background: var(--teal);
        color: var(--navy) !important;
        font-weight: 600;
        border-radius: 8px;
        text-align: center;
        border-bottom: none !important;
      }

      .servicos-header { flex-direction: column; align-items: flex-start; }
      .servicos-grid { grid-template-columns: 1fr; }
      .cta-banner .container { grid-template-columns: 1fr; gap: 32px; }
      .form-row { grid-template-columns: 1fr; }
      .sobre-pillars { grid-template-columns: 1fr; }
      .footer-main .container { grid-template-columns: 1fr; gap: 32px; }
      .form-card { padding: 28px 24px; }
    }

    /* =========================================
       MISSÃO VISÃO VALORES
    ========================================= */
    .mvv {
      padding-block: var(--section-pad);
      background: var(--navy);
      position: relative;
      overflow: hidden;
    }
    .mvv::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(13,185,187,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13,185,187,0.05) 1px, transparent 1px);
      background-size: 52px 52px;
    }
    .mvv .container { position: relative; z-index: 2; }
    .mvv-header { text-align: center; margin-bottom: 48px; }
    .mvv-header .tag { background: rgba(13,185,187,0.12); border-color: rgba(13,185,187,0.3); }
    .mvv-header h2 {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--white);
      letter-spacing: -.01em;
    }
    .mvv-header h2 span { color: var(--teal); }
    .mvv-filosofia {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-left: 3px solid var(--teal);
      border-radius: var(--radius);
      padding: 24px 28px;
      margin-bottom: 40px;
      font-size: 1rem;
      color: rgba(255,255,255,0.75);
      font-weight: 300;
      line-height: 1.8;
    }
    .mvv-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .mvv-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius-lg);
      padding: 32px 28px;
      transition: background .25s, border-color .25s;
    }
    .mvv-card:hover {
      background: rgba(13,185,187,0.08);
      border-color: rgba(13,185,187,0.35);
    }
    .mvv-card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--teal-glow);
      border: 1px solid rgba(13,185,187,0.3);
      display: grid;
      place-items: center;
      margin-bottom: 20px;
    }
    .mvv-card-icon svg { width: 22px; height: 22px; color: var(--teal); }
    .mvv-card h3 {
      font-family: var(--font-display);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 12px;
    }
    .mvv-card p {
      font-size: .9rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.75;
      font-weight: 300;
    }

    /* =========================================
       PARCEIROS
    ========================================= */
    .parceiros {
      padding-block: 72px;
      background: var(--off-white);
    }
    .parceiros-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .parceiros-header h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.5vw, 2rem);
      font-weight: 800;
      color: var(--navy);
      letter-spacing: -.01em;
    }
    .owl-carousel .owl-item {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
    }
    .parceiro-logo {
      max-height: 60px;
      max-width: 160px;
      width: auto;
      object-fit: contain;
      filter: grayscale(1) opacity(.55);
      transition: filter .3s;
    }
    .owl-carousel .owl-item:hover .parceiro-logo {
      filter: grayscale(0) opacity(1);
    }
    .owl-theme .owl-dots .owl-dot span {
      background: var(--grey-light);
      transition: background .2s;
    }
    .owl-theme .owl-dots .owl-dot.active span,
    .owl-theme .owl-dots .owl-dot:hover span { background: var(--teal); }
    .owl-theme .owl-nav [class*='owl-'] {
      background: var(--white);
      border: 1.5px solid var(--grey-light);
      border-radius: 50%;
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--navy);
      font-size: 1.1rem;
      transition: all .2s;
      margin: 0 4px;
    }
    .owl-theme .owl-nav [class*='owl-']:hover {
      background: var(--teal);
      border-color: var(--teal);
      color: var(--white);
    }

    /* =========================================
       WHATSAPP FLUTUANTE
    ========================================= */
    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.5);
      transition: transform .25s, box-shadow .25s;
      text-decoration: none;
    }
    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 8px 28px rgba(37,211,102,0.6);
    }
    .wa-float svg { width: 30px; height: 30px; fill: #fff; display: block; }
    .wa-float::before {
      content: 'Fale no WhatsApp';
      position: absolute;
      right: 68px;
      background: #1a1a1a;
      color: #fff;
      font-family: var(--font-body);
      font-size: .78rem;
      white-space: nowrap;
      padding: 6px 12px;
      border-radius: 6px;
      opacity: 0;
      pointer-events: none;
      transform: translateX(8px);
      transition: opacity .2s, transform .2s;
    }
    .wa-float:hover::before { opacity: 1; transform: translateX(0); }

    @media (max-width: 768px) {
      .mvv-grid { grid-template-columns: 1fr; }
      .wa-float { bottom: 20px; right: 20px; width: 50px; height: 50px; }
      .wa-float svg { width: 26px; height: 26px; }
      .wa-float::before { display: none; }
    }