:root {
  --primary-color: #0066cc;
  --secondary-color: #003366;
  --accent-color: #f8f9fa;
  --text-color: #333333;
  --light-gray: #f4f4f4;
  --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
  color: var(--text-color);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* min-height: 100vh; */
  padding: 2rem 1rem;
}

.container {
  max-width: 800px;
  width: 100%;
  background-color: white;
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  margin: 1rem 0;
}

header {
  text-align: center;
  margin-bottom: 2rem;
}

.brand-logo {
  width: 130px;
  max-width: 35vw;
  height: auto;
  margin: 0 auto 0.8rem;
  display: block;
  object-fit: cover;
}

h1 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  text-align: center;
}

.intro-text {
  font-size: 1.1rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 2.5rem;
}

.benefits-list li {
  background: var(--accent-color);
  margin: 0.75rem auto;
  padding: 1rem 1.5rem;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  text-align: left;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.benefits-list li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.benefits-list li i {
  font-size: 1.4rem;
  width: 30px;
  color: var(--primary-color);
}

.cta-text {
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  text-align: center;
  color: var(--secondary-color);
}

.icons-grp {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  color: #000;
  padding: 0.5rem;
  border-radius: 50%;
  text-align: center;
  text-decoration: none;
  box-shadow: var(--box-shadow);
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
}

.link-btn i {
  font-size: 2rem;
}

.link-btn img {
  width: 100%;
  height: auto;
  object-fit: fill;
}

.link-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.whatsapp-btn i {
  color: #25d366;
}

.instagram-btn i {
  background: linear-gradient(45deg,
      #405de6,
      #5851db,
      #833ab4,
      #c13584,
      #e1306c,
      #fd1d1d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.facebook-btn i {
  color: #1877f2;
}

.tiktok-btn i {
  color: #000000;
}

footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

@media (max-width: 600px) {
  .container {
    padding: 1.5rem;
  }

  .brand-logo {
    width: 88px;
  }

  h1 {
    font-size: 1.8rem;
  }

  .link-btn {
    width: 60px;
    height: 60px;
  }

  .link-btn i {
    font-size: 2rem;
  }

  .icons-grp {
    gap: 1rem;
  }
}