:root {
  --blue-1: #fff4f8;
  --blue-2: #ffd3e3;
  --blue-3: #f48bb1;
  --gold: #d81b60;
  --gold-2: #ff4f91;
  --white: #55112d;
  --soft: rgba(85,17,45,0.82);
  --soft-2: rgba(85,17,45,0.64);
  --card: rgba(255,255,255,0.70);
  --card-2: rgba(255,255,255,0.88);
  --border: rgba(216,27,96,0.26);
  --shadow: 0 24px 60px rgba(0,0,0,0.32);
  --shadow-soft: 0 12px 30px rgba(0,0,0,0.22);
  --success: #25D366;
  --telegram: #229ED9;
  --danger: #ff6b6b;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--white);
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(213,174,90,0.20), transparent 16%),
    radial-gradient(circle at top right, rgba(255,255,255,0.08), transparent 16%),
    radial-gradient(circle at bottom center, rgba(213,174,90,0.12), transparent 22%),
    linear-gradient(135deg, var(--blue-1) 0%, var(--blue-2) 56%, var(--blue-3) 100%);
  overflow-x: hidden;
  position: relative;
}
body::before, body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
body::before {
  background:
    radial-gradient(circle at 10% 14%, rgba(255,255,255,0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 18%, rgba(213,174,90,0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 18% 78%, rgba(213,174,90,0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 76%, rgba(255,255,255,0.11) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 88%, rgba(213,174,90,0.16) 0 2px, transparent 3px);
  opacity: .9;
}
body::after {
  background:
    linear-gradient(120deg, rgba(255,255,255,0.04), transparent 30%),
    linear-gradient(-120deg, rgba(213,174,90,0.05), transparent 36%);
  mix-blend-mode: screen;
  opacity: .75;
}
a { color: inherit; }
.container {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(255, 244, 248, .90);
  border-bottom: 1px solid rgba(213,174,90,0.22);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: -.2px;
}
.brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid rgba(213,174,90,.55);
  background: rgba(255,255,255,.06);
}
.brand span strong { color: var(--gold-2); }
.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.nav a {
  text-decoration: none;
  color: var(--soft);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.nav a:hover, .nav a.active {
  color: var(--gold-2);
  background: rgba(213,174,90,0.12);
}
.hero {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 58px 0 84px;
}
.panel {
  width: 100%;
  max-width: 1120px;
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
}
.brand-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
  animation: fadeUp .9s ease both;
}
.circle-bg {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,255,255,0.13) 0%, rgba(255,255,255,0.04) 32%, rgba(5,21,45,0.10) 72%),
    linear-gradient(135deg, rgba(213,174,90,0.22), rgba(255,255,255,0.03));
  border: 2px solid rgba(213,174,90,0.58);
  box-shadow: 0 0 0 18px rgba(213,174,90,0.06), 0 28px 70px rgba(0,0,0,0.28);
}
.logo-wrap {
  position: relative;
  width: 278px;
  height: 278px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 20, 43, 0.64);
  border: 2px solid rgba(213,174,90,0.78);
  box-shadow: 0 0 38px rgba(213,174,90,0.16), 0 22px 48px rgba(0,0,0,0.34);
  backdrop-filter: blur(6px);
  animation: pulseGlow 4s ease-in-out infinite;
}
.logo {
  width: 234px;
  height: 234px;
  object-fit: contain;
  border-radius: 50%;
}
.content {
  text-align: left;
  animation: fadeUp 1s ease both;
  animation-delay: .12s;
}
.mini {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(213,174,90,0.15);
  border: 1px solid rgba(213,174,90,0.28);
  color: var(--gold-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
  box-shadow: var(--shadow-soft);
}
h1, .page-title {
  margin: 0 0 14px;
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.96;
  font-weight: 900;
  letter-spacing: -1.8px;
  text-transform: uppercase;
  text-shadow: 0 5px 20px rgba(0,0,0,0.28);
}
.page-title { font-size: clamp(36px, 4vw, 62px); }
h1 .white, .page-title .white { color: var(--white); display: block; }
h1 .gold, .page-title .gold { color: var(--gold-2); display: block; }
.description, .lead {
  margin: 0 0 30px;
  max-width: 720px;
  font-size: clamp(18px, 2.15vw, 26px);
  line-height: 1.45;
  color: var(--soft);
}
.lead { font-size: clamp(17px, 1.65vw, 23px); }
.description strong, .lead strong { color: var(--gold-2); }
.features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.chip {
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: var(--shadow-soft);
}
.grid-links {
  display: grid;
  gap: 16px;
  max-width: 620px;
}
.link-card, .offer-card, .info-card {
  text-decoration: none;
  color: var(--white);
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), rgba(213,174,90,0.08));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
  position: relative;
  overflow: hidden;
}
.link-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.link-card::before, .offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  transform: translateX(-100%);
  transition: transform .7s ease;
}
.link-card:hover::before, .offer-card:hover::before { transform: translateX(100%); }
.link-card:hover, .offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241,208,133,0.62);
  background: linear-gradient(135deg, rgba(255,255,255,0.11), rgba(213,174,90,0.12));
  box-shadow: 0 28px 70px rgba(0,0,0,0.35);
}
.link-main {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 0;
  position: relative;
  z-index: 1;
}
.icon {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  background: rgba(255,255,255,0.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06);
}
.icon.whats { color: var(--success); }
.icon.telegram { color: var(--telegram); }
.icon.gold { color: var(--gold-2); }
.link-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}
.link-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}
.badge {
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--gold-2);
  color: #14284a;
  font-weight: 900;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.badge.soft {
  color: var(--gold-2);
  background: rgba(213,174,90,.14);
  border: 1px solid rgba(213,174,90,.25);
}
.link-desc {
  margin: 0;
  color: var(--soft-2);
  font-size: 14px;
  line-height: 1.45;
}
.link-arrow {
  font-size: 24px;
  color: var(--gold-2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.section {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}
.section.compact { padding-top: 42px; }
.section-title {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
}
.section-title strong { color: var(--gold-2); }
.section-desc {
  margin: 0 0 28px;
  max-width: 760px;
  color: var(--soft);
  line-height: 1.65;
}
.offers-grid, .cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.offer-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.offer-top { position: relative; z-index: 1; }
.store-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 18px;
}
.store {
  font-size: 12px;
  font-weight: 900;
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .6px;
}
.offer-card h2, .info-card h2 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.2;
}
.offer-card p, .info-card p, .policy-text p, .policy-text li {
  color: var(--soft);
  line-height: 1.72;
}
.offer-card p { margin: 0 0 16px; font-size: 14px; }
.offer-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 17px;
  border-radius: 999px;
  text-decoration: none;
  color: #14284a;
  background: var(--gold-2);
  border: 1px solid rgba(241,208,133,.6);
  font-size: 14px;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform .18s ease, filter .18s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn.ghost {
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
}
.btn.whats {
  color: #fff;
  background: linear-gradient(135deg, #25D366, #1db954);
  border-color: rgba(37,211,102,.35);
}
.notice {
  border: 1px solid rgba(213,174,90,.38);
  background: rgba(213,174,90,.10);
  border-radius: 22px;
  padding: 18px 20px;
  color: var(--soft);
  line-height: 1.65;
  box-shadow: var(--shadow-soft);
}
.notice strong { color: var(--gold-2); }
.policy-text {
  padding: 30px;
  border-radius: 26px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.policy-text h2 {
  margin-top: 28px;
  color: var(--gold-2);
}
.policy-text h2:first-child { margin-top: 0; }
.policy-text ul { padding-left: 20px; }
.page-hero {
  padding: 76px 0 26px;
  position: relative;
  z-index: 1;
}
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(213,174,90,0.22);
  background: rgba(5, 21, 45, .58);
  padding: 38px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 30px;
}
.footer p {
  color: var(--soft-2);
  line-height: 1.65;
  margin: 8px 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.footer-links a {
  color: var(--soft);
  text-decoration: none;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
}
.affiliate-disclosure {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(213,174,90,.10);
  border: 1px solid rgba(213,174,90,.28);
  color: var(--soft);
  font-size: 13px;
}
.floating-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #25D366, #1db954);
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 20px 45px rgba(37,211,102,0.34);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: floatButton 2.8s ease-in-out infinite;
}
.floating-cta:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 55px rgba(37,211,102,0.42);
}
.social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(213,174,90,.24);
  font-size: 20px;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulseGlow {
  0%, 100% { transform: translateY(0); box-shadow: 0 0 38px rgba(213,174,90,0.16), 0 22px 48px rgba(0,0,0,0.34); }
  50% { transform: translateY(-4px); box-shadow: 0 0 52px rgba(213,174,90,0.22), 0 26px 54px rgba(0,0,0,0.36); }
}
@keyframes floatButton {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@media (max-width: 980px) {
  .panel, .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .brand-side { min-height: auto; }
  .content { text-align: center; }
  .description, .grid-links, .lead { margin-left: auto; margin-right: auto; }
  .features { justify-content: center; }
  .offers-grid, .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-links { justify-content: flex-start; }
}
@media (max-width: 720px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }
  .nav { gap: 6px; }
  .nav a { font-size: 12px; padding: 8px 9px; }
  .hero { padding: 34px 0 96px; }
  .circle-bg { width: 255px; height: 255px; }
  .logo-wrap { width: 205px; height: 205px; }
  .logo { width: 175px; height: 175px; }
  .link-card { padding: 16px; }
  .icon { width: 48px; height: 48px; font-size: 24px; }
  .link-title { font-size: 19px; }
  .description { font-size: 18px; }
  .offers-grid, .cards-grid { grid-template-columns: 1fr; }
  .floating-cta { left: 14px; right: 14px; justify-content: center; }
  .policy-text { padding: 20px; }
}

