/* ===========================
       VARIÁVEIS & RESET
    =========================== */
    :root {
      --primary:        #7B2D8B;
      --primary-dark:   #5a1f67;
      --secondary:      #E91E8C;
      --secondary-dark: #c0186f;
      --accent:         #F5A623;
      --accent-dark:    #d48c10;
      --gradient:       linear-gradient(135deg, #E91E8C 0%, #7B2D8B 100%);
      --dark:           #0d0d1a;
      --text:           #1a1a2e;
      --text-muted:     #6b6b8a;
      --bg:             #ffffff;
      --bg-light:       #faf5ff;
      --border:         #e8e0f0;
      --radius:         16px;
      --radius-sm:      8px;
      --shadow:         0 8px 32px rgba(123,45,139,0.12);
      --shadow-lg:      0 24px 64px rgba(123,45,139,0.2);
      --nav-height:     76px;
      --ease:           cubic-bezier(0.4, 0, 0.2, 1);
      --t:              0.25s;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', -apple-system, sans-serif;
      color: var(--text);
      background: var(--bg);
      font-size: 16px;
      line-height: 1.65;
      overflow-x: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; height: auto; display: block; }
    ul { list-style: none; }

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      line-height: 1.15;
    }

    /* ===========================
       SKIP LINK
    =========================== */
    .skip-link {
      position: absolute;
      top: -100px;
      left: 0;
      background: var(--primary);
      color: #fff;
      padding: 10px 20px;
      z-index: 9999;
      transition: top var(--t) var(--ease);
      border-radius: 0 0 8px 0;
      font-size: 14px;
      font-weight: 600;
    }
    .skip-link:focus { top: 0; }

    /* ===========================
       HEADER / NAV
    =========================== */
    .site-header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      height: var(--nav-height);
      background: var(--gradient);
      transition: box-shadow var(--t) var(--ease);
    }
    .site-header.scrolled {
      box-shadow: 0 4px 24px rgba(123,45,139,0.4);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1280px;
      margin: 0 auto;
      height: 100%;
      padding: 0 28px;
      gap: 20px;
    }

    .site-logo img { height: 42px; width: auto; }

    .main-nav { display: flex; }

    .main-nav > ul {
      display: flex;
      align-items: center;
      gap: 2px;
    }

    .main-nav a {
      color: rgba(255,255,255,0.88);
      font-size: 13.5px;
      font-weight: 500;
      padding: 8px 13px;
      border-radius: 8px;
      transition: all var(--t) var(--ease);
      white-space: nowrap;
      cursor: pointer;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: #fff;
      background: rgba(255,255,255,0.16);
    }

    .nav-highlight a {
      background: var(--accent) !important;
      color: var(--dark) !important;
      font-weight: 700;
      padding: 8px 18px !important;
      border-radius: 40px !important;
    }
    .nav-highlight a:hover {
      background: var(--accent-dark) !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(245,166,35,0.45);
    }

    /* Dropdown */
    .has-dropdown { position: relative; }

    .nav-dropdown-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .nav-dropdown-btn svg {
      transition: transform var(--t) var(--ease);
      flex-shrink: 0;
    }

    .has-dropdown:hover .nav-dropdown-btn svg,
    .has-dropdown.open .nav-dropdown-btn svg {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: #fff;
      border-radius: var(--radius-sm);
      box-shadow: 0 12px 40px rgba(0,0,0,0.15);
      min-width: 180px;
      padding: 16px 6px 6px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--t) var(--ease), transform var(--t) var(--ease);
      z-index: 200;
    }

    .has-dropdown:hover .dropdown-menu,
    .has-dropdown:focus-within .dropdown-menu,
    .has-dropdown.open .dropdown-menu {
      opacity: 1;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0);
    }

    .dropdown-menu a {
      display: block;
      color: var(--text) !important;
      background: none !important;
      padding: 10px 14px !important;
      border-radius: 6px;
      font-size: 14px !important;
      font-weight: 500 !important;
      transition: background var(--t) var(--ease);
    }

    .dropdown-menu a:hover {
      background: var(--bg-light) !important;
      color: var(--primary) !important;
    }

    /* Arrow below header into dropdown */
    .dropdown-menu::before {
      content: '';
      position: absolute;
      top: 4px;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid transparent;
      border-bottom-color: #fff;
      border-top: none;
    }

    .header-socials {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .header-socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      color: #fff;
      font-size: 14px;
      transition: all var(--t) var(--ease);
      cursor: pointer;
    }
    .header-socials a:hover {
      background: rgba(255,255,255,0.28);
      transform: translateY(-2px);
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 40px;
      height: 40px;
      background: rgba(255,255,255,0.15);
      border: none;
      border-radius: 8px;
      cursor: pointer;
      padding: 8px;
      transition: background var(--t);
    }
    .hamburger:hover { background: rgba(255,255,255,0.25); }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: #fff;
      border-radius: 2px;
      margin: 0 auto;
      transition: all var(--t) var(--ease);
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile Nav */
    .mobile-nav {
      position: fixed;
      top: var(--nav-height);
      left: 0; right: 0;
      z-index: 999;
      background: var(--primary-dark);
      padding: 8px 24px 24px;
      transform: translateY(-110%);
      transition: transform 0.35s var(--ease);
      box-shadow: 0 12px 32px rgba(0,0,0,0.3);
    }
    .mobile-nav.open { transform: translateY(0); }

    .mobile-nav a {
      display: block;
      color: rgba(255,255,255,0.88);
      font-size: 15px;
      font-weight: 500;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: all var(--t) var(--ease);
      cursor: pointer;
    }
    .mobile-nav a:last-child { border-bottom: none; }
    .mobile-nav a:hover { color: #fff; padding-left: 8px; }

    .mobile-nav .mobile-subnav-label {
      display: block;
      color: rgba(255,255,255,0.5);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 14px 0 6px;
      border-bottom: none;
      cursor: default;
    }
    .mobile-nav .mobile-subnav-label:hover { padding-left: 0; color: rgba(255,255,255,0.5); }

    .mobile-nav .mobile-subitem {
      padding-left: 16px;
      font-size: 14px;
      color: rgba(255,255,255,0.75);
    }

    /* ===========================
       PAGE CONTENT
    =========================== */
    .page-content { padding-top: var(--nav-height); }

    /* ===========================
       HERO SLIDER
    =========================== */
    .hero-slider {
      position: relative;
      width: 100%;
      overflow: hidden;
      background: #000;
      height: 56vh;
      min-height: 320px;
    }
    .slider-track {
      display: flex;
      height: 100%;
      transition: transform 0.75s var(--ease);
      will-change: transform;
    }
    .slide { min-width: 100%; height: 100%; position: relative; }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .slider-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 48px; height: 48px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.92);
      color: var(--primary);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
      transition: all var(--t) var(--ease);
    }
    .slider-btn:hover {
      background: #fff;
      transform: translateY(-50%) scale(1.1);
      box-shadow: 0 8px 28px rgba(0,0,0,0.28);
    }
    .slider-btn.prev { left: 20px; }
    .slider-btn.next { right: 20px; }
    .slider-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 8px;
      z-index: 10;
    }
    .slider-dot {
      width: 10px; height: 10px;
      border-radius: 5px;
      border: none;
      background: rgba(255,255,255,0.5);
      cursor: pointer;
      transition: all var(--t) var(--ease);
      padding: 0;
    }
    .slider-dot.active { background: #fff; width: 30px; }

    /* ===========================
       SECTIONS BASE
    =========================== */
    .section { padding: 84px 0; }

    .section-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 28px;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 10px;
    }
    .section-label::before {
      content: '';
      display: block;
      width: 28px; height: 2px;
      background: var(--secondary);
      border-radius: 2px;
      flex-shrink: 0;
    }

    .section-title {
      font-size: clamp(28px, 3.5vw, 44px);
      color: var(--primary);
      margin-bottom: 24px;
      font-weight: 800;
    }

    /* ===========================
       QUEM SOMOS
    =========================== */
    .about-section { background: var(--bg); }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .about-text p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 16px;
    }
    .about-text p strong { color: var(--text); font-weight: 600; }

    .pull-quote {
      margin: 28px 0;
      padding: 20px 24px;
      border-left: 4px solid var(--secondary);
      background: linear-gradient(135deg, rgba(233,30,140,0.05), rgba(123,45,139,0.05));
      border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
      font-family: 'Syne', sans-serif;
      font-size: 15px;
      font-style: italic;
      color: var(--primary);
      line-height: 1.65;
    }

    .about-img-wrapper { position: relative; }
    .about-img-wrapper img {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      display: block;
    }

    .img-badge {
      position: absolute;
      bottom: -22px; right: -22px;
      background: var(--gradient);
      color: #fff;
      padding: 18px 22px;
      border-radius: var(--radius);
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 13px;
      text-align: center;
      line-height: 1.3;
      box-shadow: var(--shadow);
    }
    .img-badge strong {
      display: block;
      font-size: 38px;
      line-height: 1;
      margin-bottom: 4px;
    }

    /* Read More */
    .read-more-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.55s var(--ease);
    }
    .read-more-content.expanded { max-height: 700px; }

    .btn-read-more {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: 2px solid var(--secondary);
      color: var(--secondary);
      padding: 10px 22px;
      border-radius: 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--t) var(--ease);
      margin-top: 20px;
    }
    .btn-read-more::after { content: 'Leia mais'; }
    .btn-read-more.expanded::after { content: 'Leia menos'; }
    .btn-read-more:hover {
      background: var(--secondary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(233,30,140,0.3);
    }

    /* ===========================
       LINHAS DE ATUAÇÃO
    =========================== */
    .areas-section {
      background: var(--primary);
      padding: 84px 0;
      position: relative;
      overflow: hidden;
    }
    .areas-section::before {
      content: '';
      position: absolute;
      top: -80px; right: -80px;
      width: 360px; height: 360px;
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      pointer-events: none;
    }
    .areas-section::after {
      content: '';
      position: absolute;
      bottom: -100px; left: -60px;
      width: 480px; height: 480px;
      border-radius: 50%;
      background: rgba(233,30,140,0.12);
      pointer-events: none;
    }
    .areas-header {
      text-align: center;
      margin-bottom: 52px;
      position: relative;
      z-index: 1;
    }
    .areas-header .section-label { color: rgba(255,255,255,0.6); justify-content: center; }
    .areas-header .section-label::before { background: rgba(255,255,255,0.35); }
    .areas-header .section-title { color: #fff; }

    .areas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
      z-index: 1;
    }

    .area-card {
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: var(--radius);
      padding: 44px 28px;
      text-align: center;
      transition: all var(--t) var(--ease);
      cursor: default;
      backdrop-filter: blur(8px);
    }
    .area-card:hover {
      background: rgba(255,255,255,0.14);
      transform: translateY(-6px);
      box-shadow: 0 20px 52px rgba(0,0,0,0.22);
      border-color: rgba(255,255,255,0.2);
    }
    .area-icon-wrap {
      width: 72px; height: 72px;
      border-radius: 20px;
      background: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      box-shadow: 0 8px 28px rgba(245,166,35,0.4);
      transition: transform var(--t) var(--ease);
    }
    .area-card:hover .area-icon-wrap { transform: scale(1.08); }
    .area-icon-wrap svg { width: 32px; height: 32px; stroke: #1a1a2e; }
    .area-card h3 { color: #fff; font-size: 16px; font-weight: 700; line-height: 1.45; }

    /* ===========================
       NOSSA HISTÓRIA
    =========================== */
    .history-section { background: var(--bg-light); }

    .history-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .history-img-wrapper img {
      width: 100%;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      display: block;
    }
    .history-img-caption {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 8px;
      text-align: center;
    }

    .history-stats {
      display: flex;
      gap: 0;
      margin-top: 36px;
      background: #fff;
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      overflow: hidden;
    }
    .stat-item {
      flex: 1;
      text-align: center;
      padding: 24px 16px;
      border-right: 1px solid var(--border);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-family: 'Syne', sans-serif;
      font-size: 32px;
      font-weight: 800;
      background: var(--gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 11px;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 600;
      line-height: 1.4;
    }

    /* Botão história modal */
    .btn-historia {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 28px;
      background: var(--gradient);
      color: #fff;
      border: none;
      padding: 13px 24px;
      border-radius: 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--t) var(--ease);
      box-shadow: 0 6px 20px rgba(123,45,139,0.25);
    }
    .btn-historia:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(123,45,139,0.35);
    }

    /* ===========================
       MODAL
    =========================== */
    .modal-overlay {
      position: fixed;
      inset: 0;
      z-index: 2000;
      background: rgba(13,13,26,0.7);
      backdrop-filter: blur(6px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity var(--t) var(--ease);
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-box {
      background: #fff;
      border-radius: var(--radius);
      max-width: 760px;
      width: 100%;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: translateY(20px);
      transition: transform var(--t) var(--ease);
    }
    .modal-overlay.open .modal-box { transform: translateY(0); }

    .modal-close {
      position: absolute;
      top: 16px; right: 16px;
      width: 36px; height: 36px;
      border-radius: 50%;
      border: none;
      background: rgba(0,0,0,0.08);
      color: var(--text);
      font-size: 18px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all var(--t) var(--ease);
      z-index: 10;
    }
    .modal-close:hover { background: rgba(0,0,0,0.15); }

    .modal-img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block;
      border-radius: var(--radius) var(--radius) 0 0;
    }
    .modal-img--full {
      height: auto;
      object-fit: unset;
    }

    .modal-body {
      padding: 36px 40px 40px;
    }

    .modal-body h2 {
      font-size: 28px;
      color: var(--primary);
      margin-bottom: 20px;
    }

    .modal-body p {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 16px;
    }

    .modal-body p strong { color: var(--text); }

    .modal-body h3 {
      font-size: 18px;
      color: var(--primary);
      margin: 28px 0 12px;
    }

    /* ===========================
       NOTÍCIAS
    =========================== */
    .news-section { background: var(--bg); }

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

    .news-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 24px;
    }

    .news-featured {
      grid-row: span 2;
      display: flex;
      flex-direction: column;
    }

    .news-card {
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: all var(--t) var(--ease);
      cursor: pointer;
      display: flex;
      flex-direction: column;
    }
    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow);
      border-color: rgba(123,45,139,0.2);
    }

    .news-card-stripe {
      height: 5px;
      background: var(--gradient);
      flex-shrink: 0;
    }

    .news-card-body {
      padding: 20px 24px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .news-featured .news-card-body { padding: 28px 32px 32px; }

    .news-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--secondary);
      margin-bottom: 12px;
    }

    .news-card-title {
      font-family: 'Syne', sans-serif;
      font-size: 16px;
      font-weight: 700;
      color: var(--text);
      line-height: 1.4;
      margin-bottom: auto;
      padding-bottom: 16px;
    }

    .news-featured .news-card-title { font-size: 22px; }

    .news-card-date {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }

    .news-cta {
      text-align: center;
      margin-top: 40px;
    }

    .btn-mais-noticias {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: none;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 12px 32px;
      border-radius: 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--t) var(--ease);
    }
    .btn-mais-noticias:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(123,45,139,0.25);
    }

    /* ===========================
       CONTATO
    =========================== */
    .contact-section { background: var(--bg); }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 380px;
      gap: 56px;
      align-items: start;
    }

    .contact-form-title {
      font-size: 22px;
      color: var(--text);
      margin-bottom: 28px;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 20px;
    }

    .form-group label {
      font-size: 13px;
      font-weight: 600;
      color: var(--text);
      margin-bottom: 6px;
      letter-spacing: 0.02em;
    }

    .form-group input,
    .form-group textarea {
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      color: var(--text);
      background: #fff;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 11px 14px;
      outline: none;
      transition: border-color var(--t) var(--ease), box-shadow var(--t) var(--ease);
      width: 100%;
    }

    .form-group textarea {
      min-height: 130px;
      resize: vertical;
      line-height: 1.6;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder { color: #b0adc0; }

    .form-group input:focus,
    .form-group textarea:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(123,45,139,0.1);
    }

    .btn-submit {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gradient);
      color: #fff;
      border: none;
      padding: 14px 32px;
      border-radius: 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      transition: all var(--t) var(--ease);
      box-shadow: 0 6px 20px rgba(123,45,139,0.25);
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(123,45,139,0.35);
    }

    .form-success {
      display: none;
      margin-top: 20px;
      padding: 16px 20px;
      background: rgba(16,185,129,0.1);
      border: 1px solid rgba(16,185,129,0.3);
      border-radius: var(--radius-sm);
      color: #059669;
      font-weight: 600;
      font-size: 14px;
    }
    .form-success.show { display: flex; align-items: center; gap: 10px; }

    /* Info cards */
    .contact-info-stack { display: flex; flex-direction: column; gap: 16px; }

    .info-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 28px;
    }

    .info-card-title {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--secondary);
      margin-bottom: 20px;
    }

    .info-item {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .info-item:last-child { border-bottom: none; padding-bottom: 0; }
    .info-item:first-of-type { padding-top: 0; }

    .info-icon {
      width: 40px; height: 40px;
      border-radius: 10px;
      background: var(--gradient);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      flex-shrink: 0;
    }

    .info-text strong {
      display: block;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: var(--text);
      margin-bottom: 4px;
    }
    .info-text p,
    .info-text a {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .info-text a:hover { color: var(--secondary); }

    .info-socials { display: flex; gap: 10px; margin-top: 4px; }

    .info-social-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: 600;
      background: rgba(123,45,139,0.08);
      color: var(--primary);
      transition: all var(--t) var(--ease);
      cursor: pointer;
    }
    .info-social-btn:hover { background: var(--primary); color: #fff; }

    /* ===========================
       ANIMATIONS
    =========================== */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }
    .fade-up.delay-1 { transition-delay: 0.1s; }
    .fade-up.delay-2 { transition-delay: 0.2s; }

    @media (prefers-reduced-motion: reduce) {
      .fade-up { opacity: 1; transform: none; transition: none; }
    }

    /* ===========================
       FOOTER
    =========================== */
    .site-footer {
      background: var(--dark);
      color: rgba(255,255,255,0.75);
    }

    .footer-inner {
      max-width: 1160px;
      margin: 0 auto;
      padding: 72px 28px 52px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 56px;
    }

    .footer-col h4 {
      font-family: 'Syne', sans-serif;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: var(--secondary);
      margin-bottom: 16px;
    }

    .footer-col p {
      font-size: 14px;
      line-height: 1.75;
      color: rgba(255,255,255,0.55);
    }

    .footer-col a {
      display: block;
      font-size: 14px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 10px;
      transition: all var(--t) var(--ease);
      cursor: pointer;
    }
    .footer-col a:hover { color: #fff; padding-left: 4px; }

    .footer-socials {
      display: flex;
      gap: 10px;
      margin-top: 22px;
    }

    /* FIX: override display:block from .footer-col a */
    .footer-socials a.social-link {
      display: flex;
      margin-bottom: 0;
      padding-left: 0 !important;
    }
    .footer-socials a.social-link:hover { padding-left: 0 !important; }

    .social-link {
      width: 40px; height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.7) !important;
      font-size: 15px;
      align-items: center;
      justify-content: center;
      transition: all var(--t) var(--ease);
      cursor: pointer;
    }
    .social-link:hover {
      background: var(--secondary) !important;
      color: #fff !important;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(233,30,140,0.4);
    }

    .footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); }

    .footer-bottom {
      max-width: 1160px;
      margin: 0 auto;
      padding: 20px 28px;
      text-align: center;
    }
    .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }

    /* ===========================
       25ª PARADA – SEÇÃO HOME
    =========================== */
    .parada-home-section { background: var(--bg); }

    .parada-home-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
      margin-top: 56px;
    }

    .parada-date-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--gradient);
      color: #fff;
      padding: 7px 18px;
      border-radius: 40px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.04em;
      margin-bottom: 20px;
    }
    .parada-date-badge svg { flex-shrink: 0; }

    .parada-home-lead {
      font-size: 16px;
      color: var(--text-muted);
      line-height: 1.75;
      margin-top: 16px;
      margin-bottom: 32px;
    }

    .parada-home-stats {
      display: flex;
      gap: 0;
      background: var(--bg-light);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      margin-bottom: 32px;
    }


    .btn-parada {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--gradient);
      color: #fff;
      border: none;
      padding: 13px 28px;
      border-radius: 40px;
      font-family: 'DM Sans', sans-serif;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all var(--t) var(--ease);
      box-shadow: 0 6px 20px rgba(123,45,139,0.25);
    }
    .btn-parada:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 28px rgba(123,45,139,0.4);
    }
    .btn-parada svg { transition: transform var(--t) var(--ease); }
    .btn-parada:hover svg { transform: translateX(4px); }

    @media (max-width: 768px) {
      .parada-home-grid { grid-template-columns: 1fr; gap: 40px; margin-top: 40px; }
      .parada-home-stats { flex-direction: row; }
    }

    /* ===========================
       BACK TO TOP
    =========================== */
    .back-to-top {
      position: fixed;
      bottom: 28px; right: 28px;
      z-index: 500;
      width: 48px; height: 48px;
      border-radius: 50%;
      background: var(--gradient);
      color: #fff;
      border: none;
      cursor: pointer;
      box-shadow: var(--shadow);
      opacity: 0;
      transform: translateY(16px);
      transition: all var(--t) var(--ease);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .back-to-top:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

    /* ===========================
       RESPONSIVE
    =========================== */
    @media (max-width: 1100px) {
      .main-nav { display: none; }
      .hamburger { display: flex; }
      .header-socials { display: none; }
    }

    @media (max-width: 768px) {
      :root { --nav-height: 68px; }

      .about-grid,
      .history-grid { grid-template-columns: 1fr; gap: 40px; }

      .areas-grid { grid-template-columns: 1fr; gap: 16px; }

      .news-grid { grid-template-columns: 1fr; }
      .news-featured { grid-row: span 1; }

      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding-top: 52px;
        padding-bottom: 36px;
      }

      .img-badge { right: 0; bottom: -16px; }
      .section { padding: 64px 0; }
      .history-stats { flex-direction: column; }
      .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
      .stat-item:last-child { border-bottom: none; }

      .modal-body { padding: 24px 24px 28px; }
    }

    @media (max-width: 480px) {
      .slider-btn { width: 40px; height: 40px; }
      .slider-btn.prev { left: 12px; }
      .slider-btn.next { right: 12px; }
      .img-badge { display: none; }
      .section-inner { padding: 0 20px; }
      .header-inner { padding: 0 20px; }
    }

