:root {
  --premium-bg: #08090b;
  --premium-panel: #101116;
  --premium-panel-soft: #15161d;
  --premium-text: #f7f3eb;
  --premium-muted: #b9b0a4;
  --premium-red: #e52e2e;
  --premium-red-dark: #9d1418;
  --premium-gold: #c9a15f;
  --premium-line: rgba(255, 255, 255, 0.1);
  --premium-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  --premium-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(229, 46, 46, 0.08), transparent 520px),
    linear-gradient(135deg, #08090b 0%, #101116 44%, #090a0d 100%);
  color: var(--premium-text);
  font-family: "Outfit", Arial, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 82%);
}

a,
button,
input,
select,
textarea {
  font-family: inherit;
}

img {
  max-width: 100%;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 9, 11, 0.72) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.14);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

header.is-scrolled {
  background: rgba(8, 9, 11, 0.92) !important;
  border-bottom-color: rgba(229, 46, 46, 0.26);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.34), 0 0 20px rgba(229, 46, 46, 0.08);
  backdrop-filter: blur(12px);
}

.header-inner {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.header-logo,
.footer-brand {
  color: var(--premium-text) !important;
  font-family: "Bebas Neue", "Outfit", sans-serif;
  font-size: 30px;
  letter-spacing: 0;
  line-height: 1;
  text-shadow: 0 0 28px rgba(229, 46, 46, 0.22);
}

.header-logo::after {
  content: "";
  display: block;
  width: 46px;
  height: 2px;
  margin-top: 7px;
  background: linear-gradient(90deg, var(--premium-red), var(--premium-gold));
  transform-origin: left;
  animation: logoLine 1.1s ease both;
}

#nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

#nav a {
  position: relative;
  color: rgba(247, 243, 235, 0.78) !important;
  padding: 11px 14px;
  border-radius: var(--premium-radius);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

#nav a:not(.nav-cart)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 1px;
  background: var(--premium-red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

#nav a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

#nav a:hover::after {
  transform: scaleX(1);
}

#nav .nav-cart {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--premium-red), var(--premium-red-dark)) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 14px 34px rgba(229, 46, 46, 0.28);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--premium-radius);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  place-items: center;
  padding: 130px 20px 92px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(110deg, rgba(8, 9, 11, 0.92), rgba(8, 9, 11, 0.66) 44%, rgba(157, 20, 24, 0.58)),
    url("img/logoloja.jpeg") center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, transparent, rgba(8, 9, 11, 0.92));
  background-size: 120px 100%, 100% 100%;
  opacity: 0.32;
  transform: skewX(-8deg) scale(1.12);
  animation: heroTexture 12s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 110px;
  background: linear-gradient(180deg, transparent, var(--premium-bg));
  pointer-events: none;
}

.hero-content {
  width: min(920px, 100%);
  text-align: center;
  animation: heroEnter 0.9s ease both;
}

.hero-logo {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.48),
    0 0 0 8px rgba(255, 255, 255, 0.05);
  animation: logoFloat 4.5s ease-in-out infinite;
}

.hero h1{
    position: relative;
    z-index: 2;

    background: linear-gradient(
        90deg,
        #ffffff,
        #f3d9a7,
        #ffffff
    );

    background-size: 300% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shineText 5s linear infinite;

    filter: drop-shadow(0 0 20px rgba(243,217,167,.15));
}

.hero p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(247, 243, 235, 0.82);
  font-size: 19px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary,
.btn-secondary,
.btn-comprar,
.btn-whatsapp,
.btn-insta,
button.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: var(--premium-radius) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  text-decoration: none !important;
  font-weight: 800;
  letter-spacing: 0;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}


.btn-comprar,
button.btn-primary {
  background: linear-gradient(
    135deg,
    var(--premium-red),
    var(--premium-red-dark)
  ) !important;

  color: #fff !important;
  box-shadow: 0 18px 42px rgba(229, 46, 46, 0.24);
}
.btn-secondary,
.btn-insta {
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  backdrop-filter: blur(12px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #20a45a, #106f3a) !important;
  color: #fff !important;
}

.btn-primary::before,
.btn-secondary::before,
.btn-comprar::before,
.btn-whatsapp::before,
.btn-insta::before,
button.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 0.55s ease;
}



