/* ===== Variables & reset ===== */
:root {
  --navy: #1f2d3d;
  --navy-light: #34495e;
  --gold: #b8923f;
  --blue-bg: #d7e6ee;
  --blue-bg-soft: #eef5f9;
  --text: #2b2b2b;
  --max-width: 1100px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: #fff;
}

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

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

h1, h2, h3 { color: var(--navy); line-height: 1.25; }

h2 {
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 3px solid var(--gold);
  display: inline-block;
}

.section h2:first-child { margin-top: 0; }

h3 { font-size: 1.15rem; margin: 0 0 0.4rem; }

p { margin: 0 0 1rem; }

a { color: var(--navy); }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  margin-top: 1rem;
  transition: background 0.2s ease;
}
.btn:hover { background: #a07c33; }

/* ===== Header / Nav ===== */
.nav-toggle { display: none; }

.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.25rem;
}

.logo {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 22px;
  cursor: pointer;
}
.nav-burger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 2px;
}

.site-nav {
  display: flex;
  gap: 1.5rem;
}
.site-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--gold); }

@media (max-width: 760px) {
  .nav-burger { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-light);
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .site-nav a {
    padding: 0.9rem 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-toggle:checked ~ .site-header .site-nav {
    max-height: 320px;
  }
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 0 3.5rem;
}
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin: 0 0 0.8rem;
}
.hero-signature {
  color: var(--gold);
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}
.hero-tagline {
  max-width: 38rem;
  margin: 0 auto;
  opacity: 0.9;
}

/* ===== Sections ===== */
.section { padding: 3rem 0; }
.section.alt { background: var(--blue-bg-soft); }

.note {
  font-style: italic;
  color: var(--navy-light);
}

/* ===== Team ===== */
.team-photo {
  margin: 0 0 2rem;
  text-align: center;
}
.team-photo img {
  border-radius: 8px;
  max-width: 100%;
  margin: 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.team-card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 1.5rem;
}
.team-role {
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.8rem;
}

@media (max-width: 700px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== Cards ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.card {
  background: #fff;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  padding: 1.5rem;
  position: relative;
}
.card-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.card-subtitle {
  color: var(--navy-light);
  font-style: italic;
  margin-top: -0.4rem;
}
.card ul { padding-left: 1.1rem; margin: 0; }
.card li { margin-bottom: 0.5rem; }

@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr; }
}

/* ===== Stats ===== */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  text-align: center;
}
.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--gold);
}
.stat span {
  color: var(--navy-light);
  font-size: 0.9rem;
}
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; }
}

/* ===== Video ===== */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

/* ===== Livre ===== */
.livre-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: start;
  margin-top: 1.5rem;
}
.livre-cover img {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.livre-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
.btn-outline {
  display: inline-block;
  border: 2px solid var(--gold);
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  font-size: 0.9rem;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-outline:hover {
  background: var(--gold);
  color: #fff;
}
.livre-radio {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
}
.bfmtv-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: #111;
  border-left: 4px solid #E2001A;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s ease;
}
.bfmtv-card:hover { background: #1e1e1e; }
.bfmtv-logo { flex-shrink: 0; }
.bfmtv-logo svg { width: 90px; height: 24px; display: block; }
.bfmtv-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.bfmtv-label {
  font-size: 0.75rem;
  color: #E2001A;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.bfmtv-title {
  font-size: 0.95rem;
  color: #fff;
  font-weight: 600;
}
.bfmtv-arrow {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: #E2001A;
}
@media (max-width: 500px) {
  .bfmtv-card { flex-wrap: wrap; }
  .bfmtv-arrow { display: none; }
}
@media (max-width: 700px) {
  .livre-grid { grid-template-columns: 1fr; }
  .livre-cover { text-align: center; }
  .livre-cover img { max-width: 200px; margin: 0 auto; }
}

/* ===== Testimonials ===== */
.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}
blockquote {
  margin: 0;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
}
blockquote p {
  font-style: italic;
  margin-bottom: 0.7rem;
}
blockquote cite {
  display: block;
  font-size: 0.85rem;
  color: var(--navy-light);
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 760px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer {
  background: var(--blue-bg);
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(31,45,61,0.2);
  padding-bottom: 1.5rem;
}
.footer-text h2 {
  border: none;
  margin: 0 0 0.5rem;
  padding: 0;
}
.footer-role { font-weight: 600; }
.footer-titles { color: var(--navy-light); }
.footer-quote {
  font-style: italic;
  margin-top: 1rem;
}
.footer-photo img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: 15% 30%;
  border-radius: 10px;
  border: 3px solid #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
.footer-contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.5rem 1.25rem 0;
}
.footer-contacts a {
  text-decoration: none;
  color: var(--navy);
  font-size: 0.95rem;
}
.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--navy-light);
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column-reverse; text-align: center; }
  .footer-contacts { grid-template-columns: 1fr; text-align: center; }
}
