/* Reset and base styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
  list-style: none;
}

/* Custom properties */
:root {
  --primary-color: #b91010; /* Azul do CTA */
  --hover-color: #700909; /* Azul mais escuro para hover */
  --text-color: #333;
  --benefit-green: #b91010;
  --max-width: 1100px;
  --spacing: 1.5rem;
  --light-gray-bg: #e4e6e9;
  --white-bg: #ffffff;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-gray-bg);
}

a {
  color: #333;
}

/* Main container */
.container {
  max-width: var(--max-width);
  padding: calc(var(--spacing) * 2);
  display: flex;
  flex-direction: column;
  background-color: var(--white-bg);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 25vh auto;
}

.grid {
  gap: var(--spacing);
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
}

.item {
  flex: 1; /* Faz as colunas terem a mesma largura base */
}

/* Typography */
h1 {
  font-size: 2.25rem;
  line-height: 1.2;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #111827;
}

p {
  font-size: 1rem;
  margin-bottom: 1rem;
  color: #374151;
  max-width: 460px;
}

.video-link {
  text-decoration: underline;
  color: var(--primary-color);
  font-weight: 500;
}

/* Benefits List (Nova) */
.benefits-list {
  margin-top: 1.5rem;
  padding-left: 0;
}

.benefits-list li {
  position: relative;
  padding-left: 3rem; /* Espaço para o ícone */
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: #374151;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.benefits-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: var(--benefit-green);
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
}

/* Media Column */
.media {
  display: flex;
  flex-direction: column;
}

/* Video thumbnail container */
.video-container {
  position: relative;
  display: block;
  cursor: pointer;
  margin-bottom: 1.5rem;
}

.video-container img {
  width: 100%;
  border-radius: 4px;
  display: block;
}

/* CTA Button */
.cta-button {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  padding: 1rem 2rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: center;
  color: white;
  background-color: var(--primary-color);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cta-button:hover,
.cta-button:focus {
  background-color: var(--hover-color);
  text-decoration: none;
}

/* Footer (Mantido como estava, com pequenos ajustes de consistência) */
footer {
  display: flex;
  flex-direction: column;
  margin-top: 150vh;
  padding: var(--spacing);
  gap: var(--spacing);
  text-align: center;
  font-size: 0.875rem;
  color: #666;
  border-top: 1px solid #ddd;
}

.footer-disclaimer {
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
  text-align: center;
  font-size: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links a:focus {
  text-decoration: underline;
  color: #000;
}

/* Responsive */
@media (max-width: 800px) {
  .container {
    margin-top: 0;
    border-radius: 0;
    border: none;
    padding: 2rem 1.5rem;
  }

  .grid {
    flex-direction: column-reverse;
    gap: calc(var(--spacing) * 1);
  }

  h1 {
    font-size: 1.7rem;
  }
  p {
    max-width: 320px;
  }
  .video-container {
    margin-bottom: 0rem;
  }
  .media {
    display: flex;
    gap: 2rem;
  }
}
