* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

:root {
  --red: #c40018;
  --red-dark: #850011;
  --ink: #111318;
  --muted: #5d6470;
  --line: rgba(255, 255, 255, 0.2);
  --glass: rgba(255, 255, 255, 0.12);
  --green: #25d366;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 69, 86, 0.78), transparent 34%),
    radial-gradient(circle at 88% 80%, rgba(28, 32, 42, 0.48), transparent 42%),
    linear-gradient(135deg, var(--red), var(--red-dark) 58%, #1d2028);
  color: white;
}

a {
  color: inherit;
}

.wrapper {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
}

.left img {
  width: auto;
  height: 38px;
  max-width: 150px;
  display: block;
  object-fit: contain;
}

.nav-pill {
  position: relative;
  justify-self: center;
  background: rgba(70, 0, 14, 0.55);
  backdrop-filter: blur(14px);
  padding: 6px;
  border-radius: 999px;
  display: flex;
  gap: 5px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.13);
}

.nav-pill a {
  z-index: 2;
  color: white;
  text-decoration: none;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

.nav-pill a.active {
  color: var(--red);
  font-weight: 800;
}

.nav-pill a:hover {
  transform: translateY(-2px);
}

.nav-indicator {
  position: absolute;
  top: 6px;
  left: 6px;
  height: calc(100% - 12px);
  background: white;
  border-radius: 999px;
  transition: left 0.3s ease, width 0.3s ease;
}

.socials {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.socials svg {
  width: 16px;
  height: 16px;
  fill: white;
}

.socials a:hover {
  transform: translateY(-3px) scale(1.08);
}

.socials .fb:hover { background: #1877f2; }
.socials .ig:hover { background: linear-gradient(45deg, #f9ce34, #ee2a7b, #6228d7); }
.socials .tt:hover { background: #000; }

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  padding: 20px 0 44px;
}

.left-content {
  max-width: 560px;
}

.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.left-content h1,
.page-hero h1 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.05;
  margin-bottom: 18px;
}

.left-content p,
.page-hero p {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 17px;
}

.buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  transition: 0.25s;
}

.whatsapp {
  background: var(--green);
  color: white;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.42);
}

.whatsapp:hover,
.cta:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

.secondary {
  background: white;
  color: var(--red);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
}

.secondary:hover {
  transform: translateY(-3px);
}

.product {
  position: relative;
  width: 440px;
  height: 440px;
  flex: 0 0 auto;
}

.blob {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 90, 90, 0.2) 0%, rgba(255, 255, 255, 0.95) 45%, rgba(255, 255, 255, 0.98) 76%);
  border-radius: 38% 62% 44% 56% / 55% 42% 58% 45%;
  animation: blobAnim 8s infinite ease-in-out;
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.48), 0 0 80px rgba(255, 60, 60, 0.22);
}

.product img {
  position: absolute;
  width: 104%;
  height: auto;
  max-height: 104%;
  object-fit: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 4s ease-in-out infinite;
}

@keyframes blobAnim {
  0%, 100% { border-radius: 38% 62% 44% 56% / 55% 42% 58% 45%; }
  50% { border-radius: 58% 42% 65% 35% / 45% 62% 38% 55%; }
}

@keyframes float {
  0%, 100% { transform: translate(-50%, -50%) translateY(0); }
  50% { transform: translate(-50%, -50%) translateY(-14px); }
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.56); }
  70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.section,
.band {
  text-align: center;
  padding: 70px 20px;
  background: rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.section h2,
.services h2,
.band h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 10px;
}

.section p,
.band p {
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
  opacity: 0.88;
}

.services {
  padding: 78px 20px;
  text-align: center;
}

.services .subtitle {
  opacity: 0.9;
  margin: 0 auto 38px;
  max-width: 700px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 12px;
  padding: 26px;
  border-top: 4px solid var(--red);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 245px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #ffeaec;
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin: 0 auto 14px;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--red);
  font-size: 18px;
}

.card p {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
  text-align: center;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  justify-content: center;
}

.card-tags span {
  background: #f1f2f4;
  color: #676d76;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
}

.card-footer {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 800;
  color: var(--red);
  text-align: center;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.24);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 42px;
  min-height: 50px;
  padding: 14px 28px;
  border-radius: 999px;
  background: var(--green);
  color: white;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.42);
  transition: 0.25s;
  animation: pulse 2.5s infinite;
}

.page-hero {
  text-align: center;
  padding: 52px 20px 44px;
}

.page-hero p {
  max-width: 680px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .left {
    justify-self: center;
  }

  .socials {
    justify-content: center;
  }

  .container {
    flex-direction: column;
    text-align: center;
  }

  .buttons {
    justify-content: center;
  }

  .product {
    width: 290px;
    height: 290px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .wrapper {
    padding: 16px;
  }

  .nav-pill {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav-pill a {
    padding: 8px 14px;
    font-size: 14px;
  }

  .buttons .btn,
  .cta {
    width: 100%;
  }
}
