:root {
  --champagne: #faf9f7;
  --rose: #1f1f1f;
  --rose-dark: #000000;
  --gold: #c9a227;
  --graphite: #2a2a2a;
  --beige: #efece6;
  --nude: #e3ded4;
  --white: #ffffff;
  --gray: #6f6f6f;
  --gray-soft: #f3f1ec;
  --border: #e8e4dd;
  --success: #168a3a;
  --error: #c62828;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 25px 50px rgba(0, 0, 0, 0.1);
  --radius: 24px;
  --radius-sm: 14px;
  --container: 1200px;
  --transition: 0.25s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--champagne);
  color: var(--graphite);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
}

.container {
  width: min(var(--container), 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--rose);
  color: var(--white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.86rem;
  letter-spacing: 0.4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251, 248, 245, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(200, 154, 138, 0.18);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.72rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--graphite);
}

.logo span {
  color: var(--rose);
}

.menu {
  display: none;
  align-items: center;
  gap: 26px;
}

.menu a {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--graphite);
  transition: var(--transition);
}

.menu a:hover {
  color: var(--rose);
}

.nav-whatsapp {
  display: none;
  background: var(--rose);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  transition: var(--transition);
}

.nav-whatsapp:hover {
  background: var(--gold);
  color: var(--graphite);
  transform: translateY(-2px);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--graphite);
  color: var(--white);
  font-size: 1.35rem;
}

.mobile-menu {
  display: none;
  padding: 16px 0 24px;
  border-top: 1px solid rgba(200, 154, 138, 0.18);
}

.mobile-menu.active {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
  color: var(--graphite);
}

.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 72px 0;
  background:
    radial-gradient(circle at 90% 15%, rgba(216, 179, 106, 0.24), transparent 28%),
    linear-gradient(135deg, #faf9f7 0%, #efece6 100%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 154, 138, 0.12);
  color: var(--rose-dark);
  border: 1px solid rgba(200, 154, 138, 0.24);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--graphite);
  line-height: 1.1;
}

.hero h1 {
  font-size: clamp(2.25rem, 8vw, 4.9rem);
  max-width: 720px;
  margin-bottom: 22px;
}

.hero p {
  max-width: 620px;
  color: var(--gray);
  font-size: 1.03rem;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 900;
  text-align: center;
  transition: var(--transition);
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--gold);
  color: var(--graphite);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--rose);
  border: 1px solid var(--rose);
}

.btn-secondary:hover {
  background: var(--rose);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-note {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--gray);
  font-size: 0.92rem;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.72), transparent 25%),
    linear-gradient(145deg, #ffffff 0%, #e3ded4 100%);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
}

.bag-art {
  width: min(320px, 78vw);
  aspect-ratio: 0.86;
  position: relative;
  border-radius: 42px 42px 54px 54px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), transparent 28%),
    linear-gradient(160deg, #1f1f1f 0%, #000000 100%);
  box-shadow: 0 30px 70px rgba(168, 117, 103, 0.32);
}

.bag-art::before {
  content: "";
  position: absolute;
  width: 44%;
  height: 22%;
  left: 28%;
  top: -13%;
  border: 14px solid #c9a227;
  border-bottom: none;
  border-radius: 120px 120px 0 0;
}

.bag-art::after {
  content: "YS";
  position: absolute;
  inset: auto 0 38px;
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  color: rgba(255, 255, 255, 0.52);
  letter-spacing: 4px;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(200, 154, 138, 0.2);
  border-radius: 18px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--graphite);
}

.floating-card.one {
  top: 34px;
  left: 24px;
}

.floating-card.two {
  right: 20px;
  bottom: 36px;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 48px;
}

.section-title span {
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title h2 {
  font-size: clamp(1.85rem, 5vw, 3.15rem);
  margin: 10px 0 14px;
}

.section-title p {
  color: var(--gray);
  font-size: 1rem;
}

.trust-grid,
.categories-grid,
.products-grid,
.steps-grid,
.special-grid,
.testimonials-grid,
.faq-grid {
  display: grid;
  gap: 22px;
}

.trust-card,
.category-card,
.product-card,
.step-card,
.special-card,
.testimonial-card,
.faq-card,
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-card {
  padding: 26px;
  text-align: center;
}

.trust-card strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: var(--graphite);
}

.trust-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.categories {
  background: var(--white);
}

