:root {
  --ink: #182333;
  --muted: #687684;
  --line: #d6e0ea;
  --paper: #ffffff;
  --soft: #eef6fb;
  --red: #d92727;
  --blue: #0b2554;
  --blue-2: #24689f;
  --sky: #d8eef8;
  --accent: #f2b705;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.navbar,
main,
.site-footer {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 72px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-insignia {
  width: 104px;
  height: 54px;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.1;
}

.brand small {
  color: var(--muted);
  font-size: 0.84rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 9px 10px;
  border-radius: 6px;
}

.nav-links a:hover {
  color: var(--red);
  background: var(--sky);
}

.menu-toggle {
  display: none;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 800;
}

main {
  padding: 18px 0 26px;
}

.hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: end;
  gap: 24px;
  padding: clamp(22px, 4vw, 36px);
  color: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  background: url("imgs/rosaspata1.jpg") center/cover;
}

.eyebrow {
  margin: 0 0 6px;
  color: var(--red);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--accent);
}

.panel {
  margin-top: 30px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.section-heading.compact {
  margin-bottom: 12px;
}

.section-heading h2 {
  margin: 0;
  color: var(--blue);
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  line-height: 1.15;
}

.hero-access {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  align-self: end;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

.access-card {
  min-height: 82px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  text-align: left;
  box-shadow: 0 10px 22px rgba(7, 19, 67, 0.14);
}

.access-card:hover {
  background: #ffffff;
}

.access-card img {
  flex: 0 0 112px;
  width: 112px;
  height: 64px;
  object-fit: contain;
  padding: 3px;
  border-radius: 6px;
  background: #ffffff;
}

.access-card span {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
}

.contest-banner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin-top: 14px;
  padding: 16px 18px;
  border: 0;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(11, 37, 84, 0.96), rgba(36, 104, 159, 0.92)),
    var(--blue);
  color: #ffffff;
}

.contest-date {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  color: #ffffff;
  background: #ffffff;
  text-align: center;
}

.contest-date span,
.contest-date small {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.contest-date strong {
  margin: -4px 0;
  color: var(--red);
  font-size: 2.65rem;
  line-height: 1;
}

.contest-copy h2,
.contest-copy p {
  margin: 0;
}

.contest-copy .eyebrow {
  color: var(--accent);
}

.contest-copy h2 {
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.05;
}

.contest-copy > p:last-child {
  max-width: 620px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.82);
}

.contest-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 6px;
  color: var(--blue);
  background: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

.contest-button:hover {
  background: var(--accent);
}

.calendar-card {
  height: 473px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0;
  background: #ffffff;
}

.calendar-card iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.live-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  gap: 12px;
  align-items: start;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
  margin-top: 6px;
}

.footer-panel {
  min-height: 100%;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
}

.footer-panel-title {
  position: relative;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid var(--red);
}

.footer-panel-title h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.22rem;
  line-height: 1.2;
}

.footer-panel-title p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.embed-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-bottom: 0;
  border-left: 4px solid var(--red);
  background: linear-gradient(90deg, #f7fbfe, #ffffff);
}

.embed-title h2 {
  margin: 0;
  color: var(--blue);
  font-size: 1.12rem;
  line-height: 1.2;
}

.embed-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  text-align: right;
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.document-list a {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 82px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, transparent 0 82%, var(--sky) 82%),
    #ffffff;
  color: var(--blue);
  font-size: 0.96rem;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.document-list a::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f7fbfe;
}

.document-list a::after {
  content: "PDF";
  position: absolute;
  right: 12px;
  bottom: 12px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
}

.document-list a:hover {
  border-color: var(--blue-2);
  box-shadow: 0 10px 24px rgba(11, 37, 84, 0.08);
  transform: translateY(-2px);
}

.document-list span {
  font-size: 1.12rem;
  line-height: 1;
}

.document-list small {
  max-width: 120px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

address {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 0.96rem;
  font-style: normal;
}

.contact-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  min-height: 42px;
  align-items: center;
  padding: 8px 10px;
  border-left: 3px solid var(--sky);
  background: linear-gradient(90deg, #f7fbfe, #ffffff);
}

address a,
.contact-item {
  overflow-wrap: anywhere;
}

.contact-item strong {
  color: var(--blue);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.facebook-frame {
  display: block;
  height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0;
  background: #ffffff;
}

.facebook-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 999px;
  color: #ffffff;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(24, 115, 66, 0.26);
  font-size: 0.92rem;
  font-weight: 900;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 0.82rem;
  line-height: 1;
}

.whatsapp-float:hover {
  background: #1fbd59;
}

@media (max-width: 820px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px 16px 16px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    min-height: 600px;
    grid-template-columns: 1fr;
  }

  .hero-access,
  .contest-banner,
  .live-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-access {
    gap: 6px;
    background: transparent;
    backdrop-filter: none;
  }

  .access-card {
    border-radius: 6px;
  }

  .contest-banner {
    align-items: start;
  }

  .contest-date {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 560px) {
  .navbar,
  main,
  .site-footer {
    width: min(100% - 24px, 1240px);
  }

  .brand-insignia {
    width: 86px;
    height: 44px;
  }

  .hero {
    border-radius: 6px;
  }

  .hero {
    min-height: 640px;
  }

  .calendar-card {
    height: 360px;
  }

  .facebook-frame {
    height: 360px;
  }

  .contest-banner {
    gap: 16px;
    padding: 18px;
  }

  .contest-button {
    width: 100%;
  }

  .embed-title {
    display: grid;
    gap: 4px;
  }

  .embed-title p {
    text-align: left;
  }

  .document-list {
    grid-template-columns: 1fr;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    display: grid;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
  }
}
