/* =========================================================
   PROGRAMA PEQUENOS GIGANTES
   CSS COMPLETO RESPONSIVO FINAL
   Arquivo: assets/css/style.css
========================================================= */

/* =========================
   RESET / BASE
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #10243f;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

/* =========================
   VARIÁVEIS
========================= */

:root {
  --blue-dark: #002f57;
  --blue-main: #004f8f;
  --blue-medium: #006bb6;
  --blue-light: #dff3ff;
  --yellow: #ffd51f;
  --yellow-dark: #e2b800;
  --white: #ffffff;
  --text: #10243f;
  --muted: #5b6878;
  --border: #d8e4ef;
  --shadow: 0 10px 28px rgba(0, 47, 87, 0.14);
}

/* =========================================================
   HEADER / MENU
========================================================= */

.site-header {
  width: 100%;
  background: linear-gradient(90deg, #003f6b, #003657, #002f4e);
  position: relative;
  z-index: 1000;
}

.header-container {
  width: min(100% - 32px, 1320px);
  min-height: 118px;
  margin-inline: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 28px);

  position: relative;
}

/* =========================
   LOGO / ESCUDO SOBREPOSTO
========================= */

.header-logo {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;

  position: relative;
  z-index: 1100;

  transform: translateY(15px);
}

.header-logo img {
  width: clamp(82px, 8.5vw, 135px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

/* =========================
   NAVEGAÇÃO DESKTOP
========================= */

.main-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 1.8vw, 34px);
  width: 100%;
  min-width: 0;
}

.main-nav a {
  display: flex;
  align-items: center;
  gap: 6px;

  color: #ffffff;
  font-size: clamp(0.72rem, 0.82vw, 0.92rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;

  padding: 10px 0;
  transition: 0.25s ease;
}

.main-nav a:hover {
  color: var(--yellow);
}

.main-nav i {
  font-size: 0.65rem;
}

/* =========================
   BOTÃO MOBILE
========================= */

.menu-toggle {
  display: none;

  width: 46px;
  height: 46px;
  border-radius: 10px;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 47, 87, 0.25);

  position: relative;
  z-index: 1200;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.25s ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* =========================================================
   BANNER PRINCIPAL
========================================================= */

.hero-banner {
  position: relative;
  width: 100%;
  background: #003a5e;
  overflow: hidden;
}

.hero-banner-inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
  line-height: 0;
}

.hero-banner-img {
  width: 100%;
  height: auto;
  display: block;
}

/* =========================
   BOTÃO PLAY SOBRE A IMAGEM
========================= */

.hero-video-button {
  position: absolute;
  right: clamp(16px, 7vw, 120px);
  top: 58%;
  transform: translateY(-50%);
  z-index: 20;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 0.8vw, 10px);

  color: #ffffff;
}

.hero-play-circle {
  width: clamp(54px, 6.6vw, 108px);
  height: clamp(54px, 6.6vw, 108px);

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(0, 58, 94, 0.96);
  border: clamp(4px, 0.42vw, 7px) solid #ffffff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);

  transition: 0.25s ease;
}

.hero-play-circle i {
  color: #ffffff;
  font-size: clamp(1.25rem, 2.4vw, 2.7rem);
  margin-left: 6px;
}

.hero-video-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: clamp(26px, 2.5vw, 38px);
  padding: 0 clamp(9px, 1vw, 16px);

  border-radius: 8px;
  background: rgba(0, 47, 87, 0.96);
  color: #ffffff;

  font-size: clamp(0.64rem, 0.85vw, 0.9rem);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;

  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.28);
}

.hero-video-button:hover .hero-play-circle {
  transform: scale(1.06);
  background: #005a99;
}

/* =========================================================
   NOTÍCIAS DA HOME
========================================================= */

.news-preview-section {
  padding: clamp(24px, 3.5vw, 46px) 0 20px;
  background: #ffffff;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 28px);
}

