:root {
  --azul: #073b9a;
  --azul-escuro: #041d4d;
  --azul-claro: #eaf6ff;
  --amarelo: #ffd231;
  --laranja: #ff9f1c;
  --rosa: #ff4f8b;
  --verde: #22c55e;
  --texto: #102044;
  --branco: #ffffff;
  --sombra: 0 18px 45px rgba(7, 59, 154, .18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: linear-gradient(180deg, #eef9ff 0%, #fff 55%, #eff8ff 100%);
  color: var(--texto);
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

/* TOPO */

.topbar {
  position: sticky;
  top: 0;
  z-index: 99;
  background: rgba(4, 29, 77, .94);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: #fff;
  font-size: 1.6rem;
}

.logo span {
  background: var(--amarelo);
  color: var(--azul-escuro);
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: 0 3px 0 #ffb703;
}

.menu {
  display: flex;
  gap: 24px;
  align-items: center;
}

.menu a {
  color: #fff;
  font-weight: 700;
  opacity: .92;
}

.menu a:hover {
  color: var(--amarelo);
}

.btn-top {
  background: var(--amarelo);
  color: var(--azul-escuro) !important;
  padding: 13px 20px;
  border-radius: 999px;
  box-shadow: 0 5px 0 #d69200;
  transition: .25s;
}

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

/* HERO */

.hero {
  position: relative;
  background: radial-gradient(circle at 70% 35%, #1483e6 0%, #073b9a 38%, #041d4d 100%);
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#fff 1.2px, transparent 1.2px);
  background-size: 38px 38px;
  opacity: .15;
}

.hero-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 40px;
  padding: 80px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #14b8ff;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(0, 0, 0, .15);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  line-height: 1.02;
  margin-bottom: 18px;
  text-shadow: 0 5px 0 rgba(0, 0, 0, .16);
}

.hero h1 strong {
  color: var(--amarelo);
}

.hero p {
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.55;
  max-width: 650px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

/* BOTÕES */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amarelo);
  color: var(--azul-escuro);
  font-weight: 900;
  padding: 17px 28px;
  border-radius: 18px;
  box-shadow: 0 7px 0 #d69200;
  transition: .25s;
  text-align: center;
}

.btn:hover {
  transform: translateY(-4px) scale(1.02);
}

.btn-sec {
  background: #fff;
  color: var(--azul);
  box-shadow: 0 7px 0 rgba(255, 255, 255, .45);
}

/* MINI BENEFÍCIOS HERO */

.trust-mini {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.trust-mini div {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 16px;
  padding: 12px;
  font-weight: 800;
  font-size: .9rem;
}

/* HERO IMAGE */

.hero-showcase {
  position: relative;
  animation: float 4s ease-in-out infinite;
}

.hero-card {
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .24);
  padding: 16px;
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .28);
  backdrop-filter: blur(8px);
}

.hero-card img {
  border-radius: 22px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.spark {
  position: absolute;
  font-size: 2.7rem;
  filter: drop-shadow(0 5px 5px rgba(0, 0, 0, .2));
  animation: pulse 2s infinite;
}

.spark.s1 {
  left: -15px;
  top: 25px;
}

.spark.s2 {
  right: -12px;
  top: 90px;
}

.spark.s3 {
  left: 30px;
  bottom: -18px;
}

.wave {
  height: 70px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 70% 70% 0 0;
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

/* SEÇÕES */

.section {
  padding: 75px 0;
}

.title {
  text-align: center;
  margin-bottom: 42px;
}

.title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--azul-escuro);
  margin-bottom: 10px;
}

.title h2 span {
  color: var(--laranja);
}

.title p {
  font-size: 1.1rem;
  color: #41547a;
  max-width: 760px;
  margin: auto;
  line-height: 1.6;
}

/* PRODUTOS */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.product-card {
  background: #fff;
  border-radius: 28px;
  padding: 18px;
  box-shadow: var(--sombra);
  transition: .3s;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(7, 59, 154, .08);
  animation: fadeUp .7s both;

  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:nth-child(2) {
  animation-delay: .12s;
}

.product-card:nth-child(3) {
  animation-delay: .24s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(7, 59, 154, .25);
}

.label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--verde);
  color: #fff;
  font-weight: 900;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: .85rem;
}

.label.orange {
  background: var(--laranja);
}

.label.pink {
  background: var(--rosa);
}

