/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

:root {
  --bg-color: #efeae2;
  --card-bg: rgba(255, 255, 255, 0.65);
  --card-border: rgba(255, 255, 255, 0.8);
  --text-main: #4a4238;
  --text-muted: #7b7165;
  --accent: #8e7a5c;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Page Background - Soft tropical nuance */
.page-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(25px); /* Desfoca a imagem para virar uma textura/nuance */
  transform: scale(1.15); /* Evita bordas brancas do blur */
}

.bg-overlay {
  position: absolute;
  inset: 0;
  /* Uma camada bege suave por cima para manter o texto legível sem ser gritante */
  background: linear-gradient(180deg, rgba(243, 241, 237, 0.70) 0%, rgba(235, 229, 220, 0.95) 100%);
}

/* Container limits the width like a link tree */
.container {
  width: 100%;
  max-width: 480px;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Banner area */
.banner-wrapper {
  width: 100%;
  height: 420px; /* Aumentado de 280px para mostrar muito mais da imagem */
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; /* Centralizado para focar melhor nas pessoas */
  /* Fade suave na base e também nas laterais para não ficar quadrado */
  -webkit-mask-image: 
    linear-gradient(to bottom, black 50%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image: 
    linear-gradient(to bottom, black 50%, transparent 100%),
    linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-composite: intersect;
}

/* Content Area */
.content-wrapper {
  padding: 0 24px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-top: -40px; /* Pull up over the fade */
}

/* Logo */
.logo-wrapper {
  width: 160px;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.logo-image {
  width: 100%;
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

/* Quick Socials (the 3 circles below logo) */
.social-icons {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.icon-circle:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
}

.icon-circle svg {
  width: 20px;
  height: 20px;
}

/* Links List */
.links-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.link-card {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.link-card:hover {
  transform: translateY(-2px);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(230, 222, 212, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text-main);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-content h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-main);
}

.card-content p {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.4;
}

.card-arrow {
  color: var(--text-muted);
  opacity: 0.6;
  transition: var(--transition);
}

.link-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(3px);
  color: var(--accent);
}

.card-arrow svg {
  width: 18px;
  height: 18px;
}


/* Connect Section */
.connect-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 40px 0 24px;
  gap: 12px;
}

.connect-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.connect-line-wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}

.connect-line {
  flex-grow: 1;
  height: 1px;
  background: rgba(142, 122, 92, 0.2);
}

.connect-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(142, 122, 92, 0.4);
}

/* Bottom Socials */
.social-icons-bottom {
  margin-bottom: 40px;
}

.social-icons-bottom .icon-circle {
  background: transparent;
  border: 1px solid rgba(142, 122, 92, 0.2);
}

.social-icons-bottom .icon-circle:hover {
  background: var(--card-bg);
}

/* Footer */
.footer {
  text-align: center;
  margin-top: auto;
}

.footer p {
  font-size: 11px;
  color: var(--text-muted);
}
