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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: url('fundo_clicklive.png') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  line-height: 1.6;
}

header {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  height: 80px;
  margin-right: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(255, 255, 255, 0.6));
}

nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffcc00;
}

.hero {
  text-align: center;
  padding: 100px 20px;
  background: rgba(0, 0, 0, 0.6);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  background: #ffcc00;
  color: #000;
  border: none;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #e6b800;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 20px;
  background: rgba(255, 255, 255, 0.05);
}

.card {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
  padding: 30px;
  margin: 10px;
  text-align: center;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: scale(1.05);
}

.card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ffcc00;
}

.section {
  padding: 60px 40px;
  background: rgba(0, 0, 0, 0.6);
  margin-top: 20px;
}

.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-align: center;
  color: #ffcc00;
}

.section p,
.section ul {
  max-width: 900px;
  margin: 0 auto 20px;
  font-size: 1.1rem;
  color: #fff;
  text-align: justify;
}

.section ul {
  list-style-type: disc;
  padding-left: 40px;
}

.section h3,
.list h3 {
  font-size: 1.6rem;
  margin-top: 30px;
  color: #ffcc00;
  text-align: center;
}

.list {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
}

/* NOVO BLOCO - LISTA DE CONTATO */
.contact {
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  padding: 40px 20px;
  color: #fff;
}

.contato-lista {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contato-lista li {
  display: flex;
  align-items: center;
  justify-content: center; /* <- ESSENCIAL PARA CENTRALIZAR TODO O BLOCO */
  gap: 12px;
}

.coluna-icon {
  width: 28px;
  min-width: 28px;
  text-align: center;
  font-size: 1.3rem;
  margin-top: 3px;
}

.coluna-texto {
  flex: 1;
  font-size: 1.1rem;
  line-height: 1.4;
}

.contato-descricao {
  margin-top: 10px;
  margin-bottom: 30px;
  font-size: 1.1rem;
  color: #e0e0e0;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
