/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* VARIÁVEIS */
:root {
  --bg-color: #CCD7E6;
  --card-bg: #FFFFFF;
  --text-color: #000000;
  --text-muted: #555;
  --primary: #E80070;
  --primary-hover: #cc0066;
  --divider: #D3D3D3;
}

/* BASE */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* CONTAINER */
.container {
  width: 100%;
  padding: 1rem;
}

/* CARD */
.card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ÍCONE */
.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(230, 0, 115, 0.1);
  color: var(--primary);
  font-size: 2rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* TÍTULO */
h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

/* TEXTO */
.description {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* DIVISOR */
.divider {
  border: none;
  border-top: 1px solid var(--divider);
  margin: 1.5rem 0;
}

/* BOTÃO */
.cta-button {
  display: inline-block;
  background: var(--primary);
  color: white;
  text-decoration: none;
  padding: 0.9rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.1s ease;
}

.cta-button:hover {
  background: var(--primary-hover);
}

.cta-button:active {
  transform: scale(0.98);
}

/* LINK */

.link {
  display: flex;
  flex-direction: column;  
  align-items: center;      
  margin-top: 0.85rem;
  font-size: 0.75rem;
  color: #666;
}

.link a{
  color: rgb(65, 138, 254);
}

.link a:hover {
    color: inherit;
    text-decoration: underline;
}

.link:hover {
  text-decoration: none;  
}

/* RESPONSIVO */
@media (max-width: 480px) {
  .card {
    padding: 2rem 1.5rem;
  }

  h1 {
    font-size: 1.5rem;
  }

  .description {
    font-size: 0.95rem;
  }
}

.card-logo{
  max-width: 80px;
  display: block;
  height: auto;
  margin:-10px 0 1rem 0;
  align-self: flex-start;
}