.btn-primary:hover::before,
.btn-secondary:hover::before,
.btn-comprar:hover::before,
.btn-whatsapp:hover::before,
.btn-insta:hover::before,
button.btn-primary:hover::before {
  transform: translateX(120%);
}

.hero-badge {
  position: absolute;
  right: max(22px, calc((100vw - 1180px) / 2));
  bottom: 96px;
  padding: 14px 22px;
  border-radius: calc(var(--premium-radius) * 1.4);
  background: linear-gradient(135deg, rgba(229, 46, 46, 1), rgba(243, 192, 93, 0.92));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 28px 72px rgba(229, 46, 46, 0.28), 0 0 24px rgba(229, 46, 46, 0.16);
  backdrop-filter: blur(16px);
  z-index: 5;
  animation: badgeEnter 1s ease 0.18s both;
  height: auto;
  white-space: nowrap;
  line-height: 1;
  max-height: 60px;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.stats,
.produtos-section,
.sobre,
.localizacao,
.feedbacks,
footer {
  position: relative;
}

.stats {
  width: min(1120px, calc(100% - 32px));
  margin: -42px auto 0;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--premium-radius);
  background: rgba(16, 17, 22, 0.86);
  box-shadow: var(--premium-shadow);
  backdrop-filter: blur(18px);
  z-index: 3;
}

.stat-item {
  text-align: center;
}

.stat-item strong {
  display: block;
  color: #fff;
  font-family: "Bebas Neue", "Outfit", sans-serif;
  font-size: 42px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(229, 46, 46, 0.12);
}

.stat-item span {
  display: block;
  margin-top: 8px;
  color: rgba(247, 243, 235, 0.78);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.stat-divider {
  width: 1px;
  height: 54px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.produtos-section,
.sobre,
.localizacao,
.feedbacks {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 94px 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #f3d9a7 !important;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label::after {
  content: "";
  width: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--premium-gold), transparent);
}

.produtos-section h2,
.sobre h2,
.localizacao h2,
.feedbacks h2 {
  margin: 0 0 34px;
  color: #fff;
  font-family: "Bebas Neue", "Outfit", sans-serif;
  font-size: 54px;
  line-height: 1;
  letter-spacing: 0.02em;
  font-weight: 900;
  text-shadow: 0 0 18px rgba(229, 46, 46, 0.08);
}

.produtos-grid,
.avaliacoes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.produto-card,
.avaliacao-card,
.form-section {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--premium-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.028));
  box-shadow: 0 22px 68px rgba(0, 0, 0, 0.32);
  overflow: hidden;
  backdrop-filter: blur(2px);
}

.produto-card {
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.produto-card::before,
.avaliacao-card::before,
.form-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(201, 161, 95, 0.24), transparent 28%, rgba(229, 46, 46, 0.18));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.produto-card:hover {
  transform: translateY(-10px);
  border-color: rgba(229, 46, 46, 0.42);
  box-shadow: 0 32px 88px rgba(229, 46, 46, 0.12), 0 0 32px rgba(229, 46, 46, 0.08);
}

.produto-card:hover::before,
.avaliacao-card:hover::before,
.form-section:hover::before {
  opacity: 1;
}

.produto-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.produto-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  padding: 0;
  transform: scale(1);
  transition: transform 0.6s ease, filter 0.6s ease;
}

.produto-card:hover .produto-img-wrap img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.05);
}

.produto-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.produto-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--premium-radius);
  background: rgba(229, 46, 46, 0.92);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
}

.produto-info {
  position: relative;
  z-index: 1;
  padding: 20px;
}

.produto-info h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.produto-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.produto-preco {
  color: #f3d9a7;
  font-size: 22px;
  font-weight: 900;
}

.btn-comprar {
  min-height: 42px;
  padding: 0 16px;
  font-size: 14px;
}

.catalogo-cta {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.sobre {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
}

.sobre-inner {
  position: relative;
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--premium-radius);
  background:
    linear-gradient(135deg, rgba(229, 46, 46, 0.1), transparent 32%),
    rgba(16, 17, 22, 0.74);
  box-shadow: var(--premium-shadow);
}

