/* =========================================================
   DANTE NEGRO - SITE OFICIAL
   Arquivo: assets/css/style.css
   CSS completo para substituição
   ========================================================= */


/* =========================================================
   RESET GLOBAL
   ========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Inter", Arial, sans-serif;
  background: #faf8f4;
  color: #161616;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font-family: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
}


/* =========================================================
   VARIÁVEIS
   ========================================================= */

:root {
  --black: #0f0f0f;
  --dark: #171717;
  --gray: #555555;
  --gray-light: #e9e4dc;
  --cream: #faf8f4;
  --paper: #fffdf9;
  --white: #ffffff;
  --gold: #9c7a45;
  --gold-soft: #d8c4a3;

  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 14px 35px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;

  --container: 1180px;
}


/* =========================================================
   BASE
   ========================================================= */

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

section {
  position: relative;
  scroll-margin-top: 90px;
}

.section-heading {
  text-align: center;
  margin-bottom: 42px;
}

.section-heading span,
.eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-heading h2 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 500;
  color: var(--black);
  line-height: 1.15;
}

.section-heading p {
  max-width: 720px;
  margin: 12px auto 0;
  color: var(--gray);
  font-size: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  transition: 0.25s ease;
  white-space: nowrap;
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border: 1px solid var(--black);
  box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
  background: #2a2a2a;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1px solid rgba(15, 15, 15, 0.28);
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-2px);
}

