@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Work+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f2f6fb;
  --bg-navy: #0e2a4d;
  --navy: #1c42ac;
  --navy-deep: #15318a;
  --coral: #f82c23;
  --coral-dark: #d4180f;
  --sky: #669ada;
  --ink: #16202b;
  --muted: #5c6b7c;
  --line: #e3e9f0;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.01em;
}

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

.wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 132px;
}
.brand img { height: 92px; width: auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav a {
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav a:hover::after,
.nav a.active::after { transform: scaleX(1); }
.nav a.live-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  text-transform: uppercase;
  font-size: 0.82rem;
}
.nav a.live-link:hover { background: var(--coral); }
.dot-live {
  width: 8px; height: 8px; border-radius: 50%;
  background: #ff5555;
  animation: pulse 1.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,85,85,.55); }
  70% { box-shadow: 0 0 0 7px rgba(255,85,85,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,85,85,0); }
}

.menu-toggle { display: none; }

/* ===== Waveform signature element ===== */
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 26px;
}
.waveform span {
  width: 3px;
  background: var(--coral);
  border-radius: 2px;
  animation: wave 1.1s ease-in-out infinite;
}
.waveform span:nth-child(1){height:40%;animation-delay:0s}
.waveform span:nth-child(2){height:80%;animation-delay:.1s}
.waveform span:nth-child(3){height:55%;animation-delay:.2s}
.waveform span:nth-child(4){height:100%;animation-delay:.3s}
.waveform span:nth-child(5){height:65%;animation-delay:.4s}
.waveform span:nth-child(6){height:35%;animation-delay:.5s}
.waveform span:nth-child(7){height:75%;animation-delay:.6s}
.waveform span:nth-child(8){height:50%;animation-delay:.7s}
@keyframes wave {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .waveform span, .dot-live { animation: none; }
}

.wave-divider {
  display: flex;
  justify-content: center;
  gap: 3px;
  padding: 34px 0;
  opacity: 0.65;
}
.wave-divider span {
  width: 3px;
  border-radius: 2px;
  background: var(--line);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 84px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
  overflow: hidden;
}
.hero .wrap { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--coral);
}
.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.4rem);
  color: var(--navy);
  max-width: 15ch;
}
.hero h1 em {
  font-style: normal;
  color: var(--coral);
}
.hero p.lead {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.6;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-bg-waveform {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 5px;
  height: 260px;
  padding: 0 4%;
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}
.hero-bg-waveform span {
  flex: 1 1 auto;
  max-width: 16px;
  min-height: 12px;
  border-radius: 6px 6px 0 0;
  animation: wave 2.34s ease-in-out infinite;
}
.hero-bg-waveform span:nth-child(odd) { background: var(--navy); }
.hero-bg-waveform span:nth-child(even) { background: var(--coral); }
@media (max-width: 720px) {
  .hero-bg-waveform { height: 150px; opacity: 0.13; gap: 4px; }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--coral); color: #fff; }
.btn-primary:hover { background: var(--coral-dark); }
.btn-outline { border-color: var(--coral); color: var(--coral); background: transparent; }
.btn-outline:hover { background: var(--coral); color: #fff; }
.btn-whatsapp { background: var(--coral); color: #fff; }
.btn-whatsapp:hover { background: var(--coral-dark); }

/* ===== Sections ===== */
section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
.kicker {
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  margin-bottom: 14px;
  display: block;
}
h2.section-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  color: var(--navy);
  max-width: 20ch;
}
.section-head { margin-bottom: 48px; }
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* Pillars / grid cards */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.card .num {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.1rem;
  color: var(--line);
  margin-bottom: 14px;
  line-height: 1;
}
.card .num svg { width: 2.1rem; height: 2.1rem; stroke: var(--line); fill: none; }
.card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 10px; font-family: 'Work Sans'; font-weight: 800; }
.card p { color: var(--muted); font-size: 0.98rem; line-height: 1.6; margin: 0; }

/* Stats strip */
.stats {
  background: var(--navy);
  color: #fff;
  border-radius: 20px;
  padding: 46px 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stats .stat b {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.4rem;
  display: block;
  color: var(--coral);
}
.stats .stat span {
  color: #c9d6e6;
  font-size: 0.92rem;
}

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.two-col img, .two-col .media-block {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.two-col p { color: var(--muted); line-height: 1.7; margin: 0 0 16px; }

.person-card {
  display: flex;
  gap: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  align-items: center;
}
.person-card img {
  width: 260px; height: 260px;
  border-radius: 18px;
  object-fit: cover;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .person-card img { width: 100%; height: 260px; }
}
.person-card h3 { color: var(--navy); font-family: 'Work Sans'; font-weight: 800; font-size: 1.2rem; margin-bottom: 4px; }
.person-card .role { color: var(--coral); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; display: block; }
.person-card p { color: var(--muted); line-height: 1.65; margin: 0 0 10px; font-size: 0.98rem; }

/* Timeline */
.timeline {
  list-style: none;
  margin: 0; padding: 0;
  border-left: 2px solid var(--line);
}
.timeline li {
  position: relative;
  padding: 0 0 40px 34px;
}
.timeline li:last-child { padding-bottom: 0; }
.timeline li::before {
  content: "";
  position: absolute;
  left: -7px; top: 2px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--coral);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--coral);
}
.timeline .year {
  font-family: 'Archivo Black', sans-serif;
  color: var(--navy);
  font-size: 1.3rem;
  display: block;
  margin-bottom: 6px;
}
.timeline p { color: var(--muted); margin: 0; line-height: 1.6; max-width: 60ch; }

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.3rem); }
.cta-band p { color: #c9d6e6; margin: 16px auto 30px; max-width: 46ch; }
.cta-band .btn-primary { background: var(--coral); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
}
.contact-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
}
.contact-list .ic {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
  flex-shrink: 0;
}
.contact-list h4 { margin: 0 0 3px; color: var(--navy); font-size: 0.98rem; }
.contact-list p, .contact-list a { margin: 0; color: var(--muted); font-size: 0.95rem; }
.contact-list a:hover { color: var(--coral); }

