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

body {
  font-family: 'Inter', sans-serif;
  background: #0b0f1a;
  color: #e5e7eb;
}

/* CONTAINER */
.card-container {
  max-width: 420px;
  margin: 0 auto;
  background: #0f172a;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* CAPA */
.cover img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

/* PERFIL */
.profile {
  text-align: center;
  padding: 0 20px;
  margin-top: -60px;
}

.avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #0f172a;
  padding: 6px;
  object-fit: cover;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
}

.profile h1 {
  margin-top: 14px;
  font-size: 1.5rem;
  font-weight: 700;
}

.subtitle {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #94a3b8;
}

/* ABAS */
input[type="radio"] {
  display: none;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 26px 0 14px;
  border-bottom: 1px solid #1e293b;
}

.tab {
  padding: 10px 0;
  font-weight: 600;
  cursor: pointer;
  color: #64748b;
  position: relative;
}

#tab-apresentacao:checked~.tabs label[for="tab-apresentacao"],
#tab-contato:checked~.tabs label[for="tab-contato"] {
  color: #38bdf8;
}

#tab-apresentacao:checked~.tabs label[for="tab-apresentacao"]::after,
#tab-contato:checked~.tabs label[for="tab-contato"]::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: #38bdf8;
}

/* CONTEÚDO */
.tab-content {
  padding: 22px;
}

.content {
  display: none;
}

#tab-apresentacao:checked~.tab-content .apresentacao {
  display: block;
}

#tab-contato:checked~.tab-content .contato {
  display: block;
}

/* SOBRE */
.highlight h3 {
  font-size: 1.1rem;
}
.section-title {
  margin-top: 20px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: whitesmoke;
}

.highlight p {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 18px;
}

.feature-card {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.plans {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.plan {
  background: #020617;
  border: 1px solid #1e293b;
  padding: 16px;
  border-radius: 14px;
}

.highlight-plan {
  border-color: #38bdf8;
}

.plan h4 {
  color: #38bdf8;
}

.plan p {
  margin-top: 6px;
  font-size: 0.9rem;
  color: #cbd5f5;
}

/* BOTÕES */
.actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  border-radius: 16px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn img {
  width: 20px;
  height: 20px;
  filter: invert(100%);
}

.solid {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #020617;
  box-shadow: 0 14px 30px rgba(34, 197, 94, 0.35);
}

.solid:hover {
  transform: translateY(-2px);
}

.outline {
  border: 1px solid #334155;
  color: #e5e7eb;
}

.outline:hover {
  background: #020617;
}

/* ANIMAÇÃO AO SCROLL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