.center-button {
  text-align: center;
  margin-top: 38px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 2500;
  background: rgba(250, 248, 244, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  background: rgba(250, 248, 244, 0.98);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.header-container {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.logo-img {
  width: 68px;
  height: auto;
  object-fit: contain;
}

.logo-text strong {
  display: block;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.3rem;
  color: var(--black);
  line-height: 1;
  letter-spacing: 0.02em;
}

.logo-text span {
  display: block;
  margin-top: 5px;
  color: var(--gray);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}

.main-nav a {
  position: relative;
  color: #222222;
  font-size: 0.88rem;
  font-weight: 700;
  transition: 0.25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 0;
  height: 2px;
  background: var(--black);
  transition: 0.25s ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--black);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: 0.25s ease;
}

.search-btn:hover {
  background: var(--black);
  color: var(--white);
}

.btn-header {
  min-height: 42px;
  padding-inline: 18px;
  font-size: 0.82rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 1rem;
  transition: 0.25s ease;
}

.menu-toggle:hover {
  transform: translateY(-1px);
}


/* =========================================================
   HERO
   ========================================================= */

.hero-section {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  padding: 74px 0 88px;
  background:
    radial-gradient(circle at top right, rgba(156, 122, 69, 0.13), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #faf8f4 100%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 68px;
}

.hero-content h1 {
  margin-bottom: 16px;
  color: var(--black);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(4rem, 9vw, 8.4rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.hero-content h2 {
  margin-bottom: 22px;
  color: var(--gold);
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 500;
}

.hero-content p {
  max-width: 600px;
  margin-bottom: 30px;
  color: #2f2f2f;
  font-size: 1.04rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-content blockquote {
  position: relative;
  padding-left: 34px;
  color: #666666;
  font-size: 0.98rem;
  font-style: italic;
}

.hero-content blockquote::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -18px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  opacity: 0.6;
}

.hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: min(100%, 660px);
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.12));
}


/* =========================================================
   NOTÍCIAS
   ========================================================= */

.news-section {
  padding: 78px 0 70px;
  background: #ffffff;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.news-card {
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.news-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease;
}

.news-card:hover .news-image img {
  transform: scale(1.06);
}

.tag {
  position: absolute;
  left: 16px;
  top: 16px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--black);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.news-content {
  padding: 22px;
}

.news-content time {
  display: block;
  margin-bottom: 8px;
  color: #777777;
  font-size: 0.78rem;
}

.news-content h3 {
  margin-bottom: 10px;
  color: var(--black);
  font-size: 1.15rem;
  line-height: 1.3;
}

.news-content p {
  margin-bottom: 18px;
  color: #4b4b4b;
  font-size: 0.94rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 0.88rem;
  font-weight: 900;
}

.read-more i {
  font-size: 0.75rem;
  transition: 0.25s ease;
}

.read-more:hover i {
  transform: translateX(4px);
}


/* =========================================================
   LIVROS
   ========================================================= */

.books-section {
  padding: 78px 0 86px;
  background: linear-gradient(180deg, #faf8f4 0%, #ffffff 100%);
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}

.book-card {
  text-align: center;
  transition: 0.25s ease;
}

.book-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: var(--shadow-md);
  transition: 0.3s ease;
}

.book-card:hover img {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.book-card h3 {
  min-height: 46px;
  margin-top: 15px;
  color: var(--black);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  line-height: 1.25;
}

.book-card span {
  display: inline-flex;
  margin-top: 8px;
  padding: 7px 15px;
  border-radius: 999px;
  color: var(--black);
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.14);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.book-card.book-muted {
  opacity: 0.45;
  transform: scale(0.97);
}


/* =========================================================
   DEPOIMENTOS
   ========================================================= */

.testimonials-section {
  padding: 76px 0 82px;
  background: #ffffff;
}

.testimonial-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  padding: 34px 28px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
  transition: 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.testimonial-card::after {
  content: "”";
  position: absolute;
  right: 24px;
  bottom: -28px;
  z-index: 0;
  color: var(--gold-soft);
  font-family: Georgia, serif;
  font-size: 8rem;
  opacity: 0.35;
}

.testimonial-card img {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #f0ece4;
}

.testimonial-card h3 {
  position: relative;
  z-index: 1;
  color: var(--black);
  font-size: 1.05rem;
}

.testimonial-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 16px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.testimonial-card p {
  position: relative;
  z-index: 1;
  color: #4e4e4e;
  font-size: 0.95rem;
  font-style: italic;
}


/* =========================================================
   PODCAST
   ========================================================= */

.podcast-section {
  padding: 78px 0;
  color: var(--white);
  background:
    radial-gradient(circle at left top, rgba(156, 122, 69, 0.26), transparent 30%),
    linear-gradient(135deg, #080808 0%, #171717 55%, #060606 100%);
}

.podcast-container {
  display: grid;
  grid-template-columns: 250px 1fr 330px;
  gap: 38px;
  align-items: center;
}

.podcast-cover img {
  width: 250px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.podcast-content h2 {
  margin-bottom: 10px;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
}

.podcast-content p {
  max-width: 620px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.audio-player {
  display: grid;
  grid-template-columns: 58px 1fr 55px;
  gap: 18px;
  align-items: center;
  max-width: 680px;
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.audio-player button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--black);
  transition: 0.25s ease;
}

.audio-player button:hover {
  transform: scale(1.08);
}

.audio-info strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.waveform {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 22px;
}

.waveform span {
  display: block;
  width: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
}

.waveform span:nth-child(1) { height: 8px; }
.waveform span:nth-child(2) { height: 18px; }
.waveform span:nth-child(3) { height: 12px; }
.waveform span:nth-child(4) { height: 22px; }
.waveform span:nth-child(5) { height: 10px; }
.waveform span:nth-child(6) { height: 16px; }
.waveform span:nth-child(7) { height: 9px; }
.waveform span:nth-child(8) { height: 19px; }
.waveform span:nth-child(9) { height: 13px; }
.waveform span:nth-child(10) { height: 21px; }

.waveform span.playing {
  animation: waveMove 0.7s infinite ease-in-out alternate;
}

.waveform span.playing:nth-child(2n) {
  animation-delay: 0.15s;
}

.waveform span.playing:nth-child(3n) {
  animation-delay: 0.3s;
}

@keyframes waveMove {
  from {
    transform: scaleY(0.55);
    opacity: 0.45;
  }

  to {
    transform: scaleY(1.35);
    opacity: 1;
  }
}

.audio-player time {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.podcast-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.podcast-platforms a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  font-size: 0.86rem;
  font-weight: 900;
  transition: 0.25s ease;
}

.podcast-platforms a:hover {
  transform: translateY(-3px);
}

.episodes-list {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}

.episodes-list h3 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.episodes-list a {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.86rem;
}

.episodes-list a span {
  color: var(--gold-soft);
  font-weight: 900;
}

.episodes-list a small {
  color: rgba(255, 255, 255, 0.55);
}

.episodes-list .all-episodes {
  display: inline-flex;
  grid-template-columns: none;
  margin-top: 8px;
  border-bottom: none;
  color: var(--white);
  font-weight: 900;
}


/* =========================================================
   NEWSLETTER
   ========================================================= */

.newsletter-section {
  padding: 70px 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.82)),
    url("../img/newsletter-bg.jpg") center right / cover no-repeat;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.newsletter-container {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 34px;
  align-items: center;
}

.newsletter-text {
  display: flex;
  align-items: center;
  gap: 24px;
}

.newsletter-text > i {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--black);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(0, 0, 0, 0.12);
  font-size: 1.7rem;
}

.newsletter-text h2 {
  color: var(--black);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.2;
  font-weight: 500;
}

.newsletter-text p {
  margin-top: 8px;
  color: var(--gray);
}

.newsletter-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: 0 18px;
  border: none;
  outline: none;
  color: var(--black);
  font-size: 0.95rem;
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 900;
  transition: 0.25s ease;
}

.newsletter-form button:hover {
  background: #2b2b2b;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.trust-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
}

.trust-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gold);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.trust-item strong {
  display: block;
  color: var(--black);
  font-size: 0.95rem;
}

.trust-item span {
  display: block;
  grid-column: 2;
  color: var(--gray);
  font-size: 0.84rem;
}


/* =========================================================
   AGENDA
   ========================================================= */

.agenda-section {
  padding: 78px 0 86px;
  background: #ffffff;
}

.agenda-list {
  max-width: 900px;
  display: grid;
  gap: 18px;
  margin: 0 auto;
}

.agenda-item {
  display: grid;
  grid-template-columns: 86px 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 22px;
  border-radius: var(--radius-md);
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
}

.agenda-date {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--black);
  color: var(--white);
}