/* === REPLICATED FROM OLD CSS === */
/* ===========================
   DIVIDER IMAGE
   =========================== */
.divider-img {
  width: 100%;
  height: 3px;
  display: block;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #e40303 12%,
    #ff8c00 25%,
    #ffed00 40%,
    #008026 55%,
    #004dff 70%,
    #750787 85%,
    transparent 100%
  );
  opacity: 0.45;
}

/* ===========================
   PHOTO GALLERY LIGHTBOX
   =========================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}

.gallery-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  background: #eee;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}
.gallery-thumb:hover img {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Gallery pagination */
.gallery-pages {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

.gallery-pages button {
  background: none;
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}
.gallery-pages button:hover:not(:disabled) {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.gallery-pages button:disabled { opacity: 0.4; cursor: default; }
.gallery-page-info { color: var(--text-light); }

/* Lightbox */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-overlay.open { display: flex; }

.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  border-radius: 4px;
  box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: -70px; }
.lightbox-nav.next { right: -70px; }

.lightbox-caption {
  color: rgba(255,255,255,0.7);
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
}

.lightbox-counter {
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  font-size: 12px;
}

/* ===========================
   PROJETO PAGE HEADER
   =========================== */
.project-banner {
  width: 100%;
  height: 56vh;
  min-height: 320px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.project-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px;
}

.project-content h4 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 32px 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-content p {
  margin-bottom: 16px;
  line-height: 1.8;
  color: var(--text);
}

.project-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.project-content ul li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.project-content strong { font-weight: 700; }
.project-content em { font-style: italic; color: var(--primary); }

/* Info box */
.info-box {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}

.info-box p { margin-bottom: 6px; }
.info-box p:last-child { margin-bottom: 0; }
.info-box strong { color: var(--primary); }

/* Objectives grid */
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.objective-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.obj-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
}

