/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* CSS Variables */
:root {
  --primary: hsl(215, 32%, 17%);
  --primary-foreground: hsl(210, 40%, 98%);
  --background: hsl(40, 20%, 99%);
  --foreground: hsl(220, 15%, 15%);
  --destructive: hsl(0, 84%, 60%);
  --secondary: hsl(210, 20%, 96%);
  --muted: hsl(210, 40%, 96%);
  --muted-foreground: hsl(215, 16%, 40%);
  --border: hsl(214, 20%, 90%);
  --accent: hsl(45, 90%, 90%);
  --radius: 0.25rem;
  --font-serif: 'Merriweather', serif;
  --font-sans: 'Source Sans Pro', sans-serif;
  --font-display: 'Playfair Display', serif;
}

/* Base Styles */
body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.625;
  color: var(--foreground);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.025em;
}

p {
  margin-bottom: 1.5rem;
}

strong {
  font-weight: 700;
  color: var(--primary);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 2rem;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

/* Header */
.header {
  width: 100%;
  border-bottom: 1px solid var(--border);
  background-color: white;
  padding: 0.75rem 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

@media (min-width: 640px) {
  .header-inner {
    padding: 0 1.5rem;
  }
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 2rem;
  }
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.logo-icon {
  height: 2rem;
  width: 2rem;
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
  background-color: var(--primary);
  border-radius: 0.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: var(--primary);
}

.header-nav {
  display: none;
  gap: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.header-cta {
  display: none;
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: white;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 0.375rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.2s ease, opacity 0.3s ease, transform 0.3s ease;
  opacity: 0;
  transform: translateY(-0.25rem);
  pointer-events: none;
}

.header-cta:hover {
  background-color: #b91c1c;
}

.header-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header.scrolled .header-cta {
  display: inline-flex;
}

.header.scrolled .logo-text {
  display: none;
}

.header.scrolled .header-nav {
  display: none;
}

@media (min-width: 768px) {
  .header-cta {
    font-size: 1rem;
    padding: 0.4rem 1.25rem;
  }

  .header.scrolled .logo-text {
    display: inline;
  }

  .header.scrolled .header-nav {
    display: flex;
  }
}

@media (min-width: 768px) {
  .header-nav {
    display: flex;
  }
}

/* Main Layout */
.main-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .main-grid {
    grid-template-columns: 8fr 4fr;
    gap: 3rem;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

/* Article */
.article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .article {
    gap: 1.5rem;
  }
}

/* Article Header */
.article-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .article-header {
    padding-bottom: 1.5rem;
  }
}

.special-report-badge {
  color: #dc2626;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.75rem;
  display: block;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .special-report-badge {
    font-size: 0.875rem;
  }
}

.article-title {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .article-title {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .article-title {
    font-size: 2.25rem;
  }
}

.article-subtitle {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.4;
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .article-subtitle {
    font-size: 1.25rem;
    padding-left: 1.5rem;
  }
}

.highlight-link {
  text-decoration: none;
  color: inherit;
}

.highlight-link:hover .highlight-text {
  background: linear-gradient(120deg, #fde68a 0%, #fcd34d 100%);
}

.highlight-text {
  background: linear-gradient(120deg, #fef3c7 0%, #fde68a 100%);
  padding: 0.1em 0.3em;
  border-radius: 0.2em;
  font-style: normal;
  font-weight: 600;
  color: #92400e;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #64748b;
}

@media (min-width: 768px) {
  .article-meta {
    font-size: 0.875rem;
  }
}

.article-meta strong {
  color: #0f172a;
}

/* Video Thumbnail */
.video-wrapper {
  width: 100%;
  margin: 0 0;
}

@media (min-width: 768px) {
  .video-wrapper {
    margin: 0 0;
  }
}

.video-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  background-color: #0f172a;
  border: 4px solid white;
}

.video-thumbnail:hover .video-bg {
  transform: scale(1.05);
}

.video-bg {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(to bottom right, #1e293b, #0f172a);*/
  opacity: 0.9;
  transition: transform 0.7s ease-out;
}

.video-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: overlay;
}

.video-overlay-text {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  right: 1rem;
  text-align: center;
  z-index: 10;
}

@media (min-width: 768px) {
  .video-overlay-text {
    top: 1rem;
    text-align: left;
  }
}

.video-breaking-badge {
  display: none;
  padding: 0.25rem 0.75rem;
  background-color: #dc2626;
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 0.125rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .video-breaking-badge {
    display: inline-block;
  }
}

.video-title {
  color: white;
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
  .video-title {
    font-size: 1.5rem;
  }
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.play-btn-outer {
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.video-thumbnail:hover .play-btn-outer {
  transform: scale(1.1);
}

.play-btn-inner {
  width: 4rem;
  height: 4rem;
  background-color: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.play-icon {
  width: 2rem;
  height: 2rem;
  color: white;
  margin-left: 0.25rem;
}

.video-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0.25rem;
  background-color: rgba(255, 255, 255, 0.3);
}

.video-progress-bar-fill {
  width: 33%;
  height: 100%;
  background-color: #dc2626;
}

.video-caption {
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  font-style: italic;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .video-caption {
    font-size: 0.875rem;
  }
}

/* Prose Content */
.prose {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  color: #475569;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .prose {
    font-size: 1.25rem;
  }
}

.prose h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .prose h2 {
    font-size: 1.875rem;
  }
}

.prose h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Info Box */
.info-box {
  background-color: #f0f9ff;
  padding: 0.5rem 1rem 1rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #bae6fd;
  margin: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .info-box {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    margin: 2rem 0;
  }
}

.info-box-title {
  color: #0369a1;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .info-box-title {
    font-size: 1.25rem;
  }
}

.info-text {
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .info-text {
    font-size: 1rem;
  }
}

.info-text.bold {
  font-weight: 500;
}

/* Warning Box */
.warning-box {
  background-color: #fef2f2;
  padding: 0.5rem 1rem 1rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #fecaca;
  margin: 1rem 0 2rem;
}

@media (min-width: 768px) {
  .warning-box {
    padding: 0.5rem 1.5rem 1.5rem 1.5rem;
    margin: 2rem 0;
  }
}

.warning-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #991b1b;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .warning-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
}

.warning-icon {
  width: 1.25rem;
  height: 1.25rem;
}

@media (min-width: 768px) {
  .warning-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.warning-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .warning-list {
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
  }
}

.warning-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.warning-bullet {
  color: #ef4444;
  margin-top: 0.125rem;
}

.warning-text {
  font-size: 0.9375rem;
  margin: 0;
}

@media (min-width: 768px) {
  .warning-text {
    font-size: 1rem;
  }
}

.warning-text.bold {
  font-weight: 500;
}

/* Figure */
.figure {
  margin: 2rem 0;
}

.figure img {
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.figure figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.5rem;
}

/* Story Section */
.story-section {
  border-left: 4px solid #D92121;
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.story-section h3 {
  margin-top: 0;
}

/* Testimonials */
.testimonials-section {
  margin: 3rem 0;
}

.testimonials-title {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
}

@media (min-width: 768px) {
  .testimonial-card {
    padding: 2rem;
  }
}

.testimonial-stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #eab308;
}

.star-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}

.testimonial-quote {
  font-size: 1.125rem;
  color: #475569;
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.625;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #e2e8f0;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.testimonial-name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0;
}

.testimonial-location {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0;
}

/* FAQ Section */
.faq-section {
  background-color: #f8fafc;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 2rem;
  }
}