.agenda-date strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.agenda-date span {
  display: block;
  margin-top: 3px;
  color: var(--gold-soft);
  font-size: 0.75rem;
  text-transform: uppercase;
}

.agenda-item h3 {
  margin-bottom: 4px;
  color: var(--black);
  font-size: 1.12rem;
}

.agenda-item p {
  color: var(--gray);
  font-size: 0.92rem;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: #f5f1ea;
  color: var(--black);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1fr;
  gap: 48px;
  padding: 58px 0 44px;
}

.footer-brand img {
  width: 110px;
  margin-bottom: 14px;
}

.footer-brand h2 {
  margin-bottom: 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 500;
}

.footer-brand p {
  max-width: 310px;
  color: var(--gray);
  font-size: 0.92rem;
}

.footer-links,
.footer-contact,
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a,
.footer-contact p {
  color: #4c4c4c;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--black);
  font-weight: 800;
}

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact i {
  color: var(--gold);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.14);
  transition: 0.25s ease;
}

.social-icons a:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.footer-bottom {
  width: min(100% - 40px, var(--container));
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 18px 0;
  color: #5d5d5d;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
}

.footer-bottom a {
  color: var(--black);
  font-weight: 800;
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}


/* =========================================================
   SEARCH MODAL
   ========================================================= */

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.search-overlay.active {
  display: flex;
}

.search-modal {
  position: relative;
  width: min(100%, 720px);
  padding: 42px;
  border-radius: 24px;
  background: #fffdf9;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
}

.search-modal h2 {
  margin-bottom: 8px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.2rem;
  font-weight: 500;
}

.search-modal p {
  margin-bottom: 24px;
  color: #555555;
}

.search-form {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
}

.search-form input {
  flex: 1;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid #ddd5ca;
  outline: none;
}

.search-form button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: #111111;
  color: #ffffff;
  font-weight: 900;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result-item {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 14px;
  background: #f6f1ea;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.search-result-item strong {
  color: #111111;
}

.search-result-item span {
  color: #555555;
  font-size: 0.9rem;
}

.no-results {
  padding: 14px;
  border-radius: 12px;
  background: #f6f1ea;
}


