/* BJJ Onboard — estilos do site */

:root {
  --navy-900: #061433;
  --navy-800: #0a1e46;
  --navy-700: #0d2b63;
  --cyan-400: #22d3ff;
  --cyan-500: #04cbfa;
  --cyan-600: #0aa8d6;
  --off-white: #fefaf8;
  --ink: #111111;
  --white: #ffffff;
  --danger: #e0212b;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--off-white);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0;
}

.section-title {
  text-align: center;
  font-size: clamp(24px, 4vw, 38px);
  padding: 56px 0 8px;
  color: var(--navy-800);
}

.section-title .accent { color: var(--cyan-500); }

.section-subtitle {
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--navy-700);
  max-width: 720px;
  margin: 0 auto 32px;
  padding: 0 24px;
}

.section-title.on-dark,
.section-subtitle.on-dark { color: var(--white); }

.section-title.on-dark .accent { color: var(--cyan-400); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 18px 36px;
  border-radius: var(--radius-pill);
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.12); }

.btn-solid {
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  color: var(--navy-900);
}

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

.btn-center { text-align: center; margin: 28px 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy-900);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .logo img { height: 40px; }

.site-nav { display: flex; gap: 22px; flex-wrap: wrap; }

.site-nav a {
  color: var(--white);
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
}

.site-nav a:hover { color: var(--cyan-400); }

/* Hero */
.hero {
  position: relative;
  background: url("../images/hero-bg.jpg") center/cover no-repeat, var(--navy-900);
  color: var(--white);
  text-align: center;
  padding: 60px 24px 90px;
  overflow: hidden;
}

.hero > * { position: relative; z-index: 1; }

.hero .logo { max-width: 260px; margin: 0 auto 32px; }

.hero .dates {
  font-size: clamp(34px, 7vw, 64px);
  color: var(--cyan-400);
  line-height: 1.05;
}

.hero .dates small {
  display: block;
  font-size: 0.55em;
  color: var(--white);
}

.hero .cruise-sub {
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(15px, 2.4vw, 20px);
  max-width: 640px;
  margin: 18px auto 32px;
}

.hero .teaser {
  margin-top: 18px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* Banner repeat */
.banner-repeat {
  background: var(--navy-800);
  color: var(--white);
  text-align: center;
  padding: 50px 24px;
}

.banner-repeat .dates { font-size: clamp(28px, 6vw, 44px); color: var(--cyan-400); }
.banner-repeat .cruise-sub { font-family: "Barlow", sans-serif; font-style: italic; font-weight: 700; margin: 10px 0 24px; }

/* Recap section (photos) */
.recap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  max-width: var(--container);
  margin: 0 auto 12px;
  padding: 0 24px;
}

.recap-grid img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }

.recap-note {
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 700;
  color: var(--navy-700);
  padding: 16px 24px 8px;
}

/* Intro / video section */
.intro {
  background: var(--navy-900);
  color: var(--white);
  padding: 56px 24px 64px;
  text-align: center;
}

.video-frame {
  position: relative;
  max-width: 900px;
  margin: 0 auto 28px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #000;
}

.video-frame iframe,
.video-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame[data-video-id],
.video-frame[data-video-src] {
  cursor: pointer;
  background-size: cover;
  background-position: center;
}

.video-frame .play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-frame .play-btn svg { width: 26px; height: 26px; fill: var(--white); margin-left: 4px; }

/* Experiences cards */
.experiences {
  padding: 24px 0 56px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.exp-card {
  background: var(--navy-800);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
}

.exp-card h3 {
  font-size: 18px;
  color: var(--cyan-400);
  margin-bottom: 10px;
}

.exp-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  margin: 0;
}

/* Ship events list */
.ship-events {
  background: var(--navy-700);
  color: var(--white);
  padding: 48px 24px;
}

.ship-events ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px 32px;
  max-width: var(--container);
  margin-inline: auto;
}