.news-card {
  background: #ffffff;
  border: 1px solid #e2e9f0;
  border-radius: 4px;
  box-shadow: 0 8px 22px rgba(0, 47, 87, 0.08);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  min-width: 0;
}

.news-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #dbe8f2;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.04);
}

.news-content {
  padding: clamp(14px, 1.8vw, 22px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-content h2 {
  color: var(--blue-main);
  font-size: clamp(0.95rem, 1.25vw, 1.25rem);
  line-height: 1.15;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 12px;
}

.news-meta {
  display: block;
  color: #6b7482;
  font-size: 0.82rem;
  margin-bottom: 10px;
}

.news-content p {
  color: #24364d;
  font-size: clamp(0.86rem, 0.95vw, 0.96rem);
  margin-bottom: 20px;
  flex: 1;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: fit-content;
  min-height: 40px;
  padding: 0 16px;

  border-radius: 3px;
  background: #00456f;
  color: #ffffff;

  font-weight: 900;
  font-size: 0.82rem;
  text-transform: uppercase;

  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #006bb6;
  transform: translateY(-2px);
}

/* =========================================================
   AGENDA DA HOME
========================================================= */

.agenda-preview-section {
  padding: 0 0 clamp(30px, 4vw, 56px);
  background: #ffffff;
}

.section-title-bar {
  min-height: 56px;
  padding: 0 20px;

  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, #005ba8, #004b8d);

  display: flex;
  align-items: center;
  gap: 14px;

  color: #ffffff;
}

.section-title-bar i {
  font-size: 1.4rem;
}

.section-title-bar h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.8rem);
  text-transform: uppercase;
  font-weight: 900;
}

.agenda-box {
  border: 1px solid #e0e8f1;
  border-top: none;
  border-radius: 0 0 6px 6px;

  padding: clamp(16px, 2.2vw, 30px);

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);

  box-shadow: 0 8px 22px rgba(0, 47, 87, 0.06);
}

.agenda-card {
  min-height: 198px;
  border-radius: 14px;
  overflow: hidden;

  display: grid;
  grid-template-columns: 0.95fr 1.55fr;

  box-shadow: 0 8px 20px rgba(0, 47, 87, 0.1);
}

.agenda-blue {
  background: #cfefff;
}

.agenda-yellow {
  background: #ffd820;
}

.agenda-date {
  padding: clamp(16px, 1.8vw, 24px);
  border-right: 1px solid rgba(0, 47, 87, 0.18);

  display: flex;
  flex-direction: column;
  justify-content: center;

  color: var(--blue-dark);
}

.agenda-date strong {
  font-family: "Barlow Condensed", "Inter", sans-serif;
  font-size: clamp(2.3rem, 3.6vw, 3.8rem);
  line-height: 0.85;
  font-weight: 900;
}

.agenda-date span {
  margin-top: 8px;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  text-transform: uppercase;
  font-weight: 900;
}

.agenda-date small {
  margin-top: 6px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.agenda-info {
  padding: clamp(16px, 1.8vw, 24px);
  color: var(--blue-dark);
}

.agenda-icon {
  font-size: clamp(1.5rem, 2.1vw, 2.1rem);
  margin-bottom: 8px;
}

.agenda-info h3 {
  font-size: clamp(0.95rem, 1.2vw, 1.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.1;
  margin-bottom: 8px;
}

.agenda-info p {
  font-size: clamp(0.82rem, 0.9vw, 0.92rem);
  margin-bottom: 12px;
}

.agenda-location {
  display: flex;
  align-items: center;
  gap: 8px;

  font-weight: 900;
  font-size: clamp(0.8rem, 0.9vw, 0.92rem);
}

.agenda-action {
  display: flex;
  justify-content: center;
  padding-top: 22px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 42px;
  padding: 0 30px;

  border: 2px solid var(--blue-main);
  border-radius: 4px;

  color: var(--blue-main);
  background: #ffffff;

  font-weight: 900;
  text-transform: uppercase;

  transition: 0.25s ease;
}

.btn-outline:hover {
  background: var(--blue-main);
  color: #ffffff;
}

/* =========================================================
   MODAL DE VÍDEO
========================================================= */

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: none;
  align-items: center;
  justify-content: center;

  padding: 20px;
}

.video-modal.is-active {
  display: flex;
}

.video-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 38, 0.84);
}