/* =========================================================
   TOAST
   ========================================================= */

.toast-container {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 6000;
  display: grid;
  gap: 10px;
}

.toast {
  min-width: 260px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 14px;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(14px);
  transition: 0.3s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-info {
  background: #111111;
}

.toast-success {
  background: #1f7a3f;
}

.toast-error {
  background: #a82a2a;
}


/* =========================================================
   ANIMAÇÕES JS
   ========================================================= */

.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


/* =========================================================
   MENU MOBILE CORRIGIDO
   ========================================================= */

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
    position: relative;
    z-index: 3001;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    right: 0;
    width: min(330px, 86vw);
    height: calc(100vh - 72px);

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;

    padding: 28px 24px;
    background: #fffdf9;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: -20px 0 50px rgba(0, 0, 0, 0.18);
    z-index: 3000;
    overflow-y: auto;

    transform: translateX(110%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      transform 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease;
  }

  .main-nav.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .main-nav a {
    width: 100%;
    padding: 14px 0;
    color: #111111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.95rem;
    font-weight: 700;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav a:hover,
  .main-nav a.active {
    color: var(--gold);
  }
}


/* =========================================================
   RESPONSIVIDADE - TELAS MUITO GRANDES
   ========================================================= */

@media (min-width: 1441px) {
  :root {
    --container: 1320px;
  }

  .hero-section {
    min-height: 820px;
  }

  .hero-content h1 {
    font-size: 8.8rem;
  }

  .hero-image img {
    max-width: 720px;
  }

  .news-image {
    height: 260px;
  }

  .podcast-container {
    grid-template-columns: 280px 1fr 380px;
  }

  .podcast-cover img {
    width: 280px;
  }
}


/* =========================================================
   RESPONSIVIDADE - DESKTOP / NOTEBOOK GRANDE
   ========================================================= */

@media (max-width: 1440px) {
  :root {
    --container: 1180px;
  }

  .hero-content h1 {
    font-size: clamp(4.6rem, 8vw, 7.4rem);
  }

  .hero-image img {
    max-width: 620px;
  }

  .main-nav {
    gap: 22px;
  }
}


/* =========================================================
   RESPONSIVIDADE - NOTEBOOK MÉDIO
   ========================================================= */

@media (max-width: 1280px) {
  :root {
    --container: 1080px;
  }

  .header-container {
    gap: 18px;
  }

  .main-nav {
    gap: 16px;
  }

  .main-nav a {
    font-size: 0.82rem;
  }

  .logo-img {
    width: 58px;
  }

  .logo-text strong {
    font-size: 1.12rem;
  }

  .logo-text span {
    font-size: 0.55rem;
  }

  .btn-header {
    padding-inline: 14px;
    font-size: 0.76rem;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  .hero-content h1 {
    font-size: clamp(4rem, 7vw, 6.5rem);
  }

  .hero-content p {
    font-size: 1rem;
  }

  .books-grid {
    gap: 18px;
  }

  .podcast-container {
    grid-template-columns: 230px 1fr 300px;
    gap: 28px;
  }

  .podcast-cover img {
    width: 230px;
  }

  .footer-container {
    gap: 34px;
  }
}


/* =========================================================
   RESPONSIVIDADE - TABLET HORIZONTAL / NOTEBOOK PEQUENO
   ========================================================= */

@media (max-width: 1100px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .btn-header {
    display: none;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav a {
    font-size: 0.78rem;
  }

  .hero-section {
    min-height: auto;
    padding: 64px 0 78px;
  }

  .hero-container {
    gap: 38px;
  }

  .hero-content h1 {
    font-size: clamp(3.8rem, 7vw, 5.8rem);
  }

  .hero-content h2 {
    font-size: 1.25rem;
  }

  .hero-image img {
    max-width: 520px;
  }

  .cards-grid {
    gap: 22px;
  }

  .news-image {
    height: 210px;
  }

  .books-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 820px;
    margin: 0 auto;
  }

  .podcast-container {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }

  .episodes-list {
    grid-column: 1 / -1;
  }

  .newsletter-container {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    max-width: 620px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   RESPONSIVIDADE - TABLET VERTICAL
   ========================================================= */

@media (max-width: 980px) {
  .header-container {
    min-height: 76px;
  }

  .search-btn {
    display: grid;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-content p {
    margin-inline: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content blockquote {
    display: inline-block;
    text-align: left;
  }

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 430px;
    margin: 0 auto;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin: 0 auto;
  }

  .news-image {
    height: 280px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .agenda-list {
    max-width: 760px;
  }
}


/* =========================================================
   RESPONSIVIDADE - TABLET PEQUENO / CELULAR GRANDE
   ========================================================= */

@media (max-width: 820px) {
  section {
    scroll-margin-top: 82px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 6vw, 2.6rem);
  }

  .section-heading p {
    font-size: 0.95rem;
  }

  .hero-section {
    padding: 50px 0 66px;
  }

  .hero-content h1 {
    font-size: clamp(3.4rem, 13vw, 5rem);
  }

  .hero-content h2 {
    font-size: 1.15rem;
  }

  .hero-content p {
    font-size: 0.96rem;
  }

  .news-section,
  .books-section,
  .testimonials-section,
  .agenda-section {
    padding: 62px 0;
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 620px;
  }

  .book-card img {
    max-height: 390px;
  }

  .podcast-section {
    padding: 62px 0;
  }

  .podcast-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .podcast-cover img {
    width: 230px;
    margin: 0 auto;
  }

  .podcast-content p {
    margin-inline: auto;
  }

  .audio-player {
    max-width: 620px;
    margin-inline: auto;
    text-align: left;
  }

  .podcast-platforms {
    justify-content: center;
  }

  .episodes-list {
    max-width: 620px;
    margin: 0 auto;
    text-align: left;
  }

  .newsletter-text {
    align-items: flex-start;
  }

  .newsletter-text h2 {
    font-size: 2rem;
  }

  .newsletter-form {
    width: 100%;
  }

  .agenda-item {
    grid-template-columns: 76px 1fr;
  }

  .agenda-item .btn {
    grid-column: 2;
    width: fit-content;
  }
}


/* =========================================================
   RESPONSIVIDADE - CELULARES GRANDES
   ========================================================= */

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-container {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
    width: min(310px, 88vw);
    height: calc(100vh - 72px);
  }

  .logo-area {
    gap: 8px;
  }

  .logo-img {
    width: 50px;
  }

  .logo-text strong {
    font-size: 1rem;
  }

  .logo-text span {
    font-size: 0.48rem;
    letter-spacing: 0.05em;
  }

  .header-actions {
    gap: 8px;
  }

  .search-btn,
  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-section {
    padding: 42px 0 58px;
  }

  .hero-image img {
    max-width: 330px;
  }

  .hero-content h1 {
    font-size: clamp(3rem, 15vw, 4.3rem);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-content blockquote {
    padding-left: 28px;
    font-size: 0.9rem;
  }

  .news-image {
    height: 230px;
  }

  .news-content {
    padding: 20px;
  }

  .books-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .book-card h3 {
    min-height: 40px;
    font-size: 0.88rem;
  }

  .book-card span {
    padding: 6px 11px;
    font-size: 0.62rem;
  }

  .testimonial-card {
    padding: 28px 22px;
  }

  .audio-player {
    grid-template-columns: 50px 1fr;
    gap: 14px;
  }

  .audio-player time {
    grid-column: 2;
    justify-self: start;
  }

  .podcast-platforms a {
    width: 100%;
    justify-content: center;
  }

  .episodes-list a {
    grid-template-columns: 40px 1fr;
  }

  .episodes-list a small {
    grid-column: 2;
  }

  .newsletter-container {
    gap: 24px;
  }

  .newsletter-text {
    display: grid;
    justify-items: center;
    text-align: center;
  }

  .newsletter-text h2 {
    font-size: 1.7rem;
  }

  .newsletter-form {
    flex-direction: column;
    border-radius: 18px;
  }

  .newsletter-form input {
    min-height: 48px;
    text-align: center;
  }

  .newsletter-form button {
    justify-content: center;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    grid-template-columns: 42px 1fr;
  }

  .agenda-item {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .agenda-date {
    margin: 0 auto;
  }

  .agenda-item .btn {
    grid-column: auto;
    width: 100%;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand img {
    margin-inline: auto;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-contact p {
    justify-content: center;
  }

  .social-icons {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-bottom div {
    flex-wrap: wrap;
    justify-content: center;
  }
}


/* =========================================================
   RESPONSIVIDADE - CELULARES MÉDIOS
   ========================================================= */

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .site-header {
    background: rgba(250, 248, 244, 0.97);
  }

  .logo-text span {
    display: none;
  }

  .hero-content h1 {
    letter-spacing: -0.04em;
  }

  .hero-content h2 {
    font-size: 1.03rem;
  }

  .hero-content p {
    font-size: 0.92rem;
  }

  .section-heading span,
  .eyebrow {
    font-size: 0.68rem;
  }

  .section-heading h2 {
    font-size: 1.75rem;
  }

  .section-heading p {
    font-size: 0.9rem;
  }

  .news-section,
  .books-section,
  .testimonials-section,
  .agenda-section,
  .newsletter-section {
    padding: 52px 0;
  }

  .news-image {
    height: 205px;
  }

  .news-content h3 {
    font-size: 1rem;
  }

  .news-content p {
    font-size: 0.88rem;
  }

  .books-grid {
    grid-template-columns: 1fr;
    max-width: 290px;
  }

  .book-card h3 {
    min-height: auto;
  }

  .podcast-section {
    padding: 52px 0;
  }

  .podcast-cover img {
    width: 210px;
  }

  .podcast-content h2 {
    font-size: 1.8rem;
  }

  .audio-player {
    padding: 14px;
  }

  .episodes-list {
    padding: 20px;
  }

  .newsletter-text > i {
    width: 62px;
    height: 62px;
    font-size: 1.4rem;
  }

  .newsletter-text h2 {
    font-size: 1.45rem;
  }

  .newsletter-text p {
    font-size: 0.9rem;
  }

  .trust-item {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .trust-item span {
    grid-column: auto;
  }

  .agenda-item {
    padding: 20px;
  }

  .agenda-item h3 {
    font-size: 1rem;
  }

  .footer-brand h2 {
    font-size: 1.45rem;
  }

  .search-modal {
    padding: 32px 22px;
  }

  .search-form {
    flex-direction: column;
  }

  .search-form button {
    justify-content: center;
  }

  .toast-container {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .toast {
    width: 100%;
    max-width: none;
  }
}


/* =========================================================
   RESPONSIVIDADE - CELULARES PEQUENOS
   ========================================================= */

@media (max-width: 430px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .header-container {
    min-height: 68px;
  }

  .main-nav {
    top: 68px;
    width: 88vw;
    height: calc(100vh - 68px);
    padding: 24px 22px;
  }

  .logo-img {
    width: 44px;
  }

  .logo-text strong {
    font-size: 0.9rem;
  }

  .search-btn,
  .menu-toggle {
    width: 38px;
    height: 38px;
    font-size: 0.9rem;
  }

  .hero-section {
    padding: 34px 0 48px;
  }

  .hero-image img {
    max-width: 270px;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .hero-content h2 {
    font-size: 0.96rem;
  }

  .hero-content p {
    font-size: 0.88rem;
  }

  .btn {
    min-height: 44px;
    font-size: 0.85rem;
  }

  .hero-content blockquote {
    font-size: 0.84rem;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }

  .news-image {
    height: 180px;
  }

  .tag {
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    font-size: 0.58rem;
  }

  .news-content {
    padding: 18px;
  }

  .book-card {
    max-width: 245px;
    margin: 0 auto;
  }

  .testimonial-card {
    padding: 24px 18px;
  }

  .testimonial-card img {
    width: 64px;
    height: 64px;
  }

  .testimonial-card p {
    font-size: 0.86rem;
  }

  .podcast-cover img {
    width: 190px;
  }

  .podcast-content h2 {
    font-size: 1.55rem;
  }

  .podcast-content p {
    font-size: 0.88rem;
  }

  .audio-player {
    grid-template-columns: 44px 1fr;
    padding: 12px;
  }

  .audio-player button {
    width: 44px;
    height: 44px;
  }

  .audio-info strong {
    font-size: 0.82rem;
  }

  .episodes-list a {
    font-size: 0.8rem;
  }

  .newsletter-form button {
    font-size: 0.84rem;
  }

  .agenda-date {
    width: 68px;
    height: 68px;
  }

  .agenda-date strong {
    font-size: 1.45rem;
  }

  .footer-bottom {
    font-size: 0.76rem;
  }
}


/* =========================================================
   RESPONSIVIDADE - TELAS MUITO ESTREITAS
   ========================================================= */

@media (max-width: 375px) {
  .container {
    width: min(100% - 18px, var(--container));
  }

  .logo-img {
    width: 40px;
  }

  .logo-text strong {
    font-size: 0.82rem;
  }

  .header-actions {
    gap: 5px;
  }

  .search-btn,
  .menu-toggle {
    width: 36px;
    height: 36px;
  }

  .hero-image img {
    max-width: 240px;
  }

  .hero-content h1 {
    font-size: 2.35rem;
  }

  .hero-content h2 {
    font-size: 0.88rem;
  }

  .hero-content p {
    font-size: 0.84rem;
  }

  .hero-content blockquote {
    padding-left: 22px;
    font-size: 0.78rem;
  }

  .hero-content blockquote::before {
    top: -10px;
    font-size: 3rem;
  }

  .section-heading h2 {
    font-size: 1.38rem;
  }

  .section-heading p {
    font-size: 0.84rem;
  }

  .news-image {
    height: 165px;
  }

  .news-content h3 {
    font-size: 0.94rem;
  }

  .news-content p {
    font-size: 0.82rem;
  }

  .book-card {
    max-width: 220px;
  }

  .book-card h3 {
    font-size: 0.84rem;
  }

  .book-card span {
    font-size: 0.56rem;
  }

  .podcast-content h2 {
    font-size: 1.35rem;
  }

  .audio-info strong {
    font-size: 0.78rem;
  }

  .episodes-list {
    padding: 16px;
  }

  .episodes-list h3 {
    font-size: 0.9rem;
  }

  .newsletter-text h2 {
    font-size: 1.25rem;
  }

  .agenda-item h3 {
    font-size: 0.92rem;
  }

  .agenda-item p {
    font-size: 0.82rem;
  }

  .footer-brand h2 {
    font-size: 1.25rem;
  }

  .footer-links a,
  .footer-contact p {
    font-size: 0.82rem;
  }
}


/* =========================================================
   TELAS BAIXAS
   ========================================================= */

@media (max-height: 720px) and (min-width: 900px) {
  .hero-section {
    min-height: auto;
    padding: 48px 0 58px;
  }

  .hero-content h1 {
    font-size: clamp(3.8rem, 7vw, 5.8rem);
  }

  .hero-image img {
    max-width: 500px;
  }
}


/* =========================================================
   CELULAR EM MODO PAISAGEM
   ========================================================= */

@media (orientation: landscape) and (max-height: 520px) {
  .site-header {
    position: relative;
  }

  .main-nav {
    top: 0;
    height: 100vh;
  }

  .hero-section {
    min-height: auto;
    padding: 36px 0 44px;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
  }

  .hero-image {
    order: 0;
  }

  .hero-image img {
    max-width: 280px;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

  .hero-buttons .btn {
    width: auto;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 0.84rem;
  }
}


/* =========================================================
   ACESSIBILIDADE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}


/* =========================================================
   IMPRESSÃO
   ========================================================= */

@media print {
  .site-header,
  .hero-buttons,
  .search-btn,
  .menu-toggle,
  .podcast-section,
  .newsletter-section,
  .footer-social,
  .footer-bottom div {
    display: none !important;
  }

  body {
    background: #ffffff;
    color: #000000;
  }

  section {
    padding: 28px 0 !important;
  }

  .container {
    width: 100%;
  }

  .news-card,
  .testimonial-card,
  .agenda-item {
    box-shadow: none;
    border: 1px solid #cccccc;
  }

  .footer-container {
    display: block;
  }
}