.ship-events li {
  padding: 6px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.ship-events li::before { content: "• "; color: var(--cyan-400); }

/* About ship */
.about-ship {
  background: var(--navy-800);
  color: var(--white);
  padding: 56px 24px;
}

.about-ship-body {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.about-ship-body p {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
}

/* First edition gallery */
.gallery {
  padding: 8px 24px 56px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: var(--container);
  margin: 0 auto;
}

.gallery-item { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; }

.gallery-item figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(6,20,51,0.9), transparent);
  color: var(--white);
  padding: 28px 14px 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-style: italic;
  font-size: 14px;
  text-align: center;
}

/* Fight show banner */
.fight-show-banner {
  background: linear-gradient(90deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  text-align: center;
  padding: 40px 24px;
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 32px);
  text-transform: uppercase;
}

/* Family activities */
.family-activities {
  background: var(--navy-700);
  padding: 40px 24px 56px;
}

.family-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  max-width: var(--container);
  margin: 0 auto;
  padding: 40px 32px;
  color: var(--white);
}

.family-card h2 { text-align: center; font-size: clamp(22px, 4vw, 32px); margin-bottom: 28px; }

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px 32px;
}

.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; }
.check-list li::before { content: "✓"; color: var(--white); background: var(--cyan-600); border-radius: 50%; width: 20px; height: 20px; flex: none; display: flex; align-items: center; justify-content: center; font-size: 12px; }

/* Pricing */
.pricing { background: var(--navy-800); padding: 8px 24px 64px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.price-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cyan-400), var(--cyan-600));
  border-radius: var(--radius-lg);
  padding: 24px 22px 20px;
  color: var(--navy-900);
}

.price-card h3 {
  font-size: 16px;
  text-align: center;
  margin-bottom: 14px;
}

.price-card .price {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 5vw, 34px);
}

.price-card .price .times { font-size: 16px; font-weight: 700; margin-right: 4px; }

.price-card .per-person {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-top: 6px;
}

.price-card.sold-out::after {
  content: "ESGOTADAS";
  position: absolute;
  top: 22px;
  right: -38px;
  width: 160px;
  transform: rotate(35deg);
  background: var(--danger);
  color: var(--white);
  text-align: center;
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 1px;
  padding: 4px 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.pricing-note {
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  max-width: var(--container);
  margin: 20px auto 0;
}

/* Contact team */
.contact-team { background: var(--navy-900); padding: 56px 24px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--container);
  margin: 0 auto;
}

.contact-card {
  background: var(--navy-800);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 26px 20px;
  text-align: center;
  color: var(--white);
}

.contact-card h3 { font-size: 17px; margin-bottom: 6px; }

.contact-card .label { color: var(--cyan-400); font-size: 14px; margin-bottom: 16px; }

.contact-card .btn { width: 100%; font-size: 14px; padding: 14px 10px; }

/* FAQ */
.faq { padding: 8px 24px 64px; }

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  border-top: 1px solid #e6dfd8;
}

.faq-item { border-bottom: 1px solid #e6dfd8; }

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 16px 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--cyan-600);
  cursor: pointer;
}

.faq-question .chevron { transition: transform 0.2s ease; flex: none; color: var(--navy-700); }

.faq-item[open] .faq-question .chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 4px 18px;
  font-size: 14px;
  color: #333;
  font-style: italic;
}

/* Footer */
.site-footer {
  background: var(--navy-900);
  color: var(--white);
  padding: 48px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: var(--container);
  margin: 0 auto;
}

.footer-brand h3 { color: var(--cyan-400); font-size: 22px; }
.footer-brand p { color: rgba(255,255,255,0.75); font-size: 14px; }

.footer-links h4, .footer-contacts h4 {
  font-family: "Barlow", sans-serif;
  font-style: italic;
  font-weight: 700;
  margin: 0 0 14px;
  color: var(--white);
}

.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.85); }
.footer-links a:hover { color: var(--cyan-400); }

.footer-contacts .icons { display: flex; gap: 12px; }
.footer-contacts .icons a {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.footer-contacts .icons a:hover { border-color: var(--cyan-400); color: var(--cyan-400); }

.footer-bottom {
  text-align: center;
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  color: var(--cyan-400);
}

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0,0,0,0.3);
  z-index: 200;
}

.whatsapp-float svg { width: 30px; height: 30px; fill: var(--white); }

@media (max-width: 640px) {
  .site-nav { display: none; }
  .recap-grid { grid-template-columns: 1fr; }
}