.faq-title {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .faq-title {
    margin-bottom: 1.5rem;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.75rem;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  padding: 0.5rem 0;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .faq-question {
    font-size: 1.125rem;
  }
}

.faq-question:hover {
  color: var(--primary);
}

.faq-arrow {
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  color: #475569;
  font-size: 0.875rem;
  line-height: 1.625;
  padding-top: 0.5rem;
}

@media (min-width: 768px) {
  .faq-answer {
    font-size: 1rem;
  }
}

.faq-item.open .faq-answer {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Bottom CTA */
/* Mid CTA */
.mid-cta {
  /*background-color: var(--primary);*/
  color: var(--primary-foreground);
  padding: 1.2rem;
  border-radius: 1rem;
  text-align: center;
  /*box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);*/
  margin: 2rem 0;
  font-family: var(--font-sans);
}

@media (min-width: 768px) {
  .mid-cta {
    padding: 2rem;
  }
}

/* Bottom CTA */
.bottom-cta {
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 2rem 1.4rem 2rem 1.4rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  margin-top: 3rem;
}

.bottom-cta h2 {
  font-size: 1.5rem;
  color: inherit;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .bottom-cta h2 {
    font-size: 1.875rem;
  }

  .bottom-cta {
    padding: 2rem;
  }
}

.bottom-cta p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-weight: 700;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary);
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: hsl(215, 32%, 22%);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.btn-pulsing {
  background-color: #B11226;
  color: white;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid #991b1b;
  /*text-transform: uppercase;*/
  /*letter-spacing: 0.05em;*/
}

.btn-pulsing:hover {
  background-color: #b91c1c;
}

.btn-pulsing:active {
  border-bottom-width: 0;
  transform: translateY(4px);
}

.btn-sm {
  height: 2.25rem;
  padding: 0 1rem;
  font-size: 0.75rem;
}

.btn-md {
  height: 2.75rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
}

.btn-lg {
  height: 3.5rem;
  padding: 0 2rem;
  font-size: 1rem;
}

.btn-xl {
  height: 4.5rem;
  padding: 0 2.5rem;
  font-size: 1.25rem;
  width: 100%;
}


@media (max-width: 400px) {
  .btn-xl {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (min-width: 768px) {
  .btn-xl {
    width: auto;
  }
}

/* Pulsing Animation */
.pulsing-button {
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 20px rgba(220, 38, 38, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
  }
}

/* Sidebar */
.mobile-author-card {
  display: block;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .mobile-author-card {
    display: none;
  }
}

.sidebar {
  display: none;
}

@media (min-width: 1024px) {
  .sidebar {
    display: block;
  }
}

.sidebar-sticky {
  position: sticky;
  top: 6rem;
}

.sidebar-widget {
  background-color: white;
  border: 1px solid var(--border);
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
}

.sidebar-widget-title {
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.author-avatar {
  width: 4rem;
  height: 4rem;
  background-color: #e2e8f0;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 0;
}

.author-title {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 0;
}

.author-bio {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.625;
  margin-bottom: 0;
}

.sidebar-cta {
  background-color: #eff6ff;
  border: 1px solid #dbeafe;
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
}

.sidebar-cta h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.875rem;
  color: #475569;
  margin-bottom: 1rem;
}

.sidebar-cta .btn {
  width: 100%;
}

.social-proof {
  margin-top: 1.5rem;
  text-align: center;
}

.social-proof-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.social-proof-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  opacity: 0.4;
  filter: grayscale(100%);
}

.social-proof-logos img {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
}

@media (min-width: 768px) {
  .social-proof-logos img {
    height: 1.25rem;
  }
}

/* Article PDF Card */
.article-pdf-card {
  margin-top: 1.5rem;
}

.article-pdf-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: #fef3c7;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.article-pdf-link:hover {
  background: #fde68a;
}

.article-pdf-thumbnail {
  width: 100%;
  max-width: 12rem;
  height: auto;
  border-radius: 0.375rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.article-pdf-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.125rem;
  text-align: center;
}

.article-pdf-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}