/* Identidade Achadinhos da May */
body{background:radial-gradient(circle at top left,rgba(255,255,255,.9),transparent 25%),radial-gradient(circle at bottom right,rgba(216,27,96,.18),transparent 28%),linear-gradient(135deg,#fff7fa 0%,#ffd8e7 55%,#f7a5c3 100%);}
body::before{background:radial-gradient(circle at 10% 14%,rgba(216,27,96,.16) 0 2px,transparent 3px),radial-gradient(circle at 86% 18%,rgba(255,79,145,.20) 0 2px,transparent 3px),radial-gradient(circle at 18% 78%,rgba(216,27,96,.15) 0 2px,transparent 3px);}
.site-header{border-bottom-color:rgba(216,27,96,.18)}
.brand img{background:#fff;border-color:rgba(216,27,96,.35)}
.brand span strong,.gold{color:#d81b60!important}.white{color:#7b1740!important}
.panel,.policy-text,.info-card,.offer-card{box-shadow:0 18px 50px rgba(116,24,61,.14)}
.logo-wrap{background:rgba(255,255,255,.72)}
.logo-wrap .logo{border-radius:24px}
.btn,.floating-cta{background:linear-gradient(135deg,#d81b60,#ff4f91)!important;color:#fff!important}
.icon.gold,.mini{color:#d81b60}.chip,.badge{border-color:rgba(216,27,96,.25)}
.offer-current-price{color:#d81b60!important}


/* Ajustes finos de layout - home e rodapé */
.hero{padding:72px 0 96px;}
.panel{
  background: linear-gradient(135deg, rgba(255,255,255,.34), rgba(255,255,255,.18));
  border: 1px solid rgba(216,27,96,.16);
  border-radius: 34px;
  padding: 54px 48px;
  min-height: 680px;
  align-items: center;
}
.content{padding-right:12px;}
.footer{
  background: linear-gradient(135deg, rgba(123,23,64,.92), rgba(216,27,96,.84));
  border-top: 1px solid rgba(255,255,255,.20);
  padding: 54px 0 92px;
}
.footer-grid{align-items:start;}
.footer p,
.footer strong,
.footer a{color: rgba(255,255,255,.96);}
.footer .affiliate-disclosure{
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
  color: rgba(255,255,255,.96);
}
.footer-links a{
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.18);
}
.footer-links a:hover{background: rgba(255,255,255,.28);}

@media (max-width: 980px) {
  .panel{padding:34px 28px; min-height:auto;}
}

@media (max-width: 720px) {
  .panel{padding:24px 18px; border-radius:24px;}
  .footer{padding-bottom:110px;}
}
