* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f6f6f6;
    color: #222;
    line-height: 1.6;
}

/* HEADER */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  backdrop-filter: blur(6px);
}

.header h1 {
    font-size: 26px;
    letter-spacing: 1px;
}

.header nav a {
    color: #fff;
    margin-left: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.header nav a:hover {
    color: #ff8000;
}

/* HERO */
.hero {
    height: 85vh;
    background: linear-gradient(
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.6)
    ),
    url("https://images.unsplash.com/photo-1520975916090-3105956dac38") center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.hero h2 {
    font-size: 46px;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 30px;
}

.hero button {
    padding: 15px 40px;
    border: none;
    background: #c7a17a;
    color: #111;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}

.hero button:hover {
    background: #b08b63;
}

/* SECTIONS */
section {
    padding: 80px 60px;
}

section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    text-align: center;
}

/* SOBRE */
.sobre p {
    max-width: 800px;
    margin: auto;
    text-align: center;
    font-size: 17px;
}

/* PRODUTOS */
.grid-produtos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.card {
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.card h3 {
    font-size: 20px;
    margin: 15px;
}

.card p {
    font-size: 18px;
    font-weight: 600;
    margin: 0 15px 15px;
    color: #d8a14f;
}

.card button {
    margin: 15px;
    width: calc(100% - 30px);
    padding: 12px;
    border: none;
    background: #111;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    border-radius: 8px;
    transition: 0.3s;
}

.card button:hover {
    background: #333;
}

/* CONTATO */
.contato {
    background: #d8a14f;
    color: #fff;
    text-align: center;
}

.contato p {
    font-size: 18px;
}

/* FOOTER */
.footer {
    background: #000;
    color: #aaa;
    text-align: center;
    padding: 25px;
    font-size: 14px;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 15px;
    }

    .hero h2 {
        font-size: 34px;
    }

    section {
        padding: 60px 25px;
    }
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

.premium-hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.65)),
    url("https://images.unsplash.com/photo-1520975916090-3105956dac38") center/cover;
}

.hero-content {
  max-width: 900px;
}

.badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,.15);
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #d8a14f;
  color: #111;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.card {
  position: relative;
}

.tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #111;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 20px;
}

.card img {
  transition: transform .4s;
}

.card:hover img {
  transform: scale(1.05);
}

.depoimentos {
  background: #fff;
}

.grid-depoimentos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  gap: 30px;
}

.dep {
  background: #f6f6f6;
  padding: 30px;
  border-radius: 18px;
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: .6s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

.editorial {
  max-width: 720px;
  margin: auto;
  text-align: center;
}

.editorial-tag {
  display: block;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.manifesto {
  text-align: center;
  padding: 80px 20px;
  font-size: 14px;
  letter-spacing: 2px;
  color: var(--muted);
}

/* ===== UPGRADE 3 – ANIMAÇÕES PREMIUM ===== */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* hover premium */
.card-produto {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.card-produto:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.hero {
  height: 100vh;
  background: url("../img/arararoupa.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 8%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
}

.hero-content {
  position: relative;
  color: #fff;
  max-width: 520px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
}

.hero-content p {
  margin: 20px 0 30px;
  font-size: 1.1rem;
  opacity: .9;
}

.btn-hero {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 40px;
  background: #fff;
  color: #000;
  font-weight: 600;
  transition: all .4s ease;
}

.btn-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
}

.hero-content.impact h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: .95;
  text-transform: uppercase;
}

.hero-content.impact p {
  margin-top: 25px;
  font-size: 1rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .85;
}

.hero-content.impact {
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background-attachment: fixed;
}

.reveal-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordUp 0.6s ease forwards;
}

@keyframes wordUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-transition {
  position: fixed;
  inset: 0;
  background: #0D0D0C;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}

#page-transition.active {
  opacity: 1;
  pointer-events: all;
}

body {
  animation: pageIn .6s ease;
}

@keyframes pageIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* CURSOR PREMIUM */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
}

.cursor-outline {
  position: fixed;
  top: 0;
  left: 0;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform .15s ease, width .2s ease, height .2s ease;
}

/* Hover em links */
a:hover ~ .cursor-outline,
button:hover ~ .cursor-outline {
  width: 52px;
  height: 52px;
}

* {
  cursor: none !important;
}

/* =========================
   CURSOR CABIDE
========================= */
.cursor-hanger {
  position: fixed;
  width: 42px;
  height: 42px;
  background: url("../img/cabide.png") no-repeat center;
  background-size: contain;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
}