.video-modal-content {
  position: relative;
  z-index: 2;

  width: min(100%, 980px);
  background: #000000;
  border-radius: 14px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.video-modal-close {
  position: absolute;
  right: -12px;
  top: -46px;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  background: #ffffff;
  color: var(--blue-dark);

  display: grid;
  place-items: center;

  font-size: 1.25rem;
  z-index: 3;
}

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

/* =========================================================
   RODAPÉ
========================================================= */

.site-footer {
  width: 100%;
  background: #003a5e;
  color: #ffffff;
}

.footer-main {
  padding: clamp(34px, 4vw, 52px) 0;
  background: linear-gradient(90deg, #004f78, #003a5e);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.65fr 1.15fr 0.7fr;
  gap: clamp(24px, 3.5vw, 52px);
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 28px);
  min-width: 0;
}

.footer-brand img {
  width: clamp(80px, 9vw, 122px);
  flex: 0 0 auto;
}

.footer-brand h2 {
  font-size: clamp(0.95rem, 1.35vw, 1.35rem);
  line-height: 1.15;
  font-weight: 900;
  margin-bottom: 8px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.82rem, 0.95vw, 0.95rem);
  max-width: 520px;
}

.footer-contact {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: clamp(20px, 2.5vw, 36px);
}

.footer-contact ul {
  display: grid;
  gap: 12px;
}

.footer-contact li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;

  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(0.8rem, 0.9vw, 0.92rem);
}

.footer-contact i {
  color: #ffffff;
  margin-top: 3px;
}

.footer-social {
  border-left: 1px solid rgba(255, 255, 255, 0.32);
  padding-left: clamp(20px, 2.5vw, 36px);
}

.footer-social h3 {
  text-transform: uppercase;
  font-size: 0.95rem;
  margin-bottom: 16px;
  font-weight: 900;
}

.social-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;

  background: #ffffff;
  color: var(--blue-main);

  display: grid;
  place-items: center;

  font-size: 1.08rem;
  transition: 0.25s ease;
}

.social-icons a:hover {
  background: var(--yellow);
  color: var(--blue-dark);
  transform: translateY(-3px);
}

.footer-bottom {
  padding: 16px 0;
  background: #002c49;
  text-align: center;
}

.footer-bottom p {
  font-size: clamp(0.76rem, 0.85vw, 0.86rem);
  color: rgba(255, 255, 255, 0.84);
}

/* =========================================================
   RESPONSIVIDADE
========================================================= */

/* =========================
   DESKTOP GRANDE
========================= */

@media (min-width: 1500px) {
  .header-container {
    min-height: 126px;
  }

  .header-logo {
    transform: translateY(18px);
  }

  .header-logo img {
    width: 145px;
  }

  .hero-video-button {
    right: 8%;
    top: 58%;
  }
}

/* =========================
   NOTEBOOK GRANDE
   1366px / 1440px
========================= */

@media (max-width: 1440px) {
  .header-container {
    min-height: 108px;
    width: min(100% - 28px, 1260px);
  }

  .header-logo {
    transform: translateY(13px);
  }

  .header-logo img {
    width: clamp(82px, 7.6vw, 118px);
  }

  .main-nav ul {
    gap: clamp(14px, 1.55vw, 26px);
  }

  .main-nav a {
    font-size: clamp(0.68rem, 0.76vw, 0.82rem);
  }

  .hero-video-button {
    right: 6.8%;
    top: 58%;
  }

  .hero-play-circle {
    width: clamp(54px, 6vw, 96px);
    height: clamp(54px, 6vw, 96px);
  }

  .hero-video-label {
    font-size: clamp(0.62rem, 0.75vw, 0.82rem);
  }

  .news-preview-section {
    padding-top: 32px;
  }

  .agenda-card {
    min-height: 188px;
  }
}

