/*----------------------------------------------------------
  ESTILO A — ACADÊMICO MINIMALISTA PROFISSIONAL
  Autor: Raymora Katielle
-----------------------------------------------------------*/

/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}
/* LOGO DO SITE */

.site-logo{
  height:65px;
  width:auto;
  object-fit:contain;
  margin-right:10px;
}

:root {
  --primary: #1D4ED8;
  --primary-light: #2563EB;
  --bg: #F9FAFB;
  --white: #FFFFFF;
  --text: #111827;
  --text-soft: #374151;
  --muted: #6B7280;
  --border: #E5E7EB;
  --border-soft: #EEF2F7;
  --success: #10B981;
  --footer: #111827;
  --footer-soft: #9CA3AF;
  --shadow-sm: 0 3px 10px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --radius: 12px;
  --radius-lg: 16px;
  --container: 1100px;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ===========================
   HEADER
=========================== */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  padding: 1rem 1.5rem;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 280px;
  flex: 1 1 420px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-text h1 {
  font-size: 1.1rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ===========================
   NAVBAR
=========================== */
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 420px;
  position: relative;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1.4rem;
  padding: 0.35rem 0.7rem;
  color: var(--text);
  cursor: pointer;
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-link {
  text-decoration: none;
  color: #4B5563;
  padding: 0.55rem 0.95rem;
  border-radius: 8px;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-block;
}

.nav-link:hover {
  background-color: #EFF6FF;
  color: var(--primary);
}

.nav-link.active {
  background-color: var(--primary);
  color: var(--white);
}

/* ===========================
   SEÇÕES
=========================== */
.section {
  padding: 4.5rem 1.5rem;
}

.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.section-inner.two-columns {
  display: grid;
  gap: 2rem;
  grid-template-columns: 2fr 1.1fr;
  align-items: start;
}

/* ===========================
   TIPOGRAFIA
=========================== */
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  line-height: 1.25;
}

h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 1.25rem 0 0.75rem;
  line-height: 1.35;
}

p.lead {
  font-size: 1.05rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 0.9rem;
  color: var(--text-soft);
}

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

/* ===========================
   LISTAS
=========================== */
.check-list,
.bullet-list {
  list-style: none;
  margin-bottom: 1.2rem;
}

.check-list li,
.bullet-list li {
  margin-bottom: 0.55rem;
  display: flex;
  align-items: flex-start;
  color: var(--text-soft);
}

.check-list li::before {
  content: "✔";
  color: var(--success);
  font-weight: 700;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

.bullet-list li::before {
  content: "•";
  color: var(--primary-light);
  font-size: 1.2rem;
  line-height: 1;
  margin-right: 0.6rem;
  flex-shrink: 0;
}

/* ===========================
   CARDS
=========================== */
.highlight-card,
.info-card,
.video-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all 0.25s ease;
}

.highlight-card:hover,
.info-card:hover,
.video-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

/* ===========================
   BADGES
=========================== */
.badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
}

.badge-info {
  background: #DBEAFE;
  color: var(--primary);
}

/* ===========================
   BOTÕES
=========================== */
.button {
  padding: 0.72rem 1.4rem;
  border-radius: 8px;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  margin-top: 0.6rem;
  transition: all 0.2s ease;
  border: none;
}

.button:hover {
  background-color: var(--primary-light);
  transform: translateY(-1px);
}

.button.disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ===========================
   VÍDEOS
=========================== */
.video-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.video-card h3 {
  margin-top: 1rem;
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
  color: var(--text);
}

.video-player {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #000000;
  border: 1px solid var(--border-soft);
}

.video-player video {
  width: 100%;
  display: block;
  border-radius: 12px;
}

/* Caso ainda exista algum bloco antigo de miniatura */
.video-thumb {
  background-color: #E5E7EB;
  padding-top: 56.25%;
  border-radius: 8px;
  position: relative;
}

.video-thumb span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--muted);
}

/* ===========================
   FAQ
=========================== */
.info-card h3 {
  margin-top: 0;
}

.info-card p strong {
  color: var(--text);
}

/* ===========================
   TABELAS
=========================== */
.info-card table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.5rem;
}

.info-card th {
  background: #F3F4F6;
  padding: 0.65rem;
  font-size: 0.9rem;
  text-align: left;
}

.info-card td {
  padding: 0.65rem;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
}

/* ===========================
   RODAPÉ
=========================== */
.site-footer {
  background: var(--footer);
  color: #D1D5DB;
  text-align: center;
  padding: 2rem 1rem;
  margin-top: 3rem;
  font-size: 0.92rem;
}

.site-footer p {
  color: #D1D5DB;
  margin-bottom: 0.4rem;
}

.site-footer .small {
  font-size: 0.8rem;
  color: var(--footer-soft);
}

/* ===========================
   RESPONSIVIDADE
=========================== */
@media (max-width: 1024px) {
  .section-inner.two-columns {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 850px) {
  .site-header {
    padding: 1rem;
  }

  .logo-area {
    align-items: flex-start;
  }

  .logo-text h1 {
    font-size: 1rem;
  }

  .logo-text p {
    font-size: 0.84rem;
  }

  .main-nav {
    width: 100%;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-top: 0.8rem;
    padding: 0.4rem;
    box-shadow: var(--shadow-sm);
  }

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

  .nav-link {
    padding: 0.85rem 1rem;
    width: 100%;
  }

  .section {
    padding: 4rem 1rem;
  }

  h2 {
    font-size: 1.7rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .logo-area {
    flex-direction: row;
    gap: 0.75rem;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
    font-size: 0.95rem;
  }

  .logo-text h1 {
    font-size: 0.96rem;
  }

  .logo-text p {
    font-size: 0.8rem;
  }

  .highlight-card,
  .info-card,
  .video-card {
    padding: 1.2rem;
  }

  p.lead {
    font-size: 1rem;
  }
}