.product-img {
  border-radius: 22px;
  overflow: hidden;
  background: #dff5ff;
}

.product-img img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: .45s;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
}

.product-content {
  padding: 22px 8px 8px;

  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-content h3 {
  font-size: 1.55rem;
  line-height: 1.1;
  color: var(--azul-escuro);
  margin-bottom: 12px;
}

.product-content p {
  color: #43577e;
  line-height: 1.55;
  margin-bottom: 16px;
}

.checklist {
  list-style: none;
  margin: 18px 0;
  flex: 1;
}

.checklist li {
  margin: 10px 0;
  padding-left: 28px;
  position: relative;
  font-weight: 700;
  color: #263a63;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  background: #25d366;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .8rem;
}

.card-btn {
  width: 100%;
  margin-top: auto;
}

/* BENEFÍCIOS */

.benefits {
  background: linear-gradient(135deg, #041d4d, #073b9a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.benefits::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#fff 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .12;
}

.benefits .container {
  position: relative;
}

.benefits .title h2,
.benefits .title p {
  color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit {
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 22px;
  padding: 25px;
  text-align: center;
  transition: .25s;
}

.benefit:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .18);
}

.benefit .icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
}

.benefit h3 {
  color: var(--amarelo);
  margin-bottom: 8px;
}

/* FAQ */

.faq {
  max-width: 900px;
  margin: auto;
}

.faq-item {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 16px;
  padding: 24px;
  box-shadow: 0 8px 25px rgba(7, 59, 154, .10);
  border-left: 7px solid var(--amarelo);
}

.faq-item h3 {
  color: var(--azul);
  margin-bottom: 8px;
}

/* CTA */

.cta {
  background: linear-gradient(135deg, #ffcf2e, #ff9f1c);
  text-align: center;
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--azul-escuro);
  margin-bottom: 12px;
}

.cta p {
  max-width: 780px;
  margin: 0 auto 25px;
  color: #263a63;
  font-size: 1.14rem;
  line-height: 1.6;
}

/* FOOTER */

.footer {
  background: #041d4d;
  color: #fff;
  padding: 42px 0;
  text-align: center;
}

.footer strong {
  font-size: 1.45rem;
}

/* WHATSAPP */

.whats {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25d366;
  color: #fff;
  font-weight: 900;
  padding: 15px 19px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  z-index: 100;
  display: flex;
  gap: 8px;
  align-items: center;
  animation: pulse 2s infinite;
}

/* PÁGINAS DE PRODUTO */

.product-page .hero-wrap {
  grid-template-columns: .9fr 1.1fr;
}

.product-page .hero-card {
  max-width: 450px;
  margin: auto;
}

.details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.detail-box {
  background: #fff;
  border-radius: 26px;
  padding: 34px;
  box-shadow: var(--sombra);
}

.detail-box h2 {
  font-size: 2rem;
  color: var(--azul-escuro);
  margin-bottom: 16px;
}

.detail-box p {
  line-height: 1.65;
  color: #44577c;
  margin-bottom: 18px;
}

.notice {
  background: #fff8d6;
  border: 2px solid #ffd231;
  border-radius: 20px;
  padding: 20px;
  margin-top: 20px;
  font-weight: 800;
  color: #634400;
}

.back {
  display: inline-flex;
  margin-top: 18px;
  color: var(--azul);
  font-weight: 900;
}

/* ANIMAÇÕES */

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVO */

@media (max-width: 1000px) {
  .hero-wrap,
  .details {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 560px;
    margin: auto;
  }

  .products-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-mini {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav {
    justify-content: center;
  }

  .menu {
    width: 100%;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .menu a {
    font-size: .92rem;
  }

  .btn-top {
    display: none;
  }

  .hero-wrap {
    padding: 54px 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .trust-mini,
  .products-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 55px 0;
  }

  .product-card {
    border-radius: 22px;
  }

  .whats {
    right: 12px;
    bottom: 12px;
    padding: 13px 15px;
    font-size: .9rem;
  }

  .topbar {
    position: relative;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 1.25rem;
  }

  .logo span {
    padding: 5px 8px;
  }

  .menu a {
    font-size: .85rem;
  }

  .hero h1 {
    font-size: 2.05rem;
  }

  .product-content h3 {
    font-size: 1.32rem;
  }

  .detail-box {
    padding: 24px;
  }

  .btn {
    padding: 15px 18px;
  }

  .trust-mini div {
    font-size: .82rem;
  }
}