.sobre-inner p {
  color: rgba(247, 243, 235, 0.74);
  font-size: 17px;
  line-height: 1.8;
}

.sobre-inner p:last-child {
  margin-bottom: 0;
}

.localizacao {
  text-align: center;
  padding-top: 54px;
  padding-bottom: 64px;
  display: grid;
  justify-items: center;
  gap: 22px;
  background: linear-gradient(180deg, rgba(12, 12, 14, 0.95), rgba(18, 18, 22, 0.95));
}

.localizacao .section-label {
  font-family: "Bebas Neue", "Outfit", sans-serif;
  font-size: 16px;
  letter-spacing: 0.28em;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #f3d9a7;
  border: 1px solid rgba(230, 199, 109, 0.22);
  box-shadow: 0 0 18px rgba(230, 199, 109, 0.12);
}

.localizacao h2 {
  font-family: "Bebas Neue", "Outfit", sans-serif;
  font-size: clamp(56px, 6vw, 72px);
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.35), 0 0 30px rgba(255, 255, 255, 0.18);
  line-height: 1;
  letter-spacing: 0.02em;
  position: relative;
}

.localizacao h2::before {
  content: "";
  position: absolute;
  inset: -10px -6px 0 -6px;
  z-index: -1;
  background: radial-gradient(circle at 20% 20%, rgba(230, 199, 109, 0.24), transparent 45%);
  filter: blur(12px);
}

.localizacao-subtitle {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
  font-size: 18px;
  line-height: 1.8;
}

.localizacao-info {
  width: min(760px, 100%);
  margin: 0;
  padding: 30px;
  display: grid;
  gap: 16px;
  justify-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: calc(var(--premium-radius) * 1.2);
  background: rgba(8, 9, 12, 0.9);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
}

.loc-item {
  width: 100%;
  max-width: 680px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  padding: 18px 22px;
  color: rgba(230, 199, 109, 0.95);
  font-weight: 700;
  border-radius: calc(var(--premium-radius) * 1.2);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 22px rgba(230, 199, 109, 0.08);
}

.localizacao-btn {
  width: min(320px, 100%);
  padding: 16px 24px;
  align-self: center;
}

.loc-item svg {
  color: var(--premium-red);
  filter: drop-shadow(0 0 14px rgba(229, 46, 46, 0.3));
}

.feedbacks {
  text-align: center;
  background: radial-gradient(circle at top center, rgba(255,255,255,0.05), transparent 44%);
  padding-top: 22px;
}

.feedbacks h2 {
  color: #fff;
}

.avaliacao-card {
  min-height: 220px;
  padding: 32px;
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.avaliacao-card:hover {
  transform: translateY(-8px);
  border-color: rgba(243, 192, 93, 0.5);
  background: linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.06));
  box-shadow: 0 0 28px rgba(243, 192, 93, 0.1);
}

.stars {
  color: #f3c05d !important;
  letter-spacing: 0;
  font-size: 19px;
  text-shadow: 0 0 18px rgba(243, 192, 93, 0.18);
}

.avaliacao-card p {
  color: rgba(255,255,255,0.90) !important;
  font-size: 17px;
  line-height: 1.68;
}

.avaliacao-card strong {
  color: #f3d9a7 !important;
  font-size: 14px;
  letter-spacing: 0;
}

.form-section {
  width: min(820px, 100%);
  margin: 34px auto 0;
  padding: 36px;
  text-align: left;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 28px 65px rgba(0,0,0,0.24);
}

.form-section h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 28px;
}

.form-feedback,
.form-row {
  display: grid;
  gap: 14px;
}

.form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-feedback input,
.form-feedback select,
.form-feedback textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--premium-radius);
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  backdrop-filter: blur(4px);
}

.form-feedback textarea {
  min-height: 130px;
  resize: vertical;
}

.form-feedback input::placeholder,
.form-feedback textarea::placeholder {
  color: rgba(247, 243, 235, 0.44);
}

.form-feedback select {
  color: rgba(247, 243, 235, 0.78);
}

.form-feedback input:focus,
.form-feedback select:focus,
.form-feedback textarea:focus {
  border-color: rgba(229, 46, 46, 0.84);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 6px rgba(229, 46, 46, 0.18), inset 0 0 12px rgba(229, 46, 46, 0.08);
}