.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-row a {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.social-row a:hover { background: var(--coral); }

.map-frame {
  border-radius: 20px;
  border: 1px solid var(--line);
  overflow: hidden;
  height: 100%;
  min-height: 340px;
}

/* ===== Footer ===== */
footer {
  background: #ffffff;
  color: var(--muted);
  padding: 66px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer-top img.brand-foot { height: 56px; margin-bottom: 16px; }
.footer-top p { color: var(--muted); font-size: 0.92rem; line-height: 1.6; max-width: 32ch; }
.footer-col h5 {
  color: var(--navy);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  margin-bottom: 10px;
  text-decoration: none;
}
.footer-col a:hover { color: var(--coral); }
.footer-bottom {
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}
.footer-bottom .credits {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom .credits span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-soft);
  padding: 8px 16px;
  border-radius: 999px;
}
.footer-bottom img { height: 22px; opacity: 1; }
.social-row.footer-social a { background: var(--coral); }
.social-row a { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .2s ease; }
.social-row a svg { width: 20px; height: 20px; }
.social-row a:hover { background: var(--coral); }

/* ===== Social CTA ===== */
.social-cta {
  text-align: center;
}
.social-cta h2 { color: var(--navy); font-size: clamp(1.5rem, 2.8vw, 2.1rem); margin-bottom: 24px; }
.social-cta .social-row { justify-content: center; }
.social-cta .social-row a { width: 54px; height: 54px; }
.social-cta .social-row a svg { width: 24px; height: 24px; }

/* ===== Contact icon grid ===== */
.contact-icons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.contact-icon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(14,42,77,0.12);
  border-color: var(--coral);
}
.contact-icon-card .ic-lg {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--bg-soft);
  color: var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .2s ease, color .2s ease;
}
.contact-icon-card .ic-lg svg { width: 26px; height: 26px; }
.contact-icon-card:hover .ic-lg { background: var(--coral); color: #fff; }
.contact-icon-card h4 { color: var(--navy); font-size: 1.05rem; margin: 0 0 4px; font-family: 'Work Sans'; font-weight: 800; }
.contact-icon-card span { color: var(--muted); font-size: 0.92rem; }

@media (max-width: 640px) {
  .contact-icons-grid { grid-template-columns: 1fr; }
}

/* ===== Floating player ===== */
.floating-player {
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy);
  color: #fff;
  padding: 10px 10px 10px 22px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(14,42,77,0.35);
  transition: transform .2s ease, background .2s ease;
}
.floating-player .dot-live { width: 10px; height: 10px; flex-shrink: 0; }
.floating-player:hover { transform: translateX(-50%) translateY(-3px); background: var(--coral); }
.floating-player .play-ic {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.floating-player:hover .play-ic { background: #fff; color: var(--coral); }
.floating-player .fp-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.floating-player .fp-text b {
  font-size: 0.8rem;
  letter-spacing: .06em;
}
.floating-player .fp-text small {
  font-size: 0.72rem;
  color: #c9d6e6;
}
.floating-player:hover .fp-text small { color: #ffe4dd; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
  .stats { grid-template-columns: 1fr; text-align: center; }
  .footer-top { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .person-card { flex-direction: column; }
}

@media (max-width: 760px) {
  .nav { position: fixed; top: 84px; left: 0; right: 0; background: #fff; flex-direction: column; align-items: flex-start; padding: 24px 28px; gap: 20px; border-bottom: 1px solid var(--line); transform: translateY(-140%); transition: transform .25s ease; }
  .nav.open { transform: translateY(0); }
  .menu-toggle { display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
  .menu-toggle span { width: 24px; height: 2px; background: var(--navy); }
  .floating-player .fp-text { display: none; }
  .floating-player { padding: 10px; }
}
