* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Luxury perfume theme - elegant and sophisticated */
  --background: hsl(0, 0%, 98%);
  --foreground: hsl(220, 15%, 15%);

  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(220, 15%, 15%);

  --primary: hsl(45, 100%, 35%);
  --primary-foreground: hsl(0, 0%, 100%);
  --primary-light: hsl(45, 100%, 85%);
  --primary-dark: hsl(45, 100%, 25%);

  --secondary: hsl(220, 15%, 95%);
  --secondary-foreground: hsl(220, 15%, 15%);

  --muted: hsl(220, 15%, 96%);
  --muted-foreground: hsl(220, 10%, 50%);

  --accent: hsl(280, 40%, 85%);
  --accent-foreground: hsl(280, 40%, 15%);

  --border: hsl(220, 15%, 90%);
  --input: hsl(220, 15%, 95%);

  /* Luxury gradients */
  --gradient-primary: linear-gradient(135deg, hsl(45, 100%, 35%), hsl(45, 100%, 45%));
  --gradient-hero: linear-gradient(135deg, hsl(220, 15%, 15%) 0%, hsl(280, 20%, 25%) 100%);
  --gradient-card: linear-gradient(145deg, hsl(0, 0%, 100%) 0%, hsl(45, 20%, 98%) 100%);

  /* Elegant shadows */
  --shadow-luxury: 0 20px 60px -10px hsla(45, 100%, 35%, 0.2);
  --shadow-card: 0 10px 30px -5px hsla(220, 15%, 15%, 0.1);
  --shadow-hover: 0 25px 80px -15px hsla(45, 100%, 35%, 0.3);

  /* Transitions */
  --transition-elegant: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--foreground);
  background-color: var(--background);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: black;
  text-decoration: none;
  transition: var(--transition-elegant);
}



/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
  grid-template-columns: repeat(2, 1fr);
  padding-left: 210px;
}

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.text-center {
  text-align: center;
  color: #000000;
}

.hidden {
  display: none;
}

/* Spacing */
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: inline-flex;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 10%;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
  color: #000000;
}

.mb-8 {
  margin-bottom: 2rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-12 {
  margin-top: 3rem;
}

.mt-20 {
  margin-top: 5rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 3rem;
  padding-right: 0px;
  padding-left: 0px;
}

.gap-8 {
  gap: 2rem;
}

/* Colors */
.text-primary {
  color: black;
}

.text-muted-foreground {

  color: var(--muted-foreground);

}

.text-white {
  color: white;
}

.bg-primary {
  background-color: var(--primary);
}

.bg-secondary {
  background-color: #BCF4ED;
}

.bg-card {
  background-color: var(--card);
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-hero {
  background: #BCF4ED;
}

.bg-gradient-card {
  background: var(--gradient-card);
}

/* Header */
.header {
  background-color: var(--card);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  position: sticky;
  top: 0;
  z-index: 50;
  top: 12px;

}

.header-top {
  border-bottom: 1px solid hsla(220, 15%, 90%, 0.5);
  padding: 0.75rem 0;
}

.header-main {
  padding: 0%;
}

.logo {
  font-size: 24px;
  font-weight: 600;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: black;
  top: 0%;
  padding-left: 8px;

}

.nav-link {
  color: var(--foreground);
  font-weight: 500;
  padding: 8px;
  transition: var(--transition-elegant);
}

.nav-link:hover {
  color: #8f8f8f;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: var(--transition-elegant);
  cursor: pointer;
  border: none;
  text-decoration: none;

}

.btn-primary {
  background: #BCF4ED;
  color: #000000;
  border: 2px solid rgb(255, 255, 255);
}

.btn-primary:hover {
  box-shadow: var(--shadow-luxury);
  color: #000000;
  text-decoration: none;
  border-color: black;
}

.btn-outline {
  border: 2px solid rgb(255, 255, 255);
  background: transparent;
  color: #000000;
}

.btn-outline:hover {
  background-color: #BCF4ED;
  color: #000000;
  border-color: black;
  padding: 10px;
}

.btn-lg {
  padding: 0.75rem 2rem;
  font-size: 1.125rem;

}

/* Cards */
.card {
  background: var(--gradient-card);
  border: 1px solid hsla(220, 15%, 90%, 0.5);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: var(--transition-elegant);
  padding: 3%;
}

.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.card-header {
  padding: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.card-content {
  padding: 1.5rem;
  color: #000000;
}

/* Product Cards */
.product-card {
  position: relative;

}

.product-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background-color: white;
  border-radius: 0.5rem 0.5rem 0 0;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition-elegant);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-new {
  background-color: var(--primary);
}

.badge-discount {
  background-color: hsl(0, 84%, 60%);
  color: white;
}

/* Forms */
.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--background);
  transition: var(--transition-elegant);
}