.form-success {
  margin: 0;
  color: #fff;
  font-weight: 800;
}

/* ESTILOS PARA LOGIN DE CLIENTE */
.form-login-cliente,
.form-feedback {
  display: grid;
  gap: 14px;
}

.form-login-cliente input {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--premium-radius);
  background: rgba(255, 255, 255, 0.065);
  color: #fff;
  padding: 13px 15px;
  outline: none;
  transition: border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
  backdrop-filter: blur(4px);
  font-size: 15px;
}

.form-login-cliente input::placeholder {
  color: rgba(247, 243, 235, 0.44);
}

.form-login-cliente input:focus {
  border-color: rgba(229, 46, 46, 0.84);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 6px rgba(229, 46, 46, 0.18), inset 0 0 12px rgba(229, 46, 46, 0.08);
}

.form-login-cliente button {
  min-height: 50px;
  padding: 0 24px;
  margin-top: 8px;
}

.login-info {
  margin: 16px 0 0;
  color: rgba(247, 243, 235, 0.64);
  font-size: 14px;
  text-align: center;
}

.login-info a {
  color: #e50914;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

.login-info a:hover {
  color: #fff;
}

.cliente-logado-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  margin-bottom: 20px;
  border-radius: var(--premium-radius);
  background: rgba(229, 46, 46, 0.08);
  border: 1px solid rgba(229, 46, 46, 0.24);
}

.cliente-logado-info span {
  color: #f3d9a7;
  font-weight: 600;
  font-size: 14px;
}

.btn-sair {
  padding: 8px 12px;
  height: auto;
  min-height: auto;
  font-size: 12px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: rgba(247, 243, 235, 0.78) !important;
  box-shadow: none !important;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-sair:hover {
  background: rgba(229, 46, 46, 0.14) !important;
  border-color: rgba(229, 46, 46, 0.5) !important;
  color: #e50914 !important;
}

/* MENSAGEM DE SUCESSO */
.mensagem-sucesso {
  display: none;
  padding: 16px;
  margin-top: 16px;
  border-radius: 8px;
  background: rgba(32, 164, 90, 0.12);
  border: 1px solid rgba(32, 164, 90, 0.4);
  color: #7fd79a;
  text-align: center;
  font-weight: 600;
  animation: slideInUp 0.4s ease-out;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  margin-top: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(180deg, rgba(229, 46, 46, 0.08), transparent 52%),
    #08090b !important;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 50px 0;
  text-align: center;
}

.footer-sub,
.footer-copy {
  color: rgba(247, 243, 235, 0.58) !important;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 26px 0;
}

.floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--premium-red), var(--premium-red-dark));
  color: #fff;
  box-shadow: 0 22px 56px rgba(229, 46, 46, 0.38), 0 0 28px rgba(229, 46, 46, 0.14);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  animation: cartFloat 4s ease-in-out infinite;
  backdrop-filter: blur(8px);
}

.floating-cart:hover {
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 32px 72px rgba(229, 46, 46, 0.52), 0 0 36px rgba(229, 46, 46, 0.18);
}

.premium-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.premium-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.premium-ripple {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.42);
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 0.55s ease-out forwards;
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes heroTexture {
  from {
    transform: skewX(-8deg) scale(1.12) translateX(-18px);
  }
  to {
    transform: skewX(-8deg) scale(1.12) translateX(18px);
  }
}

@keyframes badgeEnter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoLine {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes cartFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-7px);
  }
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (max-width: 900px) {
  .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: grid;
  }

  #nav {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--premium-radius);
    background: rgba(8, 9, 11, 0.96);
    box-shadow: var(--premium-shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  #nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  #nav a,
  #nav .nav-cart {
    width: 100%;
    margin-left: 0;
    justify-content: center;
  }

  .hero {
    min-height: 650px;
    padding-top: 110px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-badge {
    right: 20px;
    bottom: 72px;
  }

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

  .stat-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  }

  .produtos-grid,
  .avaliacoes-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .produtos-section h2,
  .sobre h2,
  .localizacao h2,
  .feedbacks h2 {
    font-size: 42px;
  }

  .sobre-inner,
  .localizacao-info,
  .form-section {
    padding: 26px;
  }
}