.article-pdf-subtitle {
  font-size: 0.75rem;
  color: #64748b;
}

/* Footer */
.footer {
  background-color: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  padding: 3rem 0;
  margin-top: 5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
  color: #475569;
  font-weight: 500;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-links {
    flex-direction: row;
  }
}

.footer-links a {
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.footer-disclaimer p:last-child {
  margin-bottom: 0;
}

/* VSL Page Specific */
.vsl-header {
  width: 100%;
  padding: 1rem 0;
  background-color: white;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.vsl-header span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
}

.vsl-container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  max-width: 56rem;
}

.vsl-badge {
  display: inline-block;
  background-color: #fee2e2;
  color: #b91c1c;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
  border: 1px solid #fecaca;
}

.vsl-title {
  font-size: 1.875rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #0f172a;
}

@media (min-width: 768px) {
  .vsl-title {
    font-size: 3rem;
  }
}

.vsl-title .highlight {
  color: #dc2626;
  background-color: #fef2f2;
  padding: 0 0.5rem;
  border-radius: 0.375rem;
}

.vsl-subtitle {
  font-size: 1.125rem;
  color: #475569;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (min-width: 768px) {
  .vsl-subtitle {
    font-size: 1.25rem;
  }
}

.vsl-video-wrapper {
  background-color: black;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 4px solid white;
  aspect-ratio: 16/9;
  position: relative;
  margin-bottom: 2rem;
}

