:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-soft: #1d1d1d;
  --text: #f3f3f3;
  --muted: #c5c5c5;
  --accent: #ffd200;
  --accent-soft: rgba(255, 210, 0, 0.22);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  --radius: 20px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.section {
  padding: 6.5rem 0;
  position: relative;
}

.section::before {
  content: "";
  position: absolute;
  width: min(460px, 70vw);
  height: 120px;
  background: linear-gradient(110deg, rgba(255, 210, 0, 0) 0%, var(--accent-soft) 40%, rgba(255, 210, 0, 0) 90%);
  transform: rotate(-8deg);
  right: -90px;
  top: 12%;
  pointer-events: none;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

h1,
h2,
h3 {
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.1rem, 4.8vw, 4rem);
  margin-bottom: 1.2rem;
}

h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.9rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  margin-bottom: 0.85rem;
}

p {
  color: var(--muted);
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: rgba(7, 7, 7, 0.76);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand {
  color: var(--text);
  text-decoration: none;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
}

.brand span {
  font-weight: 500;
}

.brand strong {
  color: var(--accent);
}

.menu {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
}

.menu a {
  color: #dfdfdf;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  width: 40px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 7px 0;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 7rem;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 54ch;
}

.logo-placeholder,
.image-placeholder {
  min-height: 320px;
  border: 2px dashed rgba(255, 210, 0, 0.48);
  border-radius: var(--radius);
  display: grid;
  place-content: center;
  text-align: center;
  color: #f1d96f;
  font-weight: 700;
  letter-spacing: 0.11em;
  background: linear-gradient(145deg, #161616, #0e0e0e);
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.8rem 1.35rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  cursor: pointer;
}

.btn:active {
  transform: translateY(1px) scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #121212;
  box-shadow: 0 8px 20px rgba(255, 210, 0, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 16px 24px rgba(255, 210, 0, 0.36);
}

.btn-outline {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.25);
  color: #efefef;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  border-color: var(--accent);
  color: var(--accent);
}

.section-heading {
  margin-bottom: 2.5rem;
}

.section-heading h2 {
  max-width: 24ch;
}

.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 2.8vw, 3rem);
  align-items: center;
  margin-bottom: 2.1rem;
  background: linear-gradient(145deg, #161616, #111111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product:nth-of-type(odd) .product-media {
  order: 1;
}

.product:nth-of-type(odd) .product-info {
  order: 2;
}

.product:nth-of-type(even) .product-media {
  order: 2;
}

.product:nth-of-type(even) .product-info {
  order: 1;
}

.product-media {
  overflow: hidden;
  min-height: 320px;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}

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

.product-info {
  padding: clamp(1.25rem, 3vw, 2.2rem);
}

.product-info p {
  margin-bottom: 1rem;
}

.price {
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
}

.highlight {
  min-height: min(96svh, 760px);
  grid-template-columns: 1fr;
  position: relative;
}

.highlight .product-media,
.highlight .product-media img {
  min-height: min(96svh, 760px);
}

.highlight .product-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(680px, 100%);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.88) 26%, rgba(0, 0, 0, 0.95) 100%);
  padding-top: 7rem;
}

.about-content,
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.2rem, 3vw, 3rem);
  align-items: center;
}

.about-content p + p {
  margin-top: 1rem;
}

.contact-list {
  list-style: none;
  margin-top: 1.2rem;
}

.contact-list li {
  margin-bottom: 0.65rem;
  color: #ebebeb;
}

.contact-list i {
  color: var(--accent);
  margin-right: 0.45rem;
}

.contact-actions {
  display: grid;
  gap: 0.75rem;
}

.social-btn {
  text-decoration: none;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: #f2f2f2;
  background: #161616;
  transition: transform var(--transition), border-color var(--transition), color var(--transition);
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--accent);
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 58px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #111;
  background: #25d366;
  font-size: 1.7rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
  z-index: 1200;
  transition: transform var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.05);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 900px) {
  .hero-content,
  .about-content,
  .contact-content,
  .product {
    grid-template-columns: 1fr;
  }

  .product:nth-of-type(odd) .product-media,
  .product:nth-of-type(odd) .product-info,
  .product:nth-of-type(even) .product-media,
  .product:nth-of-type(even) .product-info {
    order: initial;
  }

  .highlight .product-info {
    position: static;
    width: 100%;
    background: transparent;
    padding-top: 1.5rem;
  }

  .section {
    padding: 5.4rem 0;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .menu {
    position: fixed;
    inset: 76px 0 auto 0;
    background: rgba(12, 12, 12, 0.97);
    display: grid;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-130%);
    transition: transform var(--transition);
  }

  .menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .menu a {
    display: block;
    padding: 0.95rem 1.1rem;
  }

  .menu.open {
    transform: translateY(0);
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

.loja-page,
.product-page {
  padding-top: 8.5rem;
}

.loja-heading h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.shop-card {
  background: linear-gradient(145deg, #161616, #111111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 35px rgba(0, 0, 0, 0.42);
}

.shop-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform var(--transition);
}

.shop-card:hover img {
  transform: scale(1.05);
}

.shop-card-info {
  padding: 1rem;
}

.shop-card-info h3 {
  font-size: 1.15rem;
}

.product-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.4rem;
  align-items: start;
}

.product-main-image {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.product-main-image:hover {
  transform: scale(1.02);
}

.thumb-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.thumb {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  background: transparent;
  cursor: pointer;
  transition: border-color var(--transition), transform var(--transition);
}

.thumb:hover,
.thumb.active {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover;
}

.product-detail {
  background: linear-gradient(145deg, #161616, #111111);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.product-detail p {
  margin-bottom: 0.95rem;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0 1.4rem;
  color: #c9c9c9;
  text-align: center;
}

@media (max-width: 1050px) {
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}
