/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(to bottom, #d50000, #8e0000);
  color: white;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 70px 15px;
  min-height: 100vh;
}

.card-container {
  max-width: 400px;
  width: 100%;
  text-align: center;
}

.logo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: white;
  object-fit: contain;
  margin-bottom: 15px;
}

h1 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.description {
  font-size: 0.95rem;
  margin-bottom: 25px;
}

.button-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.card-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  padding: 18px 24px; 
  transition: background 0.3s, transform 0.2s;
}

.card-button:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.02);
}

.card-button i {
  font-size: 1.2rem;
}

.card-button span {
  flex-grow: 1;
  text-align: center;
  font-weight: bold;
}

.right-icon {
  color: #fff;
}