.vsl-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.vsl-cta-section {
  /*  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 1s ease-out;*/
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: none;
}

/*.vsl-cta-section.visible {
  opacity: 1;
  transform: translateY(0);
}*/

.vsl-cta-box {
  background-color: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
  text-align: center;
  max-width: 42rem;
  margin: 0 auto;
}

.vsl-cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.vsl-cta-subtitle {
  color: #475569;
  margin-bottom: 1.5rem;
}

.vsl-guarantees {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .vsl-guarantees {
    flex-direction: row;
  }
}

.vsl-guarantee {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.vsl-guarantee svg {
  width: 1.25rem;
  height: 1.25rem;
}

.vsl-guarantee.green svg {
  color: #16a34a;
}

.vsl-guarantee.blue svg {
  color: #2563eb;
}

.vsl-guarantee.yellow svg {
  color: #ca8a04;
}

/* Terms / Privacy Pages */
.legal-page {
  min-height: 100vh;
  background-color: var(--background);
}

.legal-content {
  padding: 3rem 0;
  max-width: 48rem;
  font-family: var(--font-serif);
  color: #475569;
}

.legal-content h1 {
  font-size: 1.875rem;
  margin-bottom: 2rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  line-height: 1.75;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mt-4 {
  margin-top: 1rem;
}

.hidden {
  display: none;
}

.min-h-screen {
  min-height: 100vh;
}

.bg-slate-50 {
  background-color: #f8fafc;
}

/* Legal Page Styles */
.legal-page {
  min-height: 100vh;
  background-color: var(--background);
}

/* Highlight class for VSL page */
.highlight {
  color: #dc2626;
  background-color: #fef2f2;
  padding: 0 0.5rem;
  border-radius: 0.375rem;
}

/* --- Barra de Autoridade --- */
.authority-bar {
  text-align: center;
  margin-bottom: 50px;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  background-color: #f9f9f9;
}

.authority-title {
  font-size: 13px;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 25px;
  font-weight: bold;
  letter-spacing: 1px;
}

.logos-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 35px;
}

.logos-container img {
  height: 70px;
  /* Levemente ajustado para acompanhar a redução do vídeo */
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s;
}

.logos-container img.harvard-logo {
  height: 60px;
}

.logos-container img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* --- REFERÊNCIAS CIENTÍFICAS --- */
.references-section {
  max-width: 800px;
  margin: 0 auto 60px auto;
  color: #555;
  font-size: 14px;
  padding: 0 15px;
}

.references-title {
  font-size: 18px;
  font-weight: bold;
  color: #555;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.ref-list {
  list-style: decimal;
  padding-left: 20px;
}

.ref-list li {
  margin-bottom: 12px;
  line-height: 1.5;
}

.ref-list li span {
  font-style: italic;
  color: #888;
  display: block;
  font-size: 12px;
}