.form-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px hsla(45, 100%, 35%, 0.1);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  opacity: 0.7;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  color: white;
  max-width: 600px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Features */
.feature-icon {
  width: 4rem;
  height: 4rem;
  background: #BCF4ED;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 24px;
}

/* Footer */
.footer {
  background: rgb(22, 22, 22);
  color: white;
  margin-top: 5rem;
  padding: 3rem 0 2rem;
}

.footer-brand {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: white;
  margin-bottom: 1rem;
}

.footer-section h4 {
  margin-bottom: 1rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  display: block;
  margin-bottom: 0.5rem;
  transition: var(--transition-elegant);
}

.footer-link:hover {
  color: var(--primary);
  text-decoration: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  padding-top: 2rem;
  text-align: center;
}

/* Responsive Design */

/* Mobile - menos de 550px */
@media (max-width: 549px) {
  .container {
    padding: 0 0.75rem;
  }

  .grid-cols-2,
  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    height: 400px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .nav-menu {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .flex-col-mobile {
    flex-direction: column;
  }

  .gap-mobile {
    gap: 0.5rem;
  }
}

/* Tablet - 550px a 1100px */
@media (min-width: 550px) and (max-width: 1100px) {

  .grid-cols-3,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero {
    height: 500px;
  }

  .hero-title {
    font-size: 2.5rem;
  }
}

/* Desktop - acima de 1100px */
@media (min-width: 1101px) {
  .container {
    max-width: 1200px;
  }

  .hero {
    height: 700px;
  }

  .hero-title {
    font-size: 4rem;
  }

  .mobile-nav {
    display: none;
  }
}

/* Utilities */
.max-w-2xl {
  max-width: 42rem;
}

.max-w-4xl {
  max-width: 56rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.leading-relaxed {
  line-height: 1.625;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.font-medium {
  font-weight: 500;
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.border-t {
  border-top: 1px solid var(--border);
}

.rounded-lg {
  border-radius: 0.5rem;
  padding: 3%;
}

.shadow-luxury {
  box-shadow: var(--shadow-luxury);
}

.shadow-card {
  box-shadow: var(--shadow-card);
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.aspect-square {
  aspect-ratio: 1 / 1;
}

.object-cover {
  object-fit: cover;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.min-h-screen {
  min-height: 100vh;
}

.line-through {
  text-decoration: line-through;
}

.search-bar {
  position: relative;
  flex: 1;
  max-width: 400px;
  margin: 0 2rem;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  border: 2px solid var(--border);
  border-radius: 0.5rem;
  background-color: var(--secondary);
}

.search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-foreground);
  font-size: 18px;
}

.price-original {
  color: var(--muted-foreground);
  text-decoration: line-through;
  font-size: 0.875rem;
}

.price-current {
  color: black;
  font-weight: 700;
  font-size: 1.125rem;
}

/* img */
.banerXerjoff {
  padding-left: 13%;
  padding-right: 13%;
  padding-top: 2%;
  padding-bottom: 2%;
  position: center;
  background-color: #ffffff;
}

.banerXerjoff img {
  width: 100%;
}

.imgg {
  padding: 0%;
  height: 5%;
  width: 5%;
  display: inline-flex;
}

.xerj {
  width: 100%;
  height: 100%;
  padding: 5%;

}

svg {
  width: 40px;
  height: 40px;
}

.jean {
  padding: 5%;
}

.invicto {
  padding: 7%;
}

.xx {
  padding: 1%;
  width: 300px;
}