/* =========================
   NOTEBOOK PADRÃO
   1280px / 1366px
========================= */

@media (max-width: 1366px) {
  .header-container {
    min-height: 100px;
    width: min(100% - 26px, 1200px);
  }

  .header-logo {
    transform: translateY(12px);
  }

  .header-logo img {
    width: clamp(78px, 7vw, 104px);
  }

  .main-nav ul {
    gap: clamp(12px, 1.35vw, 22px);
  }

  .main-nav a {
    font-size: clamp(0.64rem, 0.72vw, 0.78rem);
  }

  .hero-video-button {
    right: 6.5%;
    top: 58%;
  }

  .hero-play-circle {
    width: clamp(52px, 5.6vw, 88px);
    height: clamp(52px, 5.6vw, 88px);
  }

  .hero-play-circle i {
    font-size: clamp(1.15rem, 2.1vw, 2.25rem);
  }

  .hero-video-label {
    min-height: 30px;
    font-size: 0.72rem;
    padding-inline: 12px;
  }

  .news-grid {
    gap: 22px;
  }

  .news-content {
    padding: 18px;
  }

  .news-content h2 {
    font-size: 1.02rem;
  }

  .news-content p {
    font-size: 0.88rem;
  }

  .agenda-box {
    padding: 22px;
    gap: 18px;
  }

  .agenda-card {
    min-height: 180px;
  }

  .agenda-date strong {
    font-size: 3.1rem;
  }

  .agenda-info h3 {
    font-size: 1rem;
  }

  .agenda-info p {
    font-size: 0.84rem;
  }
}

/* =========================
   NOTEBOOK MENOR
   1024px / 1200px
========================= */

