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

  :root {
    --navy: #0D2D6B;
    --blue: #1A7FE8;
    --light-gray: #F0F2F7;
    --mid-gray: #D0D6E2;
    --white: #ffffff;
    --text-dark: #0A1A3A;
    --text-mid: #4A5A78;
    --text-light: #8A9ABE;
    --radius: 4px;
    --gap: 10px;
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #E8ECF4;
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ─── NAV ─── */
  nav {
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    padding: 0 40px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(208, 214, 226, 0.5);
    position: sticky;
    top: 0;
    z-index: 100;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .nav-logo-icon {
    width: 36px;
    height: 36px;
    border: 2px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Fraunces', serif;
    font-size: 14px;
    color: var(--navy);
    font-weight: 700;
  }

  .nav-logo-text {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 0.02em;
  }

  .nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
  }

  .nav-links a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.2s;
  }

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

  .nav-cta {
    background: var(--blue);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-size: 13px !important;
    font-weight: 500 !important;
    text-decoration: none;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: var(--navy) !important; color: var(--white) !important; }

  /* ─── WRAPPER ─── */
  .page { max-width: 1280px; margin: 0 auto; padding: 40px 40px 80px; }

  /* ─── SECTION LABEL ─── */
  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 8px;
  }

  .section-title {
    font-family: 'Fraunces', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 32px;
    line-height: 1.2;
  }

  /* ─── PHOTO PLACEHOLDER ─── */
  .photo {
    background: var(--mid-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: var(--text-light);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    overflow: hidden;
    position: relative;
  }

  .photo svg { opacity: 0.4; }

  .photo.dark {
    background: rgba(13,45,107,0.15);
    color: rgba(255,255,255,0.5);
  }

  .photo.dark svg { opacity: 0.3; filter: brightness(10); }

  /* ─── PLUS BUTTON ─── */
  .plus-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 300;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .plus-btn.dark {
    background: var(--blue);
  }

  /* ─── SECTION HERO ─── */
  .hero-wrapper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 40px;
    margin-top: 40px;
  }

  .hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1554475901-4538ddfbccc2?w=1600&q=80');
    background-size: cover;
    background-position: center 40%;
    z-index: 0;
  }

  .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(232, 236, 244, 0.62);
  }

  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 320px 1fr 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: var(--gap);
    padding: 24px;
  }

  .hero-main {
    grid-row: 1 / 3;
    background: var(--blue);
    background-image: url('assets/img/bento-main.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
  }

  .hero-main .photo-layer {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 80, 0.55);
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-main-content { position: relative; z-index: 1; }

  .hero-tag {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
    font-weight: 500;
  }

  .hero-title {
    font-family: 'Fraunces', serif;
    font-size: 38px;
    font-weight: 700;
    color: white;
    line-height: 1.15;
  }

  .hero-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    margin-top: 16px;
    line-height: 1.6;
    max-width: 240px;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .hero-arrow svg { color: white; }

  /* card leve */
  .card-light {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    overflow: hidden;
    position: relative;
  }

  .card-light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,45,107,0.12); }

  .card-light .photo-block {
    position: absolute;
    inset: 0;
    opacity: 0;
  }

  .card-light .card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; justify-content: space-between; }

  .card-title {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-top: 12px;
  }

  /* card escuro */
  .card-dark {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.15s;
    overflow: hidden;
    position: relative;
  }

  .card-dark:hover { transform: translateY(-2px); }

  .card-dark .card-title { color: white; }

  .card-dark .photo-block {
    position: absolute;
    inset: 0;
    opacity: 0.15;
  }

  .card-dark .card-inner { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; justify-content: space-between; }

  /* ─── PHOTO PLACEHOLDER INLINE ─── */
  .photo-placeholder {
    background: linear-gradient(135deg, #c8d0e0, #dde3ef);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: #8a9abe;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .photo-placeholder-dark {
    background: rgba(255,255,255,0.08);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    color: rgba(255,255,255,0.3);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── SOBRE (2 col) ─── */
  .sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap);
    margin-bottom: 40px;
  }

  .sobre-text {
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
  }

  .sobre-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.8;
    margin-bottom: 16px;
  }

  .sobre-text blockquote {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: white;
    line-height: 1.4;
    border-left: 3px solid var(--blue);
    padding-left: 20px;
    margin: 24px 0;
  }

  .sobre-photo {
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 420px;
    position: relative;
  }

  .sobre-photo .photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border-radius: var(--radius);
  }

  .stat-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--blue);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius);
  }

  .stat-badge .num {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    display: block;
  }

  .stat-badge .label {
    font-size: 12px;
    opacity: 0.8;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  /* ─── ESTUDOS ─── */
  .estudos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-bottom: 40px;
  }

  .estudo-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.15s;
  }

  .estudo-card:hover { transform: translateY(-3px); }

  .estudo-img {
    height: 180px;
  }

  .estudo-body {
    padding: 20px 22px 24px;
  }

  .estudo-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: #E6F0FB;
    color: var(--blue);
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
  }

  .estudo-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .estudo-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
  }

  .estudo-status {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-mid);
    font-weight: 500;
  }

  .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
  }

  .dot.yellow { background: #f59e0b; }
  .dot.gray { background: var(--mid-gray); }

  /* ─── VOLUNTÁRIO ─── */
  .voluntario-banner {
    background: linear-gradient(135deg, #0e387b 0%, var(--navy) 48%, #071c42 100%);
    border-radius: 0;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
    align-items: center;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 8px;
    margin-bottom: 48px;
    padding-inline: max(40px, calc((100vw - 1200px) / 2));
    min-height: 560px;
  }

  .voluntario-text {
    padding: 64px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .voluntario-text .section-label { color: rgba(255,255,255,0.5); }

  .voluntario-text .section-title {
    color: white;
    font-size: 36px;
    margin-bottom: 16px;
  }

  .voluntario-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 32px;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    align-self: flex-start;
  }

  .voluntario-photo {
    position: relative;
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 32px 0 32px 8px;
  }

  .voluntario-photo .photo-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .voluntario-photo .voluntario-video {
    width: 100%;
    height: 100%;
    max-height: 100%;
    aspect-ratio: 9 / 16;
    object-fit: contain;
    background: var(--navy);
    border-radius: 14px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.35);
    display: block;
    margin: 0 auto;
  }

  .voluntario-photo .photo-placeholder-dark {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 0;
  }

  /* ─── FAQ / DÚVIDAS ─── */
  .faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
    margin-bottom: 40px;
  }

  .faq-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 26px;
    cursor: pointer;
    transition: transform 0.15s;
  }

  .faq-card:hover { transform: translateY(-2px); }

  .faq-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E6F0FB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }

  .faq-q {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .faq-a {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.7;
  }

  /* ─── DEPOIMENTOS ─── */
  .depo-section {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 56px 48px;
    margin-bottom: 40px;
  }

  .depo-section .section-label { color: rgba(255,255,255,0.5); }
  .depo-section .section-title { color: white; margin-bottom: 36px; }

  .depo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
  }

  .depo-card {
    background: rgba(255,255,255,0.07);
    border-radius: var(--radius);
    padding: 24px;
  }

  .depo-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
  }

  .depo-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
  }

  .depo-avatar .photo-placeholder-dark {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    min-height: unset;
    font-size: 9px;
  }

  .depo-name {
    font-weight: 500;
    font-size: 15px;
    color: white;
  }

  .depo-city {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
  }

  .depo-text {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    font-style: italic;
  }

  /* ─── EQUIPE ─── */
  .equipe-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-bottom: 40px;
  }

  .equipe-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.15s;
    cursor: pointer;
  }

  .equipe-card:hover { transform: translateY(-2px); }

  .equipe-foto {
    height: 200px;
  }

  .equipe-info {
    padding: 16px 18px 20px;
  }

  .equipe-nome {
    font-family: 'Fraunces', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
  }

  .equipe-cargo {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.04em;
  }

  /* ─── PARCEIROS / B2B ─── */
  .parceiros-section {
    background: var(--white);
    border-radius: var(--radius);
    padding: 48px;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .parceiros-text .section-title { margin-bottom: 12px; }

  .parceiros-text p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 24px;
  }

  .parceiros-logos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .logo-box {
    height: 64px;
    background: var(--light-gray);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ─── CONTATO ─── */
  .contato-grid {
    display: block;
    margin-bottom: 40px;
  }

  .contato-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 44px;
  }

  .contato-form-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    align-items: start;
  }

  .cf-col { display: flex; flex-direction: column; }
  .cf-message { flex: 1; display: flex; flex-direction: column; }
  .cf-message textarea { flex: 1; min-height: 132px; }

  .contato-form h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 24px;
  }

  .form-group { margin-bottom: 16px; }

  .form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-mid);
    margin-bottom: 6px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    background: var(--light-gray);
    border: 1px solid transparent;
    border-radius: var(--radius);
    padding: 12px 14px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
  }

  .form-group input:focus,
  .form-group textarea:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  .contato-info {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    position: relative;
  }

  .contato-info .photo-placeholder-dark {
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    opacity: 0.35;
  }

  .contato-info-content { position: relative; z-index: 1; }

  .contato-info h3 {
    font-family: 'Fraunces', serif;
    font-size: 22px;
    color: white;
    margin-bottom: 24px;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
  }

  .info-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .info-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 2px;
  }

  .info-value {
    font-size: 14px;
    color: rgba(255,255,255,0.85);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--text-dark);
    padding: 40px;
    border-radius: var(--radius);
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 32px;
  }

  .footer-brand .nav-logo-text { color: white; font-size: 20px; }

  .footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    margin-top: 12px;
    line-height: 1.7;
    max-width: 240px;
  }

  .footer-col h4 {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    margin-bottom: 16px;
  }

  .footer-col ul { list-style: none; }

  .footer-col ul li {
    margin-bottom: 10px;
  }

  .footer-col ul li a {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
  }

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


  /* ─── ACCORDION FAQ ─── */
  .accordion {
    max-width: 820px;
    margin-bottom: 0;
  }

  .acc-item {
    border-bottom: 1px solid var(--mid-gray);
  }

  .acc-item:first-child {
    border-top: 1px solid var(--mid-gray);
  }

  .acc-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 4px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Fraunces', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    text-align: left;
    transition: color 0.2s;
  }

  .acc-btn:hover { color: var(--blue); }
  .acc-btn.open { color: var(--blue); }

  .acc-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--blue);
  }

  .acc-btn.open .acc-icon {
    transform: rotate(180deg);
  }

  .acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.3s ease;
    padding: 0 4px;
  }

  .acc-body.open {
    max-height: 300px;
    padding: 0 4px 20px;
  }

  .acc-body p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.8;
  }

  /* ─── SECTION SEPARATOR ─── */
  .section-sep {
    height: 40px;
  }

  /* ─── PHOTO ICON SVG ─── */
  .ph-icon {
    opacity: 0.35;
  }

  /* ─── INTRO HERO (estilo Roche) ─── */
  .intro-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    background: linear-gradient(135deg, #f5f7fc 0%, #e8ecf8 60%, #f0e8e0 100%);
    overflow: hidden;
  }

  .intro-text {
    padding: 80px 64px 80px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .intro-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 20px;
    display: block;
  }

  .intro-title {
    font-family: 'Fraunces', serif;
    font-size: 46px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.12;
    margin-bottom: 20px;
  }

  .intro-sub {
    font-size: 16px;
    color: var(--text-mid);
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 36px;
  }

  .intro-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }

  .btn-solid {
    display: inline-flex;
    align-items: center;
    background: var(--blue);
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: background 0.2s;
  }

  .btn-solid:hover { background: var(--navy); }

  .btn-outline {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: var(--navy);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--navy);
    letter-spacing: 0.02em;
    transition: all 0.2s;
  }

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

  .intro-photo {
    position: relative;
    overflow: hidden;
  }

  .intro-photo-inner {
    width: 100%;
    height: 100%;
    min-height: 520px;
  }

  /* ═══════════════════════════════════════════════
     COMPLEMENTOS — imagens, logo, idioma, âncoras
  ═══════════════════════════════════════════════ */

  /* faz as fotos de fundo preencherem os blocos */
  .photo-image {
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
  }

  /* logo em imagem no nav e rodapé */
  .nav-logo img { height: 54px; width: auto; display: block; }
  .footer-logo-img { height: 40px; width: auto; display: block; margin-bottom: 20px; }

  /* nav com 8 itens — um pouco mais compacto pra caber */
  nav { padding: 0 48px; }
  .nav-inner {
    max-width: none;
    margin: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 12px; letter-spacing: 0.04em; white-space: nowrap; }
  .nav-right { display: flex; align-items: center; gap: 16px; }

  /* seletor de idioma PT | EN */
  .lang-toggle {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--mid-gray);
    border-radius: 4px;
    overflow: hidden;
  }
  .lang-toggle button {
    border: none;
    background: transparent;
    color: var(--text-mid);
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 6px 10px;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .lang-toggle button.active { background: var(--navy); color: #fff; }

  /* placeholder de logo de parceiro (texto enquanto não há imagem real) */
  .logo-box .logo-text {
    font-family: 'Fraunces', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-mid);
    letter-spacing: 0.02em;
  }

  /* GANCHO — faixa do Manual ANVISA do voluntário */
  .anvisa-hook {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    background: #EAF2FC;
    border: 1px solid #CFE0F6;
    border-radius: var(--radius);
    padding: 28px 36px;
    margin-bottom: 40px;
  }
  .anvisa-hook .hook-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--blue); margin-bottom: 8px;
  }
  .anvisa-hook .hook-title {
    font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700;
    color: var(--navy); line-height: 1.25; margin-bottom: 8px;
  }
  .anvisa-hook .hook-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; max-width: 560px; }

  /* offset de âncora por causa do nav fixo */
  #sobre, #estudos, #equipe, #duvidas, #areas, #contato, #parceiros { scroll-margin-top: 84px; }

  /* FAIXA DE LOGOS DE PARCEIROS (marquee) */
  .logos-marquee {
    overflow: hidden;
    width: 100%;
    padding: 10px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .logos-track {
    display: flex;
    align-items: center;
    gap: 32px;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
  }
  .logos-marquee:hover .logos-track { animation-play-state: paused; }
  .marquee-logo {
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    white-space: nowrap;
    letter-spacing: 0.02em;
  }
  .logos-track img {
    height: 46px;
    width: 150px;
    display: block;
    object-fit: contain;
    object-position: center;
    flex-shrink: 0;
  }
  @keyframes scroll-logos {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  /* esconde idioma inativo */
  [data-lang-hide] { display: none !important; }

  /* ═══════════════════════════════════════════════
     ÁREAS — PRÉVIA NA HOME (2 + teaser)
  ═══════════════════════════════════════════════ */
  .areas-preview { position: relative; margin-bottom: 28px; }
  .areas-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap);
  }
  .area-preview-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(13,45,107,0.07);
    transition: transform 0.18s, box-shadow 0.18s;
  }
  .area-preview-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(13,45,107,0.13); }
  .apc-img { height: 184px; }
  .apc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 8px; }
  .apc-name { font-family: 'Fraunces', serif; font-size: 21px; font-weight: 700; color: var(--navy); line-height: 1.2; }
  .apc-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }
  .areas-preview .teaser { position: relative; }
  .areas-preview .teaser::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(105deg, rgba(232,236,244,0) 18%, rgba(232,236,244,0.55) 52%, rgba(232,236,244,0.96) 86%);
    border-radius: var(--radius);
    pointer-events: none;
  }
  .areas-preview .teaser-hint {
    position: absolute;
    top: 50%; right: 22px;
    transform: translateY(-50%);
    z-index: 2;
    background: rgba(13,45,107,0.94);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 10px 16px;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(13,45,107,0.28);
  }
  .areas-preview-cta { text-align: center; margin-bottom: 40px; }
  @media (max-width: 760px) {
    .areas-preview-grid {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 14px;
      margin: 0 -40px;
      padding: 4px 40px 12px;
      -webkit-overflow-scrolling: touch;
    }
    .areas-preview-grid::-webkit-scrollbar { display: none; }
    .areas-preview-grid { scrollbar-width: none; }
    .area-preview-card { min-width: 80%; scroll-snap-align: start; }
    .areas-preview .teaser::after { display: none; }
    .areas-preview .teaser-hint { display: none; }
  }

  /* ═══════════════════════════════════════════════
     ÁREAS TERAPÊUTICAS — cards com foto do PI
  ═══════════════════════════════════════════════ */
  .areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap);
    margin-bottom: 40px;
  }
  .area-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.15s, box-shadow 0.15s;
  }
  .area-card:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(13,45,107,0.12); }
  .area-card { cursor: pointer; scroll-margin-top: 84px; }
  .area-card .area-open-hint {
    display: inline-flex; align-items: center; gap: 6px;
    margin-top: 14px;
    font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
    color: var(--blue);
  }

  /* ─── DRAWER PREMIUM DO PI ─── */
  .area-overlay {
    position: fixed; inset: 0;
    background: rgba(8,16,34,0.55);
    -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px);
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
    z-index: 200;
  }
  .area-overlay.open { opacity: 1; visibility: visible; }
  .area-drawer {
    position: fixed; top: 0; right: 0; height: 100%;
    width: 500px; max-width: 92vw;
    background: var(--white);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.42s cubic-bezier(0.4,0,0.1,1);
    display: flex; flex-direction: column;
    box-shadow: -24px 0 70px rgba(8,16,34,0.28);
  }
  .area-drawer.open { transform: translateX(0); }
  .area-drawer-head {
    position: relative;
    padding: 40px 40px 26px;
    background: linear-gradient(135deg, #0A1A3A, #0D2D6B);
    color: #fff;
  }
  .area-drawer-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
    margin-bottom: 10px;
  }
  .area-drawer-title {
    font-family: 'Fraunces', serif; font-size: 30px; font-weight: 700;
    line-height: 1.15;
  }
  .area-drawer-close {
    position: absolute; top: 22px; right: 22px;
    width: 38px; height: 38px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.08);
    color: #fff; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .area-drawer-close:hover { background: rgba(255,255,255,0.2); }
  .area-drawer-scroll { overflow-y: auto; padding: 32px 40px 44px; flex: 1; }
  .area-drawer-desc { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }
  .area-pi-block {
    background: var(--light-gray);
    border-radius: var(--radius);
    padding: 26px 24px;
    margin-bottom: 24px;
  }
  .area-pi-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
  .area-pi-portrait {
    width: 72px; height: 72px; border-radius: 50%;
    flex-shrink: 0; overflow: hidden; background: var(--mid-gray);
  }
  .area-pi-portrait .photo-placeholder { width: 100%; height: 100%; min-height: unset; border-radius: 50%; }
  .area-pi-fullname { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 700; color: var(--navy); line-height: 1.2; }
  .area-pi-tag {
    display: inline-block; margin-top: 6px;
    font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--blue); background: #E6F0FB; padding: 4px 10px; border-radius: 20px;
  }
  .area-pi-curr-label {
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-light); margin-bottom: 10px;
  }
  .area-pi-curr-row { display: flex; gap: 10px; font-size: 13px; color: var(--text-mid); line-height: 1.6; margin-bottom: 8px; }
  .area-pi-curr-row strong { color: var(--text-dark); font-weight: 600; min-width: 96px; flex-shrink: 0; }
  .area-lattes {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 16px;
    font-size: 13px; font-weight: 600; color: var(--blue);
    text-decoration: none; letter-spacing: 0.02em;
  }
  .area-lattes:hover { text-decoration: underline; }
  .area-drawer-action { display: flex; flex-direction: column; gap: 10px; }
  .area-drawer-action .btn-primary { justify-content: center; }
  .area-drawer-action .btn-ghost {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 13px 24px; border-radius: var(--radius);
    border: 1.5px solid var(--mid-gray); color: var(--navy);
    font-size: 14px; font-weight: 600; text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
  }
  .area-drawer-action .btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
  body.no-scroll { overflow: hidden; }
  @media (max-width: 520px) {
    .area-drawer-head { padding: 32px 26px 22px; }
    .area-drawer-scroll { padding: 26px 26px 36px; }
    .area-drawer-title { font-size: 25px; }
  }
  .area-pi-photo {
    height: 188px;
    position: relative;
  }
  .area-pi-photo .pi-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: rgba(13,45,107,0.92);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
  }
  .area-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .area-name {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.2;
  }
  .area-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 18px;
    flex: 1;
  }
  .area-pi {
    border-top: 1px solid var(--light-gray);
    padding-top: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .area-pi-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    flex-shrink: 0;
    overflow: hidden;
    background: var(--light-gray);
  }
  .area-pi-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
  }
  .area-pi-role {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--blue);
    font-weight: 600;
    margin-top: 2px;
  }

  /* ═══════════════════════════════════════════════
     COMO PARTICIPAR — passos + faixa de fotos
  ═══════════════════════════════════════════════ */
  .participar-intro {
    max-width: 720px;
    margin-bottom: 40px;
  }
  .participar-intro p {
    font-size: 17px;
    color: var(--text-mid);
    line-height: 1.8;
  }
  .photo-band {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 150px 150px;
    gap: var(--gap);
    margin-bottom: 48px;
  }
  .photo-band .pb-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
  }
  .photo-band .pb-main { grid-row: 1 / 3; }
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap);
    margin-bottom: 40px;
  }
  .step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .step-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #E6F0FB;
    color: var(--blue);
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .step-title {
    font-family: 'Fraunces', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.25;
    margin-bottom: 10px;
  }
  .step-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.65;
  }
  .anvisa-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 32px;
    background: var(--navy);
    border-radius: var(--radius);
    padding: 36px 44px;
    margin-bottom: 40px;
  }
  .anvisa-cta .cta-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px;
  }
  .anvisa-cta .cta-title {
    font-family: 'Fraunces', serif; font-size: 22px; font-weight: 700;
    color: #fff; line-height: 1.3; margin-bottom: 6px;
  }
  .anvisa-cta .cta-desc { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 560px; }
  .anvisa-cta .btn-primary { background: var(--blue); white-space: nowrap; }
  .anvisa-cta .btn-primary:hover { background: #fff; color: var(--navy); }

  /* ─── BOTÕES WHATSAPP ─── */
  .wa-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    background: #25D366; color: #fff; white-space: nowrap;
    padding: 14px 26px; border-radius: var(--radius);
    font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 0.02em;
    border: none; transition: background 0.2s, transform 0.15s;
  }
  .wa-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .wa-btn:hover { background: #1EBE5A; }
  .wa-btn:active { transform: scale(0.97); }

  .wa-float {
    position: fixed; right: 24px; bottom: 24px; z-index: 999;
    width: 60px; height: 60px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.28);
    text-decoration: none; transition: transform 0.2s, box-shadow 0.2s;
  }
  .wa-float svg { width: 30px; height: 30px; }
  .wa-float:hover { transform: scale(1.08); box-shadow: 0 10px 30px rgba(0,0,0,0.36); }
  @media (max-width: 640px) {
    .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
    .wa-float svg { width: 27px; height: 27px; }
  }

  /* ═══════════════════════════════════════════════
     GALERIA DE EVENTOS
  ═══════════════════════════════════════════════ */
  .galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: var(--gap);
  }
  .galeria-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
  }
  .galeria-item.tall { grid-row: span 2; }
  .galeria-item.wide { grid-column: span 2; }
  .galeria-cap {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 16px 18px 14px;
    background: linear-gradient(transparent, rgba(8,18,40,0.82));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
  }
  .galeria-add {
    border: 1.5px dashed var(--mid-gray);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--text-light);
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
  }
  .galeria-add:hover { border-color: var(--blue); color: var(--blue); }
  .galeria-add .ga-plus {
    width: 44px; height: 44px; border-radius: 50%;
    border: 1.5px solid currentColor;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 300; line-height: 1;
  }
  .galeria-add span { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; font-weight: 600; }

  /* ─── responsivo ─── */
  @media (max-width: 1080px) {
    .areas-grid { grid-template-columns: repeat(3, 1fr); }
    .steps-grid { grid-template-columns: repeat(3, 1fr); }
    .galeria-grid { grid-template-columns: repeat(3, 1fr); }
  }
  @media (max-width: 760px) {
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-grid { grid-template-columns: 1fr 1fr; }
    .photo-band { grid-template-columns: 1fr 1fr; grid-template-rows: 130px 130px; }
    .photo-band .pb-main { grid-column: 1 / 3; grid-row: auto; }
    .galeria-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
    .galeria-item.wide { grid-column: span 2; }
    .anvisa-cta { grid-template-columns: 1fr; }
  }
  @media (max-width: 480px) {
    .areas-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; }
  }

  /* ═══════════════════════════════════════════════
     COMO PARTICIPAR — editorial, timeline, premium
  ═══════════════════════════════════════════════ */
  .edit-section { background: #EEF3FB; padding: 64px 0; }
  .edit-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 40px;
    display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 52px; align-items: center;
  }
  .edit-eyebrow {
    font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 14px;
  }
  .edit-title {
    font-family: 'Fraunces', serif; font-size: 32px; font-weight: 700;
    color: var(--navy); line-height: 1.2; margin-bottom: 22px;
  }
  .edit-text p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 16px; }
  .edit-text p:last-child { margin-bottom: 0; }
  .edit-photo {
    border-radius: var(--radius); overflow: hidden; min-height: 380px; position: relative;
    box-shadow: 0 18px 44px rgba(13,45,107,0.16);
  }
  .edit-photo .edit-photo-tag {
    position: absolute; left: 20px; bottom: 20px;
    background: rgba(255,255,255,0.94); color: var(--navy);
    font-size: 12px; font-weight: 600; letter-spacing: 0.02em;
    padding: 8px 14px; border-radius: 30px;
  }

  /* timeline */
  .tl-head { margin-bottom: 38px; }
  .timeline { display: grid; grid-template-columns: repeat(5, 1fr); margin-bottom: 8px; }
  .tl-step {
    display: flex; flex-direction: column; align-items: center; text-align: center;
    padding: 0 14px; position: relative;
  }
  .tl-step::before {
    content: ''; position: absolute; top: 22px; left: -50%;
    width: 100%; height: 2px; background: var(--mid-gray); z-index: 0;
  }
  .tl-step:first-child::before { display: none; }
  .tl-dot {
    position: relative; z-index: 1;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--blue); color: #fff;
    font-family: 'Fraunces', serif; font-weight: 700; font-size: 19px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 6px rgba(26,127,232,0.12);
  }
  .tl-title { font-family: 'Fraunces', serif; font-size: 16px; font-weight: 700; color: var(--navy); line-height: 1.3; margin-bottom: 8px; }
  .tl-desc { font-size: 12.5px; color: var(--text-mid); line-height: 1.6; }

  /* foto institucional do meio */
  .mid-photo {
    border-radius: var(--radius); overflow: hidden;
    height: 360px; margin: 44px 0 40px; position: relative;
  }
  .mid-photo .mid-cap {
    position: absolute; left: 0; right: 0; bottom: 0;
    padding: 26px 30px 22px;
    background: linear-gradient(transparent, rgba(8,18,40,0.78));
    color: #fff; font-size: 15px; font-weight: 500; max-width: 560px;
  }

  /* card premium ANVISA */
  .anvisa-premium {
    background: linear-gradient(135deg, #0A1A3A 0%, #0D2D6B 100%);
    border-radius: 6px; padding: 44px 48px; margin-bottom: 40px;
    display: grid; grid-template-columns: auto 1fr auto; gap: 30px; align-items: center;
    position: relative; overflow: hidden;
  }
  .anvisa-premium::after {
    content: ''; position: absolute; top: -40px; right: -30px;
    width: 200px; height: 200px; border-radius: 50%;
    background: rgba(26,127,232,0.16);
  }
  .anvisa-icon {
    width: 66px; height: 66px; border-radius: 16px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: center; color: #fff;
    position: relative; z-index: 1;
  }
  .anvisa-body { position: relative; z-index: 1; }
  .anvisa-seal {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
    color: #7FB3F2; margin-bottom: 10px;
  }
  .anvisa-premium .ap-title { font-family: 'Fraunces', serif; font-size: 23px; font-weight: 700; color: #fff; line-height: 1.3; margin-bottom: 8px; }
  .anvisa-premium .ap-desc { font-size: 14px; color: rgba(255,255,255,0.74); line-height: 1.65; max-width: 540px; }
  .anvisa-premium .ap-btn {
    position: relative; z-index: 1; white-space: nowrap;
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--navy);
    padding: 14px 26px; border-radius: var(--radius);
    font-size: 14px; font-weight: 600; text-decoration: none; letter-spacing: 0.02em;
    transition: background 0.2s, color 0.2s;
  }
  .anvisa-premium .ap-btn:hover { background: var(--blue); color: #fff; }

  @media (max-width: 860px) {
    .edit-inner { grid-template-columns: 1fr; gap: 32px; }
    .edit-photo { min-height: 260px; }
  }
  @media (max-width: 760px) {
    .timeline { display: flex; flex-direction: column; }
    .tl-step { flex-direction: row; align-items: flex-start; text-align: left; gap: 18px; padding: 0 0 30px 0; }
    .tl-step::before { top: 46px; left: 22px; width: 2px; height: calc(100% - 24px); }
    .tl-step:first-child::before { display: block; }
    .tl-step:last-child::before { display: none; }
    .tl-dot { margin-bottom: 0; flex-shrink: 0; }
    .tl-content { padding-top: 6px; }
    .mid-photo { height: 240px; }
    .anvisa-premium { grid-template-columns: 1fr; gap: 22px; padding: 34px 28px; }
  }

  /* lightbox da galeria */
  .lightbox {
    position: fixed; inset: 0; z-index: 220;
    background: rgba(6,12,28,0.9);
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
    opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
    display: flex; align-items: center; justify-content: center; padding: 5vw;
  }
  .lightbox.open { opacity: 1; visibility: visible; }
  .lightbox-img {
    max-width: 100%; max-height: 84vh;
    background-size: cover; background-position: center;
    width: min(960px, 92vw); aspect-ratio: 3 / 2; border-radius: 6px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transform: scale(0.96); transition: transform 0.3s;
  }
  .lightbox.open .lightbox-img { transform: scale(1); }
  .lightbox-cap {
    position: absolute; bottom: 6vh; left: 0; right: 0; text-align: center;
    color: rgba(255,255,255,0.86); font-size: 14px; font-weight: 500;
  }
  .lightbox-close {
    position: absolute; top: 24px; right: 28px;
    width: 44px; height: 44px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08);
    color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  }
  .lightbox-close:hover { background: rgba(255,255,255,0.2); }
  .galeria-item { cursor: pointer; }

  /* ═══════════════════════════════════════════════
     RODADA DE AJUSTES — junho 2026
  ═══════════════════════════════════════════════ */

  html { scroll-behavior: smooth; }

  /* nav um pouco mais alto pra acomodar a logo maior */
  #sobre, #estudos, #equipe, #duvidas, #areas, #contato, #parceiros, #galeria { scroll-margin-top: 92px; }

  /* ─── LINHA DO TEMPO ANIMADA ─── */
  .timeline { position: relative; }
  .tl-line-base, .tl-line-fill {
    position: absolute; top: 22px; left: 10%; width: 80%; height: 2px; z-index: 0;
  }
  .tl-line-base { background: var(--mid-gray); }
  .tl-line-fill {
    background: linear-gradient(90deg, var(--blue), #4FA0F0);
    transform: scaleX(0); transform-origin: left center;
    transition: transform 2.6s cubic-bezier(0.4,0,0.2,1);
  }
  .timeline.animate .tl-line-fill { transform: scaleX(1); }
  .tl-spark {
    position: absolute; top: 22px; left: 10%; width: 12px; height: 12px;
    margin: -6px 0 0 -6px; border-radius: 50%; background: #fff;
    box-shadow: 0 0 14px 5px rgba(26,127,232,0.85), 0 0 0 4px rgba(26,127,232,0.25);
    opacity: 0; z-index: 2; pointer-events: none;
  }
  .timeline.animate .tl-spark { animation: tlSpark 2.6s cubic-bezier(0.4,0,0.2,1) forwards; }
  @keyframes tlSpark {
    0%   { left: 10%; opacity: 0; }
    8%   { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 90%; opacity: 0; }
  }
  /* dots começam apagados quando a animação está ativa */
  .timeline.animate .tl-dot {
    background: var(--mid-gray);
    box-shadow: 0 0 0 6px rgba(208,214,226,0.18);
    transition: background 0.5s ease, box-shadow 0.5s ease;
  }
  .timeline.animate .tl-step.lit .tl-dot {
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(26,127,232,0.18);
    animation: tlGlow 2.4s ease-in-out 0.1s infinite;
  }
  @keyframes tlGlow {
    0%, 100% { box-shadow: 0 0 0 6px rgba(26,127,232,0.16); }
    50%      { box-shadow: 0 0 0 9px rgba(26,127,232,0.05); }
  }
  .timeline.animate .tl-step .tl-content {
    opacity: 0; transform: translateY(12px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .timeline.animate .tl-step.lit .tl-content { opacity: 1; transform: none; }

  @media (max-width: 760px) {
    .tl-line-base, .tl-line-fill, .tl-spark { display: none; }
    .timeline.animate .tl-step::before { background: var(--mid-gray); transition: background 0.6s ease; }
    .timeline.animate .tl-step.lit::before { background: var(--blue); }
  }
  @media (prefers-reduced-motion: reduce) {
    .tl-line-fill { transition: none; transform: scaleX(1); }
    .tl-spark { display: none; }
    .timeline.animate .tl-dot,
    .timeline.animate .tl-step.lit .tl-dot { background: var(--blue); box-shadow: 0 0 0 6px rgba(26,127,232,0.12); animation: none; }
    .timeline.animate .tl-step .tl-content { opacity: 1; transform: none; transition: none; }
  }

  /* ─── CARD ANVISA com imagem institucional de fundo (20%) ─── */
  .anvisa-premium { isolation: isolate; }
  .anvisa-premium::before {
    content: ''; position: absolute; inset: 0; z-index: 0;
    background-image: url('assets/img/voluntario.jpg');
    background-size: cover; background-position: center 30%;
    opacity: 0.20; pointer-events: none;
  }

  /* ─── ICAPE + Manual integrado ─── */
  .icape-manual {
    margin-top: 28px;
    padding-top: 26px;
    border-top: 1px solid rgba(255,255,255,0.16);
    display: flex; align-items: center; justify-content: space-between;
    gap: 24px; flex-wrap: wrap;
  }
  .icape-manual .im-text { max-width: 460px; }
  .icape-manual .im-title {
    font-family: 'Fraunces', serif; font-size: 17px; font-weight: 700;
    color: #fff; line-height: 1.3; margin-bottom: 6px;
  }
  .icape-manual .im-desc { font-size: 13px; color: rgba(255,255,255,0.66); line-height: 1.6; }
  .icape-manual .btn-manual {
    display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
    background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.28);
    color: #fff; padding: 12px 22px; border-radius: var(--radius);
    font-size: 13.5px; font-weight: 600; text-decoration: none; letter-spacing: 0.02em;
    transition: background 0.2s, border-color 0.2s;
  }
  .icape-manual .btn-manual:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5); }

  /* ─── MISSÃO / VISÃO / VALORES ─── */
  .mvv-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap);
    margin-top: 28px;
  }
  .mvv-card {
    background: linear-gradient(160deg, #2384ec 0%, var(--blue) 55%, #0f63c9 100%);
    border: none;
    border-radius: 6px;
    padding: 30px 28px 32px;
    box-shadow: 0 14px 34px rgba(13, 45, 107, 0.28);
  }
  .mvv-icon {
    width: 40px; height: 40px; border-radius: 0;
    border: none; background: none;
    display: flex; align-items: center; justify-content: center; color: #fff;
    margin-bottom: 22px;
  }
  .mvv-icon svg { width: 30px; height: 30px; }
  .mvv-title {
    font-family: 'Fraunces', serif; font-size: 19px; font-weight: 700;
    color: #fff; margin-bottom: 12px; letter-spacing: 0.01em;
  }
  .mvv-text { font-size: 13.5px; color: rgba(255,255,255,0.86); line-height: 1.7; }
  @media (max-width: 860px) { .mvv-grid { grid-template-columns: 1fr; } }

  /* ─── FAQ COMPACTA ─── */
  .accordion.compact { max-width: 760px; margin: 0 auto; }
  .accordion.compact .acc-btn {
    padding: 16px 4px; font-size: 16px;
  }
  .accordion.compact .acc-icon { width: 17px; height: 17px; }
  .accordion.compact .acc-body p { font-size: 14px; line-height: 1.7; }
  .accordion.compact .acc-body.open { padding: 0 4px 16px; }

  /* ─── TEASER GALERIA NA HOME ─── */
  .galeria-teaser {
    display: flex; align-items: center; justify-content: space-between; gap: 28px;
    background: linear-gradient(135deg, #063B7A 0%, #0A63C7 100%);
    border: none; border-radius: var(--radius);
    padding: 30px 36px; flex-wrap: wrap;
    box-shadow: 0 12px 32px rgba(6, 59, 122, 0.22);
  }
  .galeria-teaser .gt-title {
    font-family: 'Fraunces', serif; font-size: 24px; font-weight: 700;
    color: #fff; margin-bottom: 6px;
  }
  .galeria-teaser .gt-text { font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.6; max-width: 560px; }
  .galeria-teaser .btn-solid {
    background: #fff; color: #063B7A;
    transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  }
  .galeria-teaser .btn-solid:hover {
    background: #fff; color: #063B7A;
    transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  }

  /* ─── FOOTER INSTITUCIONAL (full-width) ─── */
  .site-footer {
    background: var(--text-dark);
    width: 100%;
    margin-top: 0;
    display: block;
    padding: 0;
    border-radius: 0;
    gap: 0;
  }
  .site-footer .footer-inner {
    max-width: 1240px; margin: 0 auto; padding: 56px 40px 44px;
    display: grid; grid-template-columns: 2fr 1.1fr 1.1fr 1.5fr; gap: 48px;
    align-items: start;
  }
  .site-footer .ft-brand .footer-logo-img { height: 44px; margin-bottom: 20px; }
  .site-footer .ft-brand p {
    font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 290px;
  }
  .site-footer .ft-social { display: flex; gap: 10px; margin-top: 22px; }
  .site-footer .ft-social a {
    width: 34px; height: 34px; border-radius: 5px;
    background: rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); transition: background 0.2s, color 0.2s;
  }
  .site-footer .ft-social a:hover { background: var(--blue); color: #fff; }
  .site-footer .ft-social svg { width: 15px; height: 15px; }
  .site-footer h4 {
    font-size: 15px; font-weight: 600; letter-spacing: 0.01em;
    color: #fff; margin-bottom: 20px;
  }
  .site-footer ul { list-style: none; }
  .site-footer ul li { margin-bottom: 12px; }
  .site-footer ul li a {
    font-size: 13.5px; color: rgba(255,255,255,0.62); text-decoration: none;
    transition: color 0.2s; display: inline-flex; align-items: baseline;
  }
  .site-footer ul li a::before {
    content: "\203A"; color: var(--blue); font-weight: 700;
    margin-right: 9px; font-size: 13px;
  }
  .site-footer ul li a:hover { color: #fff; }
  .site-footer .ft-contact .fc-row {
    display: flex; gap: 11px; align-items: flex-start;
    font-size: 13.5px; color: rgba(255,255,255,0.62); line-height: 1.5; margin-bottom: 16px;
  }
  .site-footer .ft-contact .fc-row:last-child { margin-bottom: 0; }
  .site-footer .ft-contact .fc-row svg {
    width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--blue);
  }
  .site-footer .ft-contact .fc-row a { color: inherit; text-decoration: none; transition: color 0.2s; }
  .site-footer .ft-contact .fc-row a:hover { color: #fff; }
  .site-footer .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    max-width: 1240px; margin: 0 auto; padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    font-size: 12.5px; color: rgba(255,255,255,0.42); letter-spacing: 0.01em;
  }
  .site-footer .footer-bottom a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color 0.2s; }
  .site-footer .footer-bottom a:hover { color: #fff; }
  @media (max-width: 980px) {
    .site-footer .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px 40px; padding: 44px 32px 32px; }
    .site-footer .ft-brand { grid-column: 1 / 3; }
  }
  @media (max-width: 560px) {
    .site-footer .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .site-footer .ft-brand { grid-column: auto; }
    .site-footer .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; padding: 18px 32px; }
  }

  /* crops já enquadrados a partir da foto da equipe */
  .equipe-foto.eq-anna   { background-position: center center !important; }
  .equipe-foto.eq-rafael { background-position: center center !important; }
  .equipe-foto.eq-suzara { background-position: center center !important; }

  /* ─── PÁGINA GALERIA DE EVENTOS ─── */
  .gal-filters { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
  .gal-filter {
    border: 1px solid var(--mid-gray); background: #fff; color: var(--text-mid);
    font-family: 'DM Sans', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.02em;
    padding: 9px 20px; border-radius: 30px; cursor: pointer; transition: all 0.2s;
  }
  .gal-filter:hover { border-color: var(--blue); color: var(--blue); }
  .gal-filter.active { background: var(--navy); border-color: var(--navy); color: #fff; }
  .gal-year-block { margin-bottom: 56px; }
  .gal-year-head {
    display: flex; align-items: baseline; gap: 16px; margin-bottom: 8px;
    border-bottom: 1px solid var(--mid-gray); padding-bottom: 12px;
  }
  .gal-year {
    font-family: 'Fraunces', serif; font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1;
  }
  .gal-year-tag { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-light); }
  .gal-event { margin-top: 28px; }
  .gal-event-name {
    font-family: 'Fraunces', serif; font-size: 21px; font-weight: 700; color: var(--text-dark);
    margin-bottom: 4px;
  }
  .gal-event-meta { font-size: 13px; color: var(--text-light); margin-bottom: 18px; }
  .gal-photo-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: var(--gap);
  }
  .gal-photo { border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; transition: transform 0.18s; }
  .gal-photo:hover { transform: translateY(-3px); }
  .gal-photo.wide { grid-column: span 2; }
  .gal-photo.tall { grid-row: span 2; }
  @media (max-width: 1080px) { .gal-photo-grid { grid-template-columns: repeat(3, 1fr); } }
  @media (max-width: 680px) {
    .gal-photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
    .gal-year { font-size: 32px; }
  }

  /* ═══════════════════════════════════════════════
     REVISÃO RESPONSIVA — junho 2026 (aditivo, não altera desktop)
  ═══════════════════════════════════════════════ */

  /* botão de menu mobile — oculto no desktop */
  .nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--navy);
    cursor: pointer;
    padding: 6px;
    align-items: center;
    justify-content: center;
    line-height: 0;
  }

  @media (max-width: 860px) {
    /* NAV mobile: menu suspenso acionado pelo botão */
    .nav-burger { display: flex; }
    .nav-cta { display: none !important; }
    nav { position: sticky; padding: 0 20px; }
    .nav-links {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      flex-direction: column;
      gap: 0;
      background: var(--white);
      border-bottom: 1px solid var(--mid-gray);
      box-shadow: 0 16px 30px rgba(13,45,107,0.12);
      padding: 6px 0;
      display: none;
    }
    nav.menu-open .nav-links { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a {
      display: block;
      padding: 15px 32px;
      font-size: 13px;
      border-bottom: 1px solid var(--light-gray);
    }
    .nav-links li:last-child a { border-bottom: none; }
    .nav-links a:hover { background: var(--light-gray); }

    /* grids que não empilhavam no mobile */
    .voluntario-banner { grid-template-columns: 1fr; min-height: 0; padding-inline: 20px; gap: 0; }
    .voluntario-text { padding: 44px 0 8px; }
    .voluntario-photo { min-height: 0; padding: 0 0 40px; }
    .voluntario-photo .voluntario-video { max-width: 300px; max-height: none; }
    .sobre-grid { grid-template-columns: 1fr; }
    .sobre-text { padding: 36px 30px; }
    .contato-grid { display: block; }
    .contato-form-cols { grid-template-columns: 1fr; column-gap: 0; }
    .estudos-grid { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 600px) {
    .estudos-grid { grid-template-columns: 1fr; }
    .equipe-grid { grid-template-columns: 1fr 1fr !important; }
    .page { padding: 32px 20px 64px; }
    h1.intro-title { font-size: 32px !important; }
    .intro-sub { font-size: 15px; }
    .voluntario-text { padding: 40px 26px; }
    .voluntario-text .section-title { font-size: 28px; }
    .contato-form,
    .contato-info { padding: 30px 24px; }
    .edit-section { padding: 44px 0; }
  }
