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

    :root {
      --navy:       #1B2D4F;
      --navy-deep:  #111E33;
      --teal:       #1A7A8A;
      --teal-light: #22A4B8;
      --sky:        #E8F4F8;
      --cream:      #F8F6F2;
      --text:       #2C3E50;
      --muted:      #607080;
      --gold:       #D4A017;
      --gold-dark:  #B8870F;
      --white:      #FFFFFF;
      --border:     rgba(26,122,138,0.15);
      --shadow:     0 8px 32px rgba(27,45,79,0.12);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      color: var(--text);
      background: var(--cream);
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    ::-webkit-scrollbar { width: 4px; }
    ::-webkit-scrollbar-track { background: var(--cream); }
    ::-webkit-scrollbar-thumb { background: var(--teal); border-radius: 2px; }

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

    /* ============ UTILITIES ============ */
    .container {
      max-width: 1140px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 1.25rem;
    }
    .section-tag::before {
      content: '';
      display: block;
      width: 28px;
      height: 1px;
      background: var(--teal);
      flex-shrink: 0;
    }

    .section-tag--light { color: var(--teal-light); }
    .section-tag--light::before { background: var(--teal-light); }

    .section-tag--gold { color: var(--gold); }
    .section-tag--gold::before { background: var(--gold); }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.85rem 1.75rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      letter-spacing: 0.06em;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.25s ease;
      border: none;
    }
    .btn-gold {
      background: var(--gold);
      color: var(--navy);
    }
    .btn-gold:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212,160,23,0.35);
    }
    .btn-outline-white {
      background: transparent;
      color: var(--white);
      border: 1px solid rgba(255,255,255,0.5);
    }
    .btn-outline-white:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }
    .btn-outline-teal {
      background: transparent;
      color: var(--teal);
      border: 1px solid var(--teal);
    }
    .btn-outline-teal:hover {
      background: var(--teal);
      color: var(--white);
    }

    .cred-item {
      display: flex;
      flex-direction: column;
      gap: 0.2rem;
      padding: 0.85rem 1rem;
      border-left: 2px solid var(--teal);
      background: var(--sky);
    }
    .cred-item strong {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.85rem;
      color: var(--navy);
    }
    .cred-item span {
      font-size: 0.78rem;
      color: var(--muted);
    }

    /* ============ ANIMATIONS ============ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse-ring {
      0%   { transform: scale(1); opacity: 0.6; }
      70%  { transform: scale(1.4); opacity: 0; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    .anim-1 { animation: fadeUp 0.7s ease both; }
    .anim-2 { animation: fadeUp 0.7s 0.15s ease both; }
    .anim-3 { animation: fadeUp 0.7s 0.3s ease both; }
    .anim-4 { animation: fadeUp 0.7s 0.45s ease both; }

    /* ============ NAVIGATION ============ */
    #nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1.1rem 0;
      transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
    }
    #nav.scrolled {
      background: rgba(17,30,51,0.97);
      backdrop-filter: blur(12px);
      padding: 0.75rem 0;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .nav-logo {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;
    }
    .nav-logo-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--white);
      letter-spacing: 0.04em;
    }
    .nav-logo-name em {
      color: var(--gold);
      font-style: normal;
    }
    .nav-logo-sub {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 0.62rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }
    .nav-links a {
      font-family: 'DM Sans', sans-serif;
      font-weight: 400;
      font-size: 0.82rem;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.7);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--white); }
    .nav-cta {
      background: var(--gold);
      color: var(--navy) !important;
      font-weight: 500 !important;
      padding: 0.55rem 1.2rem;
      border-radius: 2px;
      transition: background 0.2s, transform 0.2s !important;
    }
    .nav-cta:hover {
      background: var(--gold-dark) !important;
      transform: translateY(-1px);
    }
    .nav-hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .nav-hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--white);
      transition: all 0.3s;
    }

    /* ============ HERO ============ */
    #hero {
      min-height: 100vh;
      background: var(--navy);
      background-image:
        radial-gradient(ellipse 70% 60% at 80% 50%, rgba(26,122,138,0.18) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 20% 80%, rgba(212,160,23,0.08) 0%, transparent 50%);
      display: flex;
      align-items: center;
      padding-top: 5rem;
      position: relative;
      overflow: hidden;
    }
    #hero::before {
      content: '';
      position: absolute;
      right: 0; top: 0; bottom: 0;
      width: 45%;
      background: linear-gradient(135deg, rgba(26,122,138,0.12) 0%, rgba(26,122,138,0.05) 100%);
      clip-path: polygon(8% 0%, 100% 0%, 100% 100%, 0% 100%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.4rem 0.9rem;
      border: 1px solid rgba(212,160,23,0.4);
      border-radius: 2px;
      margin-bottom: 1.5rem;
      font-size: 0.7rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
    }
    .hero-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      flex-shrink: 0;
    }
    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.4rem, 4.5vw, 3.8rem);
      line-height: 1.15;
      color: var(--white);
      margin-bottom: 1.25rem;
    }
    .hero-h1 em {
      font-style: italic;
      color: rgba(255,255,255,0.75);
    }
    .hero-sub {
      font-family: 'DM Sans', sans-serif;
      font-weight: 300;
      font-size: 1rem;
      color: rgba(255,255,255,0.65);
      line-height: 1.7;
      margin-bottom: 2rem;
      max-width: 480px;
    }
    .hero-crm {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.45);
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }
    .hero-crm-divider {
      display: inline-block;
      width: 1px;
      height: 12px;
      background: rgba(255,255,255,0.2);
      flex-shrink: 0;
    }
    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .hero-photo-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }
    .hero-photo-frame {
      position: relative;
      width: 420px;
      max-width: 100%;
    }
    .hero-photo-frame::before {
      content: '';
      position: absolute;
      top: -16px; right: -16px;
      width: 100%; height: 100%;
      border: 1px solid rgba(26,122,138,0.35);
      border-radius: 2px;
      z-index: 0;
    }
    .hero-photo-frame::after {
      content: '';
      position: absolute;
      bottom: -16px; left: -16px;
      width: 100%; height: 100%;
      border: 1px solid rgba(212,160,23,0.2);
      border-radius: 2px;
      z-index: 0;
    }
    .hero-photo-placeholder {
      position: relative;
      z-index: 1;
      width: 100%;
      aspect-ratio: 3/4;
      background: linear-gradient(160deg, rgba(26,122,138,0.2) 0%, rgba(27,45,79,0.6) 100%);
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      border: 1px solid rgba(26,122,138,0.2);
      overflow: hidden;
    }
    .hero-photo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .hero-photo-info {
      position: absolute;
      bottom: 1.5rem;
      left: 1.5rem;
      right: 1.5rem;
      z-index: 2;
      background: rgba(17,30,51,0.85);
      backdrop-filter: blur(8px);
      padding: 1rem 1.25rem;
      border-radius: 2px;
      border-top: 2px solid var(--teal);
    }
    .hero-photo-info strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--white);
      letter-spacing: 0.02em;
    }
    .hero-photo-info small {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: var(--teal-light);
      text-transform: uppercase;
    }

    /* ============ STATS STRIP ============ */
    #stats {
      background: linear-gradient(90deg, var(--navy-deep) 0%, #1a3a50 100%);
      border-top: 1px solid rgba(26,122,138,0.3);
      border-bottom: 1px solid rgba(26,122,138,0.3);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,0.06);
    }
    .stat-item {
      padding: 2.25rem 2rem;
      background: transparent;
      text-align: center;
    }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 2.4rem;
      color: var(--gold);
      line-height: 1;
      margin-bottom: 0.4rem;
    }
    .stat-label {
      font-size: 0.72rem;
      font-weight: 400;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.55);
    }

    /* ============ SOBRE ============ */
    #sobre {
      padding: 7rem 0;
      background: var(--white);
    }
    .sobre-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 5rem;
      align-items: center;
    }
    .sobre-photo-wrap {
      position: relative;
    }
    .sobre-photo-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--sky) 0%, rgba(26,122,138,0.1) 100%);
      border-radius: 2px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .sobre-photo-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
    }
    .sobre-photo-badge {
      position: absolute;
      bottom: -1.5rem;
      right: -1.5rem;
      width: 120px;
      height: 120px;
      background: var(--navy);
      border-radius: 2px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.2rem;
      border: 4px solid var(--white);
    }
    .sobre-photo-badge strong {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 2rem;
      color: var(--gold);
      line-height: 1;
    }
    .sobre-photo-badge small {
      font-size: 0.6rem;
      color: rgba(255,255,255,0.6);
      text-align: center;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.3;
    }
    .sobre-text h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 3vw, 2.6rem);
      line-height: 1.2;
      color: var(--navy);
      margin-bottom: 1.5rem;
    }
    .sobre-text h2 em {
      font-style: italic;
      color: var(--teal);
    }
    .sobre-text p {
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 1rem;
      font-size: 0.95rem;
    }
    .cred-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
      margin: 2rem 0;
    }

    /* ============ PROCEDIMENTOS ============ */
    #procedimentos {
      padding: 7rem 0;
      background: var(--sky);
    }
    .section-header {
      text-align: center;
      max-width: 560px;
      margin: 0 auto 4rem;
    }
    .section-header .section-tag { justify-content: center; }
    .section-header .section-tag::before { display: none; }
    .section-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      line-height: 1.2;
      color: var(--navy);
    }
    .section-h2 em { font-style: italic; color: var(--teal); }
    .proc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .proc-card {
      background: var(--white);
      padding: 2.25rem 2rem;
      border-radius: 2px;
      border: 1px solid transparent;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }
    .proc-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--teal);
      transform: scaleX(0);
      transition: transform 0.3s ease;
      transform-origin: left;
    }
    .proc-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
      border-color: var(--border);
      border-bottom-color: var(--teal);
    }
    .proc-card:hover::before { transform: scaleX(1); }
    .proc-icon {
      width: 52px;
      height: 52px;
      background: var(--sky);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
    }
    .proc-icon svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
    .proc-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .proc-card p {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-weight: 300;
    }
    .proc-link {
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      transition: gap 0.2s;
    }
    .proc-link:hover { gap: 0.7rem; }

    /* ============ FORMAÇÃO (TIMELINE) ============ */
    #formacao {
      padding: 7rem 0;
      background: var(--navy);
    }
    .formacao-inner { max-width: 760px; margin: 0 auto; }
    .formacao-inner .section-tag { justify-content: center; }
    .formacao-inner .section-tag::before { display: none; }
    .formacao-header {
      text-align: center;
      margin-bottom: 4rem;
    }
    .formacao-header h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      line-height: 1.2;
    }
    .formacao-header h2 em { font-style: italic; color: var(--teal-light); }
    .timeline {
      position: relative;
      padding-left: 2rem;
    }
    .timeline::before {
      content: '';
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: rgba(26,122,138,0.3);
    }
    .timeline-item {
      position: relative;
      padding: 0 0 2.5rem 2.5rem;
    }
    .timeline-item:last-child { padding-bottom: 0; }
    .timeline-dot {
      position: absolute;
      left: -1rem;
      top: 4px;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--navy-deep);
      border: 2px solid var(--teal);
      z-index: 1;
    }
    .timeline-dot::after {
      content: '';
      position: absolute;
      inset: 3px;
      border-radius: 50%;
      background: var(--teal);
    }
    .timeline-year {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.35rem;
    }
    .timeline-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.15rem;
      color: var(--white);
      margin-bottom: 0.35rem;
    }
    .timeline-sub {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.5);
      font-weight: 300;
    }
    .formacao-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      justify-content: center;
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 1px solid rgba(255,255,255,0.08);
    }
    .cert-badge {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.6rem 1.1rem;
      border: 1px solid rgba(26,122,138,0.3);
      border-radius: 2px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
    }
    .cert-badge::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--teal);
      flex-shrink: 0;
    }

    /* ============ DIFERENCIAIS ============ */
    #diferenciais {
      padding: 7rem 0;
      background: var(--white);
    }
    .dif-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }
    .dif-card {
      padding: 2.5rem 2rem;
      background: var(--cream);
      border-radius: 2px;
      border-left: 3px solid var(--teal);
      transition: box-shadow 0.3s;
    }
    .dif-card:hover { box-shadow: var(--shadow); }
    .dif-num {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 3rem;
      color: var(--teal);
      opacity: 0.3;
      line-height: 1;
      margin-bottom: 1rem;
    }
    .dif-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.25rem;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .dif-card p {
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.7;
      font-weight: 300;
    }

    /* ============ DEPOIMENTOS ============ */
    #depoimentos {
      padding: 7rem 0;
      background: var(--cream);
    }
    .depo-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }
    .depo-card {
      position: relative;
      padding: 3rem 2rem 2rem;
      background: var(--white);
      border-radius: 2px;
      border-top: 3px solid var(--teal);
      box-shadow: 0 4px 18px rgba(27,45,79,0.06);
      display: flex;
      flex-direction: column;
    }
    .depo-card::before {
      content: '\201C';
      position: absolute;
      top: 0.5rem; left: 1.5rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 4.5rem;
      line-height: 1;
      color: var(--gold);
      opacity: 0.35;
    }
    .depo-text {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.8;
      font-weight: 300;
      font-style: italic;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }
    .depo-author {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      border-top: 1px solid var(--border);
      padding-top: 1rem;
    }
    .depo-avatar {
      width: 42px;
      height: 42px;
      flex-shrink: 0;
      border-radius: 50%;
      background: var(--sky);
      border: 1px solid var(--border);
      color: var(--teal);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1rem;
      letter-spacing: 0.02em;
    }
    .depo-author-text { display: flex; flex-direction: column; gap: 0.15rem; }
    .depo-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--navy);
      line-height: 1.2;
    }
    .depo-context {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      margin-top: 0.25rem;
    }
    .depo-disclaimer {
      text-align: center;
      max-width: 620px;
      margin: 3rem auto 0;
      font-size: 0.72rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.6;
    }

    /* ============ FAQ ============ */
    #faq {
      padding: 7rem 0;
      background: var(--sky);
    }
    .faq-list {
      max-width: 760px;
      margin: 3.5rem auto 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }
    .faq-item {
      background: var(--white);
      border-radius: 2px;
      border: 1px solid var(--border);
      overflow: hidden;
    }
    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 1.35rem 1.5rem;
      background: none;
      border: none;
      cursor: pointer;
      text-align: left;
      gap: 1rem;
      transition: background 0.2s;
    }
    .faq-question:hover { background: var(--sky); }
    .faq-question span {
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.92rem;
      color: var(--navy);
    }
    .faq-icon {
      width: 22px;
      height: 22px;
      flex-shrink: 0;
      border: 1px solid var(--border);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      color: var(--teal);
      font-size: 1rem;
      font-weight: 300;
    }
    .faq-item.open .faq-icon {
      background: var(--teal);
      color: var(--white);
      border-color: var(--teal);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }
    .faq-item.open .faq-answer { max-height: 300px; }
    .faq-answer p {
      padding: 0 1.5rem 1.5rem;
      font-size: 0.875rem;
      color: var(--muted);
      line-height: 1.8;
      font-weight: 300;
    }

    /* ============ LOCALIZAÇÃO ============ */
    #localizacao {
      padding: 7rem 0;
      background: var(--white);
    }
    .loc-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 4rem;
      align-items: start;
    }
    .loc-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 2rem;
      color: var(--navy);
      margin-bottom: 2rem;
    }
    .loc-detail {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--border);
    }
    .loc-detail:last-of-type { border-bottom: none; }
    .loc-detail-icon {
      width: 36px;
      height: 36px;
      background: var(--sky);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .loc-detail-icon svg { width: 16px; height: 16px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
    .loc-detail-text strong {
      display: block;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--teal);
      margin-bottom: 0.2rem;
    }
    .loc-detail-text p {
      font-size: 0.88rem;
      color: var(--text);
      font-weight: 300;
    }
    .loc-map {
      border-radius: 2px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
    }
    .loc-map iframe {
      width: 100%;
      height: 380px;
      display: block;
      border: none;
      filter: grayscale(20%);
    }

    /* ============ CTA SECTION ============ */
    #agendar {
      padding: 7rem 0;
      background: var(--navy);
      background-image: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,122,138,0.15) 0%, transparent 70%);
      text-align: center;
    }
    .agendar-inner { max-width: 620px; margin: 0 auto; }
    #agendar h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    #agendar h2 em { font-style: italic; color: var(--teal-light); }
    #agendar p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }
    .agendar-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 2.5rem;
    }
    .btn-whatsapp {
      background: #25D366;
      color: var(--white);
      font-size: 0.92rem;
      padding: 1rem 2rem;
    }
    .btn-whatsapp:hover {
      background: #1eb558;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37,211,102,0.3);
    }
    .agendar-note {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.3);
      letter-spacing: 0.05em;
    }

    /* ============ CONTATO FORM ============ */
    #contato {
      padding: 7rem 0;
      background: var(--cream);
    }
    .contato-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .contato-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: 2rem;
      color: var(--navy);
      margin-bottom: 1rem;
    }
    .contato-info p {
      font-size: 0.88rem;
      color: var(--muted);
      font-weight: 300;
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    .social-links {
      display: flex;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }
    .social-link {
      width: 38px; height: 38px;
      border: 1px solid var(--border);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      color: var(--muted);
    }
    .social-link:hover {
      border-color: var(--teal);
      color: var(--teal);
      background: var(--sky);
    }
    .social-link svg { width: 16px; height: 16px; fill: currentColor; }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
      margin-bottom: 1.25rem;
    }
    .form-group label {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .form-group input,
    .form-group textarea,
    .form-group select {
      width: 100%;
      padding: 0.85rem 1rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 2px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      font-weight: 300;
      color: var(--text);
      transition: border-color 0.2s, box-shadow 0.2s;
      outline: none;
    }
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 3px rgba(26,122,138,0.08);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-privacy {
      font-size: 0.72rem;
      color: var(--muted);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }
    .form-privacy a { color: var(--teal); text-decoration: underline; }
    .form-submit {
      width: 100%;
      padding: 1rem;
      font-size: 0.9rem;
    }

    /* ============ FOOTER ============ */
    footer {
      background: var(--navy-deep);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      margin-bottom: 2rem;
    }
    .footer-brand-name {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.3rem;
      color: var(--white);
      margin-bottom: 0.3rem;
    }
    .footer-brand-name em { color: var(--gold); font-style: normal; }
    .footer-brand-spec {
      font-size: 0.65rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1rem;
    }
    .footer-crm {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.4);
      line-height: 2;
    }
    .footer-crm strong { color: var(--teal-light); }
    .footer-col h4 {
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 1.25rem;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.65rem;
    }
    .footer-links a {
      font-size: 0.82rem;
      font-weight: 300;
      color: rgba(255,255,255,0.5);
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--white); }
    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin-bottom: 0.85rem;
    }
    .footer-contact-item svg {
      width: 14px; height: 14px;
      stroke: var(--teal);
      fill: none;
      stroke-width: 1.5;
      flex-shrink: 0;
      margin-top: 3px;
    }
    .footer-contact-item span {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      font-weight: 300;
      line-height: 1.5;
    }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.25);
    }
    .footer-cfm {
      font-size: 0.65rem;
      color: rgba(255,255,255,0.2);
      text-align: right;
      max-width: 380px;
      line-height: 1.6;
    }

    /* ============ WHATSAPP FLOAT ============ */
    .whatsapp-float {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      z-index: 200;
    }
    .whatsapp-float a {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #25D366;
      color: var(--white);
      padding: 0.85rem 1.25rem 0.85rem 1rem;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 500;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    .whatsapp-float a:hover {
      padding-right: 1.5rem;
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    }
    .whatsapp-float svg { width: 20px; height: 20px; fill: var(--white); flex-shrink: 0; }
    .whatsapp-pulse {
      position: absolute;
      top: 50%; left: 12px;
      transform: translateY(-50%);
      width: 20px; height: 20px;
      border-radius: 50%;
      background: #25D366;
      animation: pulse-ring 2s ease-out infinite;
      pointer-events: none;
    }

    /* ============ MOBILE NAV ============ */
    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--navy-deep);
      z-index: 150;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 2rem;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--white);
      transition: color 0.2s;
    }
    .mobile-nav a:hover { color: var(--gold); }
    .mobile-nav .close-nav {
      position: absolute;
      top: 1rem; right: 1rem;
      width: 44px;
      height: 44px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      color: var(--white);
      font-size: 1.4rem;
      line-height: 1;
      cursor: pointer;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, transform 0.2s;
      z-index: 1;
    }
    .mobile-nav .close-nav:hover {
      background: rgba(255,255,255,0.15);
      transform: rotate(90deg);
    }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .hero-grid { grid-template-columns: 1fr; }
      .hero-photo-wrap { margin-top: 2.5rem; padding-bottom: 1rem; }
      .hero-photo-frame { width: 260px; margin: 0 auto; }
      .hero-h1 { font-size: 2.2rem; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .sobre-grid { grid-template-columns: 1fr; }
      .sobre-photo-wrap { margin-bottom: 3rem; }
      .proc-grid { grid-template-columns: repeat(2, 1fr); }
      .dif-grid { grid-template-columns: 1fr; }
      .depo-grid { grid-template-columns: 1fr; }
      .loc-grid { grid-template-columns: 1fr; }
      .contato-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .footer-cfm { text-align: center; }
      .cred-list { grid-template-columns: 1fr; }
    }

    @media (max-width: 600px) {
      .container { padding: 0 1.25rem; }
      #hero { padding-top: 4.5rem; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .proc-grid { grid-template-columns: 1fr; }
      .agendar-actions { flex-direction: column; align-items: stretch; }
      .agendar-actions .btn { justify-content: center; }
      .whatsapp-float a span { display: none; }
      .whatsapp-float a { border-radius: 50%; padding: 0.85rem; }
      .whatsapp-pulse { left: 50%; transform: translate(-50%, -50%); }
    }

    /* ============ FORMULÁRIO DE PLUGIN ============ */
    /* Estilos para plugins externos (WPForms, CF7) renderizados em .contato-form-wrap */
    .contato-form-wrap .wpforms-field-label,
    .contato-form-wrap label {
      font-size: 0.72rem !important;
      font-weight: 500 !important;
      letter-spacing: 0.1em !important;
      text-transform: uppercase !important;
      color: var(--muted) !important;
      margin-bottom: 0.4rem !important;
    }
    .contato-form-wrap input[type="text"],
    .contato-form-wrap input[type="email"],
    .contato-form-wrap input[type="tel"],
    .contato-form-wrap input[type="url"],
    .contato-form-wrap textarea,
    .contato-form-wrap select {
      width: 100% !important;
      padding: 0.85rem 1rem !important;
      background: var(--white) !important;
      border: 1px solid var(--border) !important;
      border-radius: 2px !important;
      font-family: 'DM Sans', sans-serif !important;
      font-size: 0.9rem !important;
      font-weight: 300 !important;
      color: var(--text) !important;
    }
    .contato-form-wrap input:focus,
    .contato-form-wrap textarea:focus,
    .contato-form-wrap select:focus {
      border-color: var(--teal) !important;
      box-shadow: 0 0 0 3px rgba(26,122,138,0.08) !important;
      outline: none !important;
    }
    .contato-form-wrap button[type="submit"],
    .contato-form-wrap input[type="submit"] {
      width: 100%;
      background: var(--gold);
      color: var(--navy);
      padding: 1rem;
      font-family: 'DM Sans', sans-serif;
      font-weight: 500;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      border: none;
      border-radius: 2px;
      cursor: pointer;
      transition: all 0.25s ease;
    }
    .contato-form-wrap button[type="submit"]:hover,
    .contato-form-wrap input[type="submit"]:hover {
      background: var(--gold-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(212,160,23,0.35);
    }

    /* ============ LOGO CUSTOMIZADO ============ */
    /* Definido em Aparência → Personalizar → Identidade do Site */
    .nav-logo-img {
      display: block;
      height: 44px;
      width: auto;
      max-width: 240px;
      transition: opacity 0.2s, height 0.3s;
    }
    .nav-logo:hover .nav-logo-img { opacity: 0.85; }
    #nav.scrolled .nav-logo-img { height: 38px; }

    @media (max-width: 600px) {
      .nav-logo-img { height: 36px; max-width: 180px; }
    }

    /* ============ ARTIGOS — SEÇÃO HOMEPAGE ============ */
    #artigos {
      padding: 7rem 0;
      background: var(--white);
    }
    .artigos-sub {
      margin-top: 1rem;
      font-size: 0.9rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.7;
    }
    .artigos-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.75rem;
    }
    .artigo-card {
      background: var(--cream);
      border-radius: 2px;
      border: 1px solid var(--border);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .artigo-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow);
    }
    .artigo-thumb-link { display: block; }
    .artigo-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      overflow: hidden;
      position: relative;
      background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    }
    .artigo-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .artigo-card:hover .artigo-thumb img { transform: scale(1.04); }
    .artigo-thumb-placeholder {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      min-height: 160px;
    }
    .artigo-thumb-placeholder svg { width: 36px; height: 36px; }
    .artigo-cat {
      position: absolute;
      top: 0.85rem;
      left: 0.85rem;
      background: var(--teal);
      color: var(--white);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.3rem 0.65rem;
      border-radius: 2px;
    }
    .artigo-body {
      padding: 1.75rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .artigo-meta {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      margin-bottom: 0.85rem;
      font-size: 0.68rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .artigo-meta-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: var(--muted);
      flex-shrink: 0;
    }
    .artigo-card h3,
    .artigo-card-h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.2rem;
      line-height: 1.3;
      color: var(--navy);
      margin-bottom: 0.75rem;
    }
    .artigo-card h3 a,
    .artigo-card-h2 a { color: inherit; }
    .artigo-card h3 a:hover,
    .artigo-card-h2 a:hover { color: var(--teal); }
    .artigo-excerpt {
      font-size: 0.85rem;
      color: var(--muted);
      line-height: 1.7;
      font-weight: 300;
      margin-bottom: 1.5rem;
      flex-grow: 1;
    }
    .artigo-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--teal);
      border-top: 1px solid var(--border);
      padding-top: 1.25rem;
      margin-top: auto;
      transition: gap 0.2s;
    }
    .artigo-link:hover { gap: 0.7rem; }
    .artigo-link svg { width: 14px; height: 14px; flex-shrink: 0; }
    .artigos-footer {
      text-align: center;
      margin-top: 3rem;
    }
    .btn-outline-teal svg { width: 14px; height: 14px; flex-shrink: 0; }

    /* ============ ARTIGOS — ARCHIVE ============ */
    .archive-hero {
      background: var(--navy);
      padding: 8rem 0 5rem;
      background-image: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,122,138,0.15) 0%, transparent 70%);
    }
    .archive-hero .section-tag { justify-content: flex-start; }
    .archive-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 1rem;
    }
    .archive-title em { font-style: italic; color: var(--teal-light); }
    .archive-desc {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      max-width: 560px;
      line-height: 1.7;
    }
    .archive-body {
      padding: 5rem 0 7rem;
      background: var(--cream);
    }
    .artigos-grid--full { grid-template-columns: repeat(3, 1fr); }
    .archive-pagination {
      margin-top: 3.5rem;
      display: flex;
      justify-content: center;
    }
    .archive-pagination ul {
      display: flex;
      gap: 0.5rem;
      list-style: none;
      flex-wrap: wrap;
      justify-content: center;
    }
    .archive-pagination .page-numbers {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      border: 1px solid var(--border);
      border-radius: 2px;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--muted);
      background: var(--white);
      transition: all 0.2s;
    }
    .archive-pagination .page-numbers.current,
    .archive-pagination .page-numbers:hover {
      background: var(--teal);
      border-color: var(--teal);
      color: var(--white);
    }
    .archive-pagination .prev,
    .archive-pagination .next { width: auto; padding: 0 1rem; }
    .archive-empty {
      text-align: center;
      padding: 4rem 0;
    }
    .archive-empty p {
      color: var(--muted);
      margin-bottom: 2rem;
      font-size: 1rem;
    }

    /* ============ SINGLE POST ============ */
    .post-breadcrumb {
      background: var(--sky);
      border-bottom: 1px solid var(--border);
      padding: 5.5rem 0 0.85rem;
    }
    .post-breadcrumb .container {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: var(--muted);
      flex-wrap: wrap;
    }
    .post-breadcrumb a { color: var(--teal); transition: color 0.2s; }
    .post-breadcrumb a:hover { color: var(--navy); }
    .post-breadcrumb-sep { color: var(--muted); opacity: 0.5; }
    .post-hero {
      background: var(--sky);
      padding: 2.5rem 0 4rem;
    }
    .post-cat-tag {
      display: inline-block;
      background: var(--teal);
      color: var(--white);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      padding: 0.3rem 0.75rem;
      border-radius: 2px;
      margin-bottom: 1.25rem;
    }
    .post-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1.15;
      color: var(--navy);
      max-width: 760px;
      margin-bottom: 2rem;
    }
    .post-meta-row {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .post-author-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid var(--white);
      box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    .post-author-avatar-wrap img { border-radius: 50%; width: 40px; height: 40px; }
    .post-meta-text { display: flex; flex-direction: column; gap: 0.2rem; }
    .post-author-name {
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--navy);
    }
    .post-date-time {
      font-size: 0.72rem;
      color: var(--muted);
      font-weight: 300;
    }
    .post-featured-img {
      background: var(--sky);
      padding-bottom: 4rem;
    }
    .post-thumb-img {
      width: 100%;
      max-height: 480px;
      object-fit: cover;
      border-radius: 2px;
      display: block;
    }
    .post-content-wrap {
      padding: 5rem 0;
      background: var(--white);
    }
    .post-content {
      max-width: 720px;
      margin: 0 auto;
      font-size: 1rem;
      line-height: 1.85;
      color: var(--text);
      font-weight: 300;
    }
    .post-content h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.8rem;
      color: var(--navy);
      margin: 2.5rem 0 1rem;
      line-height: 1.2;
    }
    .post-content h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.4rem;
      color: var(--navy);
      margin: 2rem 0 0.75rem;
    }
    .post-content p { margin-bottom: 1.25rem; }
    .post-content ul,
    .post-content ol {
      margin: 1rem 0 1.25rem 1.5rem;
    }
    .post-content li { margin-bottom: 0.4rem; }
    .post-content strong { font-weight: 500; color: var(--navy); }
    .post-content a { color: var(--teal); text-decoration: underline; }
    .post-content blockquote {
      border-left: 3px solid var(--teal);
      padding: 1rem 1.5rem;
      margin: 2rem 0;
      background: var(--sky);
      font-style: italic;
      color: var(--muted);
    }
    .post-content img {
      border-radius: 2px;
      margin: 1.5rem auto;
      max-width: 100%;
    }
    .post-tags {
      max-width: 720px;
      margin: 3rem auto 0;
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      padding-top: 2rem;
      border-top: 1px solid var(--border);
    }
    .post-tag {
      padding: 0.3rem 0.75rem;
      border: 1px solid var(--border);
      border-radius: 2px;
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--muted);
      transition: all 0.2s;
    }
    .post-tag:hover { border-color: var(--teal); color: var(--teal); }
    .post-nav-links {
      max-width: 720px;
      margin: 2rem auto 0;
    }
    .post-back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.08em;
      color: var(--teal);
      transition: gap 0.2s;
    }
    .post-back-link:hover { gap: 0.8rem; }
    .post-back-link svg { width: 14px; height: 14px; }
    .post-cta {
      padding: 6rem 0;
      background: var(--navy);
      background-image: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(26,122,138,0.15) 0%, transparent 70%);
      text-align: center;
    }
    .post-cta-inner { max-width: 560px; margin: 0 auto; }
    .post-cta h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    .post-cta h2 em { font-style: italic; color: var(--teal-light); }
    .post-cta p {
      font-size: 0.95rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      margin-bottom: 2.5rem;
      line-height: 1.7;
    }

    /* ============ RESPONSIVO — ARTIGOS/SINGLE/ARCHIVE ============ */
    @media (max-width: 900px) {
      .artigos-grid,
      .artigos-grid--full { grid-template-columns: repeat(2, 1fr); }
      .archive-hero { padding: 7rem 0 4rem; }
    }
    @media (max-width: 600px) {
      .artigos-grid,
      .artigos-grid--full { grid-template-columns: 1fr; }
      .post-title { font-size: 1.8rem; }
      .post-content { font-size: 0.95rem; }
      .archive-body { padding: 3rem 0 5rem; }
    }

    /* ============ HOSPITAIS / AFILIAÇÕES ============ */
    #hospitais {
      padding: 7rem 0;
      background: var(--sky);
    }
    .hosp-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem;
    }
    .hosp-card {
      display: flex;
      align-items: flex-start;
      gap: 1.25rem;
      background: var(--white);
      border: 1px solid var(--border);
      border-left: 3px solid var(--teal);
      border-radius: 2px;
      padding: 1.75rem 1.85rem;
      transition: box-shadow 0.3s, transform 0.3s;
    }
    .hosp-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
    .hosp-icon {
      width: 48px;
      height: 48px;
      flex-shrink: 0;
      background: var(--sky);
      border-radius: 2px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .hosp-icon svg { width: 22px; height: 22px; stroke: var(--teal); }
    .hosp-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--navy);
      margin-bottom: 0.3rem;
      line-height: 1.25;
    }
    .hosp-text p {
      font-size: 0.84rem;
      color: var(--muted);
      font-weight: 300;
      line-height: 1.6;
    }

    /* ============ JORNADA DO PACIENTE ============ */
    #jornada {
      padding: 7rem 0;
      background: var(--navy);
      background-image: radial-gradient(ellipse 70% 60% at 70% 30%, rgba(26,122,138,0.18) 0%, transparent 60%);
    }
    .section-h2--light { color: var(--white); }
    .section-h2--light em { color: var(--teal-light); }
    .jornada-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }
    .jornada-step {
      position: relative;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(26,122,138,0.25);
      border-radius: 2px;
      padding: 2.25rem 1.85rem 1.85rem;
      transition: border-color 0.3s, background 0.3s;
    }
    .jornada-step:hover {
      border-color: rgba(26,122,138,0.55);
      background: rgba(255,255,255,0.05);
    }
    .jornada-num {
      position: absolute;
      top: -18px;
      left: 1.85rem;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--navy);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.15rem;
      box-shadow: 0 4px 14px rgba(212,160,23,0.3);
    }
    .jornada-step h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 600;
      font-size: 1.2rem;
      color: var(--white);
      margin: 0.5rem 0 0.6rem;
    }
    .jornada-step p {
      font-size: 0.85rem;
      color: rgba(255,255,255,0.55);
      font-weight: 300;
      line-height: 1.7;
    }

    /* ============ HERO HIGHLIGHTS ============ */
    .hero-highlights {
      list-style: none;
      display: grid;
      gap: 0.7rem;
      margin: 0 0 2rem;
      max-width: 480px;
    }
    .hero-highlights li {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      font-size: 0.9rem;
      font-weight: 300;
      color: rgba(255,255,255,0.82);
      line-height: 1.5;
    }
    .hero-highlights svg {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
      margin-top: 2px;
      color: var(--gold);
    }

    /* ============ BANNER DE IMAGEM ============ */
    #banner-img {
      position: relative;
      padding: 6rem 0;
      text-align: center;
      background-color: var(--navy);
      background-image: linear-gradient(135deg, var(--navy) 0%, var(--teal) 130%);
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }
    .banner-img-inner { max-width: 640px; margin: 0 auto; }
    #banner-img h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(1.8rem, 3.2vw, 2.6rem);
      color: var(--white);
      line-height: 1.2;
      margin-bottom: 1rem;
    }
    #banner-img h2 em { font-style: italic; color: var(--gold); }
    #banner-img p {
      font-size: 0.95rem;
      font-weight: 300;
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
    }

    /* ============ RESPONSIVO — HOSPITAIS/JORNADA/BANNER ============ */
    @media (max-width: 900px) {
      .hosp-grid { grid-template-columns: 1fr 1fr; }
      .jornada-grid { grid-template-columns: 1fr 1fr; }
      #banner-img { background-attachment: scroll; }
    }
    @media (max-width: 600px) {
      .hosp-grid { grid-template-columns: 1fr; }
      .jornada-grid { grid-template-columns: 1fr; gap: 2rem; }
      #hospitais, #jornada { padding: 5rem 0; }
      #banner-img { padding: 4.5rem 0; }
    }