:root {
  --primary: #4a7c59; /* Calm deep green */
  --secondary: #8fc0a9; /* Soft mint */
  --accent: #68b0ab; /* Tealish blue */
  --text-dark: #2d3436;
  --text-muted: #636e72;
  --white: #ffffff;
  --card-bg: rgba(255, 255, 255, 0.88);
  --card-width: min(540px, 92vw);
}

* { box-sizing: border-box; }

html, body {
  height: 100%;
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background-color: #f0f2f5;
  background-image: url('background.png');
  background-size: cover;
  background-position: center;
  overflow: hidden; /* Prevents bounce scroll on mobile */
}

.bg-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.7), rgba(255,255,255,0.3));
  backdrop-filter: blur(2px);
  z-index: 0;
}

.card {
  position: relative;
  z-index: 1;
  width: var(--card-width);
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  border-radius: 24px;
  padding: 40px 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
}

/* Logo Fix: Container ensures logo doesn't clip */
.logo-container {
  width: 110px;
  height: 110px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain; /* Prevents cutting off */
}

.header-group h1 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--primary);
}

.subtitle {
  margin: 4px 0 0 0;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-size: 11px;
}

/* Info Items */
.info {
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.dot {
  width: 6px;
  height: 6px;
  background-color: var(--secondary);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.info-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  color: #444;
}

/* CTAs */
.ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.btn {
  width: 100%;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.icon { width: 20px; height: 20px; }

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-ig {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.2);
}

.btn-email {
  background: #f8f9fa;
  color: var(--text-dark);
  border: 1px solid #e1e4e8;
}

.btn:active { transform: scale(0.97); }
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }

.footer-note {
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}

@media (max-width: 400px) {
  .card { padding: 30px 20px; }
  .header-group h1 { font-size: 20px; }
}

@media (max-height: 700px) {
  body { padding: 10px; }
  .card { gap: 12px; padding: 20px; }
  .info { padding: 15px; }
  .logo-container { width: 80px; height: 80px; }
  .header-group h1 { font-size: 18px; }
}