.objective-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

/* ===========================
   PARADA PAGE - STATS TABLE
   =========================== */
.stats-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.95rem;
}
.stats-table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stats-table td {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
}
.stats-table tr:nth-child(even) td { background: var(--bg-light); }
.stats-table tr:hover td { background: rgba(123,45,139,0.05); }

/* Legal boxes */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0;
}

.legal-card {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.legal-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  font-weight: 700;
}

/* Schedule */
.schedule-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.schedule-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.5;
}
.schedule-list li:last-child { border-bottom: none; }
.schedule-list .time {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--primary);
  min-width: 100px;
  font-size: 0.9rem;
}

/* ===========================
   MODULES (TRAVES-TI)
   =========================== */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

.module-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.module-header {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  padding: 14px 20px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.module-header .chevron {
  transition: transform 0.3s;
  font-size: 14px;
}
.module-item.open .module-header .chevron { transform: rotate(180deg); }

.module-body {
  display: none;
  padding: 16px 20px;
}
.module-item.open .module-body { display: block; }

.module-body ul {
  list-style: disc;
  padding-left: 20px;
}
.module-body ul li {
  padding: 4px 0;
  color: var(--text);
  font-size: 0.95rem;
}

/* Layout e Animação Galeria Mosaico */
.bwg_mosaic_thumbnails_1 {
  column-count: 5;
  column-gap: 8px;
  line-height: 0;
}

@media (max-width: 900px) {
  .bwg_mosaic_thumbnails_1 { column-count: 3; }
}

@media (max-width: 600px) {
  .bwg_mosaic_thumbnails_1 { column-count: 2; }
}

.bwg_mosaic_thumbnails_1 .bwg-a {
  display: inline-block;
  width: 100%;
  margin-bottom: 8px;
}

.bwg_mosaic_thumb_spun_1 {
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
  display: block;
}

.bwg_mosaic_thumb_1 {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s, filter 0.3s;
}

.bwg_mosaic_thumb_spun_1:hover .bwg_mosaic_thumb_1 {
  transform: scale(1.08);
  filter: brightness(0.85);
}

/* Agrupamento de Imagens Quem Somos */
.read-more-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}
.read-more-content.expanded {
  max-height: 1200px;
}
.btn-read-more {
  background: none;
  border: none;
  color: var(--secondary);
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  margin-top: 8px;
  text-decoration: underline;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.btn-read-more:hover {
  color: var(--primary);
}
.btn-read-more::after {
  content: 'Leia mais ▼';
}
.btn-read-more.expanded::after {
  content: 'Mostrar menos ▲';
}
