/* ═══════════════════════════════════════════════════════
   Iago Santiago — Link in Bio
   Gerado por web-processor-html skill
   ═══════════════════════════════════════════════════════ */

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ─── Base ───────────────────────────────────────────── */
body {
  font-family: 'Rethink Sans', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #333;
}

/* ─── Acessibilidade: skip-link ──────────────────────── */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #1e1bf4;
  color: #fff;
  padding: 8px 16px;
  z-index: 9999;
  border-radius: 0 0 4px 0;
  font-size: 14px;
}
.skip-link:focus { top: 0; }

/* ─── Focus visible global ───────────────────────────── */
:focus-visible {
  outline: 2px solid #1e1bf4;
  outline-offset: 3px;
}

/* ─── Page wrapper ───────────────────────────────────── */
.page {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ─── Header ─────────────────────────────────────────── */
.header {
  text-align: center;
  padding: 28px 0 8px;
  font-size: 18px;
  font-weight: 700;
  font-family: 'Garet', 'Rethink Sans', system-ui, sans-serif;
  color: #000;
  letter-spacing: 0.01em;
}

/* ─── Hero headline ──────────────────────────────────── */
.hero {
  text-align: center;
  padding: 20px 0 48px;
}
.hero h1 {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
  letter-spacing: -0.01em;
}
/* Palavra destacada em azul */
.hero h1 .hl {
  background: #1e1bf4;
  color: #fff;
  padding: 2px 12px 4px;
  position: relative;
  display: inline-block;
  border-radius: 4px;
}
/* Risco embaixo da palavra toda */
.hero h1 .hl::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 9'%3E%3Cpath d='M2 7 Q100 1 198 7' stroke='%23000' stroke-width='3.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}

/* ─── Cards grid ─────────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 20px;
}

/* ─── Card ───────────────────────────────────────────── */
.card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  padding: 20px;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.28);
}
/* Duplo gradiente para contraste máximo */
.card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.10) 100%),
    linear-gradient(to top,    rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.10) 65%, transparent 100%);
  z-index: 1;
}
.card > * { position: relative; z-index: 2; }

/* ─── Card top ───────────────────────────────────────── */
.card-top { display: flex; align-items: flex-start; }

/* ─── Badge ──────────────────────────────────────────── */
.badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ─── Card texto ─────────────────────────────────────── */
.card-title {
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  margin-top: 14px;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 4px rgba(0,0,0,1);
}
.card-desc {
  font-size: 14px;
  color: #fff;
  line-height: 1.6;
  margin-top: 10px;
  text-shadow: 0 1px 6px rgba(0,0,0,0.95), 0 1px 2px rgba(0,0,0,1);
}

/* ─── Card CTA button ────────────────────────────────── */
.card-cta {
  display: block;
  background: #1e1bf4;
  color: #fff;
  text-align: center;
  padding: 14px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 22px;
  min-height: 44px;          /* acessibilidade: tap target */
  transition: background 0.2s;
}
.card-cta:hover { background: #1512d4; }

/* ─── Seção redes sociais ────────────────────────────── */
.social-section {
  text-align: center;
  padding: 60px 20px 44px;
}
.social-section-title {
  font-size: 40px;
  font-weight: 800;
  color: #000;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.social-btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-platform-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1.5px solid #e0e0e0;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  background: #f5f5f5;
  min-height: 44px;           /* acessibilidade: tap target */
  transition: background 0.2s, transform 0.15s;
}
.social-platform-btn:hover {
  background: #ebebeb;
  transform: translateY(-2px);
}
.platform-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.platform-icon svg { width: 17px; height: 17px; fill: #fff; }
.platform-icon.yt  { background: #FF0000; }
.platform-icon.ig  { background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.platform-icon.tt  { background: #010101; }
.platform-icon.li  { background: #0077B5; }
.platform-icon.sub { background: #FF6719; }

/* ─── Seção sobre/bio ────────────────────────────────── */
.about-section {
  background: #f7f6f0;
  border-radius: 16px;
  padding: 44px 48px;
  margin: 8px 0 24px;
  text-align: center;
}
.about-photo {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 36px;
  border-radius: 14px;
  overflow: hidden;
  background: #d8d8d0;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
.about-section h2 {
  font-size: 26px;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.about-section p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #333;
  max-width: 700px;
  margin: 0 auto 16px;
}
.about-section p:last-child { margin-bottom: 0; }

/* ─── WhatsApp section ───────────────────────────────── */
.whatsapp-section {
  text-align: center;
  padding: 16px 20px 48px;
}
.whatsapp-section p {
  font-size: 15px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 18px;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  min-height: 44px;           /* acessibilidade: tap target */
  transition: background 0.2s, transform 0.2s;
}
.whatsapp-btn:hover { background: #20ba59; transform: translateY(-2px); }
.whatsapp-btn svg { width: 22px; height: 22px; fill: #fff; }

/* ─── Footer ─────────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 24px 20px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid #f0f0f0;
}

/* ─── Otimizações mobile ─────────────────────────────── */
@media (max-width: 767px) {
  /* Desabilitar backdrop-filter no mobile → enorme ganho GPU */
  .badge {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(0,0,0,0.25);
  }
}

@media (max-width: 700px) {
  .hero h1 { font-size: 34px; }
  .cards-grid { grid-template-columns: 1fr; }
  .card { min-height: 260px; }
  .card-title { font-size: 22px; }
  .social-section-title { font-size: 28px; }
  .about-section { padding: 32px 24px; }
  .social-btns { gap: 10px; }
  .social-platform-btn { padding: 10px 16px; font-size: 13px; }
}

/* ─── Prefers reduced motion ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .card, .card-cta, .social-platform-btn, .whatsapp-btn {
    transition: none;
  }
}
