/* Header */
.brand {
  margin-bottom: 1.5rem;
  position: relative;
}

.brand-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-style: normal;
  font-weight: 800;
  margin: 0.75rem 0 0.25rem;
}

.brand-subtitle {
  color: var(--text-light);
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.divider {
  background: var(--accent);
  border-radius: 4px;
  height: 8px;
  margin: 20px auto;
  width: 200px;
}

/* Logo */
.logo {
  border-radius: 50%;
  height: 260px;
  margin: 0 auto;
  overflow: hidden;
  width: 260px;
}

.logo-img {
  height: 100%;
  object-fit: contain;
  padding: 16px;
  width: 100%;
}

/* Card */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
}

.card p {
  color: var(--text-dark);
  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}
/* Botão Aplicativos */
.top-apps-button {
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
  
  padding: 0.6rem 0.9rem;
  position: absolute;
  right: 0;
  text-decoration: none;
  top: 0;

  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.top-apps-button:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  transform: translateY(-2px);
}

.top-apps-icon-img {
  height: 18px;
  width: 18px;
}

/* Botão Contato */
.contact-button-light {
  align-items: center;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  display: inline-flex;
  justify-content: center;
  
  margin-top: 1.8rem;
  padding: 0.9rem 1.8rem;
  text-decoration: none;

  font-family: 'Roboto', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-button-light:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,.15);
  transform: translateY(-2px);
}

/* Footer */
.site-footer {
color: var(--text-light);
font-family: 'Montserrat', sans-serif;
font-size: 0.9rem;
font-weight: 400;
margin: 2rem 0 1rem;
opacity: 1.4;
}

/* Mobile */
@media (max-width: 480px) {
  .logo {
    height: 120px;
    width: 120px;
  }

  .contact-button-light {
    width: 100%;
  }
}