@media (max-width: 1200px) {
  .header-container {
    min-height: 92px;
    gap: 16px;
  }

  .header-logo {
    transform: translateY(10px);
  }

  .header-logo img {
    width: 92px;
  }

  .main-nav ul {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.68rem;
  }

  .hero-video-button {
    right: 5.8%;
    top: 58%;
  }

  .hero-play-circle {
    width: 76px;
    height: 76px;
    border-width: 5px;
  }

  .hero-play-circle i {
    font-size: 1.8rem;
  }

  .hero-video-label {
    min-height: 28px;
    font-size: 0.68rem;
    padding-inline: 10px;
  }

  .footer-container {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-contact,
  .footer-social {
    border-left: 0;
    padding-left: 0;
  }
}

/* =========================
   TABLET / MENU MOBILE
========================= */

@media (max-width: 980px) {
  .header-container {
    min-height: 86px;
  }

  .header-logo {
    transform: translateY(10px);
  }

  .header-logo img {
    width: 86px;
  }

  .menu-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    left: 0;
    top: 100%;

    width: 100%;
    display: none;

    background: #003a5e;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.22);
  }

  .main-nav.is-active {
    display: block;
  }

  .main-nav ul {
    width: min(100% - 32px, 720px);
    margin-inline: auto;
    padding: 18px 0;

    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .main-nav li:last-child {
    border-bottom: 0;
  }

  .main-nav a {
    justify-content: space-between;
    width: 100%;
    padding: 15px 0;
    font-size: 0.9rem;
  }

  .hero-video-button {
    right: 5%;
    top: 59%;
  }

  .hero-play-circle {
    width: 72px;
    height: 72px;
    border-width: 5px;
  }

  .hero-play-circle i {
    font-size: 1.7rem;
  }

  .hero-video-label {
    font-size: 0.76rem;
    padding-inline: 12px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .news-card {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
  }

  .news-image {
    height: 100%;
    aspect-ratio: auto;
  }

  .agenda-box {
    grid-template-columns: 1fr;
  }

  .agenda-card {
    grid-template-columns: 0.75fr 1.6fr;
  }
}

/* =========================
   CELULAR GRANDE
========================= */

@media (max-width: 700px) {
  .container {
    width: min(100% - 24px, 100%);
  }

  .header-container {
    width: min(100% - 24px, 100%);
    min-height: 84px;
  }

  .header-logo {
    transform: translateY(8px);
  }

  .header-logo img {
    width: 78px;
  }

  .hero-video-button {
    right: 4.5%;
    top: 60%;
  }

  .hero-play-circle {
    width: 62px;
    height: 62px;
    border-width: 4px;
  }

  .hero-play-circle i {
    font-size: 1.45rem;
  }

  .hero-video-label {
    font-size: 0.68rem;
    min-height: 28px;
    padding-inline: 10px;
  }

  .news-card {
    display: flex;
  }

  .news-image {
    aspect-ratio: 16 / 9;
  }

  .agenda-card {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .agenda-date {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 47, 87, 0.16);
    align-items: center;
    text-align: center;
  }

  .agenda-info {
    text-align: center;
  }

  .agenda-location {
    justify-content: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   CELULAR MÉDIO
========================= */

@media (max-width: 520px) {
  .site-header {
    position: relative;
  }

  .header-container {
    min-height: 82px;
  }

  .header-logo {
    transform: translateY(7px);
  }

  .header-logo img {
    width: 72px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .hero-video-button {
    right: 4%;
    top: 60%;
  }

  .hero-play-circle {
    width: 58px;
    height: 58px;
    border-width: 4px;
  }

  .hero-play-circle i {
    font-size: 1.34rem;
    margin-left: 4px;
  }

  .hero-video-label {
    font-size: 0.64rem;
    min-height: 26px;
    padding: 0 9px;
    border-radius: 7px;
  }

  .section-title-bar {
    min-height: 52px;
  }

  .agenda-box {
    padding: 16px;
  }
}

/* =========================
   CELULAR PEQUENO
========================= */

@media (max-width: 420px) {
  .header-container {
    min-height: 78px;
  }

  .header-logo {
    transform: translateY(6px);
  }

  .header-logo img {
    width: 68px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .hero-video-button {
    right: 3.8%;
    top: 61%;
    gap: 6px;
  }

  .hero-play-circle {
    width: 52px;
    height: 52px;
    border-width: 4px;
  }

  .hero-play-circle i {
    font-size: 1.18rem;
  }

  .hero-video-label {
    font-size: 0.58rem;
    min-height: 24px;
    padding: 0 7px;
  }

  .news-preview-section {
    padding-top: 22px;
  }

  .news-content {
    padding: 16px;
  }

  .news-content h2 {
    font-size: 1rem;
  }

  .news-meta,
  .news-content p {
    font-size: 0.84rem;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
  }

  .agenda-box {
    padding: 12px;
  }

  .agenda-date strong {
    font-size: 3rem;
  }

  .footer-main {
    padding: 30px 0;
  }

  .footer-brand img {
    width: 84px;
  }

  .social-icons a {
    width: 38px;
    height: 38px;
  }

  .video-modal {
    padding: 12px;
  }

  .video-modal-close {
    right: 0;
    top: -48px;
  }
}

/* =========================
   CELULAR MUITO PEQUENO
========================= */

@media (max-width: 360px) {
  .header-container {
    min-height: 76px;
  }

  .header-logo {
    transform: translateY(5px);
  }

  .header-logo img {
    width: 62px;
  }

  .hero-video-button {
    right: 3%;
    top: 62%;
  }

  .hero-play-circle {
    width: 48px;
    height: 48px;
    border-width: 3px;
  }

  .hero-play-circle i {
    font-size: 1.05rem;
  }

  .hero-video-label {
    font-size: 0.54rem;
    min-height: 22px;
    padding-inline: 6px;
  }

  .agenda-date strong {
    font-size: 2.6rem;
  }
}