/* Start custom CSS for html, class: .elementor-element-5061a3a *//* Configurações Globais Básicas */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #ffffff;
}

/* ===================================
   1. SEÇÃO PRÓXIMO PASSO (CTA)
   =================================== */
.cta-section {
  background-color: #682e2e; /* Tom vinho/marrom escuro da imagem */
  padding: 80px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}

/* Subtítulo com traço */
.subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.subtitle .line {
  width: 25px;
  height: 1px;
  background-color: #cbb279;
}

.subtitle-text {
  color: #cbb279; /* Tom dourado */
  font-size: 0.8rem;
  letter-spacing: 2px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Título Principal */
.cta-title {
  font-family: 'Georgia', serif;
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-title .highlight {
  color: #cbb279; /* Cor em destaque no "sozinho." */
}

/* Descrição */
.cta-description {
  font-size: 1rem;
  color: #e2d2d2;
  line-height: 1.5;
  margin-bottom: 35px;
}

/* Botões */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 28px;
  border-radius: 50px; /* Estilo pílula */
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background-color: #ffffff;
  color: #682e2e;
}

.btn-primary:hover {
  background-color: #f0f0f0;
}

.btn-outline {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Nota de rodapé pequena */
.cta-disclaimer {
  font-size: 0.8rem;
  color: #c8b0b0;
}

/* ===================================
   2. RODAPÉ (FOOTER)
   =================================== */
.site-footer {
  background-color: #e5e2d8; /* Tom bege/creme claro */
  color: #555555;
  padding: 25px 40px;
  font-size: 0.85rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo Trilha */
.footer-logo {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: 'Georgia', serif;
  font-size: 1.8rem;
  color: #7d4e4e;
  line-height: 1;
}

.logo-sub {
  font-size: 0.45rem;
  letter-spacing: 1.5px;
  color: #7d4e4e;
  margin-top: 2px;
}

/* Direitos autorais */
.footer-copyright {
  text-align: center;
  color: #666666;
}

/* Contato */
.footer-contact a {
  color: #333333;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Responsividade Básica */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .cta-title {
    font-size: 1.75rem;
  }
}/* End custom CSS */