.category-card {
  padding: 28px;
  transition: var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.category-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, rgba(200, 154, 138, 0.18), rgba(216, 179, 106, 0.18));
  color: var(--rose);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}

.category-card h3 {
  font-size: 1.42rem;
  margin-bottom: 10px;
}

.category-card p {
  color: var(--gray);
  font-size: 0.95rem;
}

.bags-feature {
  background:
    radial-gradient(circle at 8% 10%, rgba(200, 154, 138, 0.16), transparent 28%),
    var(--champagne);
}

.product-card {
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.product-visual {
  min-height: 260px;
  background:
    radial-gradient(circle at 70% 18%, rgba(255, 255, 255, 0.78), transparent 22%),
    linear-gradient(145deg, #efece6 0%, #cfc7b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rose-dark);
  font-size: 4.8rem;
}

.product-content {
  padding: 24px;
}

.product-category {
  color: var(--rose-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.product-card h3 {
  font-size: 1.35rem;
  margin: 8px 0 10px;
}

.product-card p {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.consult {
  display: inline-block;
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.product-card .btn {
  width: 100%;
}

.desire {
  background: var(--white);
}

.how {
  background: var(--beige);
}

.steps-grid {
  counter-reset: step;
}

.step-card {
  padding: 30px;
  position: relative;
}

.step-card::before {
  counter-increment: step;
  content: counter(step);
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--graphite);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 18px;
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.step-card p {
  color: var(--gray);
}

.special {
  background:
    radial-gradient(circle at top right, rgba(216, 179, 106, 0.22), transparent 32%),
    var(--graphite);
  color: var(--white);
}

.special .section-title h2,
.special .section-title span {
  color: var(--white);
}

.special .section-title p {
  color: #d8d2c6;
}

.special-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  padding: 30px;
  color: var(--white);
}

.special-card h3 {
  color: var(--gold);
  font-size: 1.42rem;
  margin-bottom: 10px;
}

.special-card p {
  color: #ddd7cc;
}

.testimonials {
  background: var(--champagne);
}

.testimonial-card {
  padding: 30px;
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-card p {
  color: var(--gray);
  margin-bottom: 18px;
}

.testimonial-card strong {
  color: var(--graphite);
}

.faq {
  background: var(--white);
}

.faq-card {
  padding: 26px;
}

.faq-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.faq-card p {
  color: var(--gray);
  font-size: 0.96rem;
}

.lead {
  background: var(--champagne);
}

.lead-grid {
  display: grid;
  gap: 36px;
  align-items: start;
}

.lead h2 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  margin-bottom: 18px;
}

.lead p {
  color: var(--gray);
  margin-bottom: 22px;
}

.lead-list {
  display: grid;
  gap: 12px;
  color: var(--graphite);
  font-weight: 700;
}

.form-card {
  padding: 26px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--graphite);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid #eaeaea;
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  color: var(--graphite);
  background: var(--white);
  outline: none;
  transition: var(--transition);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(200, 154, 138, 0.12);
}

.form-message {
  margin-top: 12px;
  font-weight: 800;
  font-size: 0.92rem;
}

.final-cta {
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  color: var(--white);
  text-align: center;
}

.final-cta h2 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 14px;
}

.final-cta p {
  max-width: 680px;
  margin: 0 auto 26px;
  color: rgba(255, 255, 255, 0.9);
}

footer {
  background: var(--graphite);
  color: var(--white);
  padding: 64px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 30px;
}

footer h3,
footer h4 {
  color: var(--white);
  margin-bottom: 14px;
}

footer p,
footer a {
  color: #d8d2c6;
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 20px;
  text-align: center;
  color: #c4bdb0;
  font-size: 0.88rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1001;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  animation: pulse 4s infinite;
}

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 700px) {
  .hero-actions {
    flex-direction: row;
  }

  .hero-note {
    flex-direction: row;
    gap: 18px;
  }

  .trust-grid,
  .categories-grid,
  .products-grid,
  .steps-grid,
  .special-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .menu {
    display: flex;
  }

  .nav-whatsapp {
    display: inline-flex;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .hero-grid {
    grid-template-columns: 55% 45%;
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }

  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .desire .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .steps-grid,
  .special-grid,
  .testimonials-grid,
  .faq-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lead-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }
 /* Correção da imagem do Hero */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center center;
  display: block;
  border-radius: 32px;
}
}