@media (max-width: 520px) {
  .header-logo {
    font-size: 25px;
  }

  .hero {
    min-height: 610px;
  }

 

  .hero h1 {
    font-size: 46px;
  }

  .hero-actions,
  .footer-links,
  .produto-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary,
  .btn-comprar,
  .btn-whatsapp,
  .btn-insta,
  button.btn-primary {
    width: 100%;
  }

  .hero-badge {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 30px;
  }

  .stats {
    margin-top: -26px;
  }

  .produtos-section,
  .sobre,
  .localizacao,
  .feedbacks {
    padding: 70px 0;
  }

  .floating-cart {
    width: 52px;
    height: 52px;
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .premium-reveal {
    opacity: 1;
    transform: none;
  }
}
.hero{
    position: relative;
    overflow: hidden;
}

.hero .glow-red{
    z-index:0;

    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    background: radial-gradient(
        circle,
        rgba(229,9,20,0.25),
        transparent 70%
    );
    filter: blur(80px);
    pointer-events:none;
}


.hero-logo{
    border-radius: 20px;

    box-shadow:
        0 15px 50px rgba(0,0,0,.4),
        0 0 40px rgba(229,9,20,.25);

    transition: .4s;
}

.hero-logo:hover{
    transform: scale(1.03);
}

.btn-primary:hover,
.btn-comprar:hover{
    transform: translateY(-5px) scale(1.03);

    box-shadow:
        0 25px 50px rgba(229,9,20,.45),
        0 0 50px rgba(229,9,20,.25);
}
.produto-card{
    backdrop-filter: blur(10px);

    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,.08),
            rgba(255,255,255,.03)
        );

    transition: .4s;
}

.produto-card:hover{
    transform:
        translateY(-12px)
        scale(1.02);

    box-shadow:
        0 25px 70px rgba(229,9,20,.15);
}body::after{
    content:"";
    position:fixed;

    width:700px;
    height:700px;

    top:-200px;
    right:-200px;

    background:
        radial-gradient(
            circle,
            rgba(229,9,20,.12),
            transparent 70%
        );

    pointer-events:none;
    z-index:-2;
}
@keyframes shineText {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 300% center;
    }
}

.produto-card::after{
    content:"";
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.05),
        transparent
    );

    transform:translateX(-120%);
    transition:.8s;
}

.produto-card:hover::after{
    transform:translateX(120%);
}
header::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;

    width:100%;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(229,9,20,.7),
        transparent
    );
}
h2{
    position:relative;
}

.produtos-section h2::after,
.sobre h2::after,
.feedbacks h2::after,
.localizacao h2::after{
}
.produto-card{
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.12);
}
.produto-img-wrap img{
    transition:
        transform .7s ease,
        filter .7s ease;
}

.produto-card:hover .produto-img-wrap img{
    transform: scale(1.035);
}.produto-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:2px;

    background: linear-gradient(
        90deg,
        transparent,
        #e50914,
        #f3d9a7,
        transparent
    );
}.btn-comprar{
    position:relative;
    overflow:hidden;
}

.btn-comprar::after{
    content:"";
    position:absolute;
    top:0;
    left:-100%;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.35),
        transparent
    );

    transition:.8s;
}

.btn-comprar:hover::after{
    left:100%;
}
.produto-card:hover{
    box-shadow:
        0 0 20px rgba(229,9,20,.20),
        0 0 40px rgba(229,9,20,.15),
        0 25px 70px rgba(0,0,0,.4);
}
.hero h1{
    font-size: clamp(4rem,8vw,7rem);
    font-weight: 900;
    letter-spacing: -2px;
}
.hero::before{
    animation:
        heroTexture 12s ease-in-out infinite alternate,
        pulseHero 8s infinite;
}

@keyframes pulseHero{
   50%{
      opacity:.45;
   }
}
.produto-badge{
    background:
    linear-gradient(
        135deg,
        #e50914,
        #f3d9a7
    );
}
footer{
    position:relative;
}

footer::before{
    content:"";
    position:absolute;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:300px;
    height:1px;

    background:
    linear-gradient(
        90deg,
        transparent,
        #f3d9a7,
        transparent
    );
}
