@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ===== CSS Variables ===== */
:root {
  /* Elegant Fashion Palette 2026 */
  --background: hsl(30, 20%, 98%);
  --foreground: hsl(30, 10%, 10%);
  --card: hsl(30, 15%, 97%);
  --card-foreground: hsl(30, 10%, 10%);
  
  /* Rose Gold Primary */
  --primary: hsl(15, 45%, 55%);
  --primary-foreground: hsl(30, 20%, 98%);
  
  /* Soft Nude Secondary */
  --secondary: hsl(25, 25%, 92%);
  --secondary-foreground: hsl(30, 10%, 20%);
  
  /* Muted Tones */
  --muted: hsl(30, 15%, 94%);
  --muted-foreground: hsl(30, 10%, 45%);
  
  /* Blush Accent */
  --accent: hsl(350, 35%, 90%);
  --accent-foreground: hsl(350, 45%, 35%);
  
  --border: hsl(30, 15%, 88%);
  
  /* Custom tokens */
  --gold: hsl(38, 70%, 50%);
  --gold-light: hsl(38, 60%, 85%);
  --champagne: hsl(35, 40%, 95%);
  --nude: hsl(25, 30%, 85%);
  --blush: hsl(350, 40%, 92%);
  --charcoal: hsl(30, 10%, 15%);
  --whatsapp: #25D366;
  --whatsapp-hover: #128C7E;
  
  /* Gradients */
  --gradient-hero: linear-gradient(135deg, hsl(30, 10%, 10%) 0%, hsl(30, 15%, 20%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(38, 70%, 50%) 0%, hsl(25, 60%, 65%) 100%);
  --gradient-blush: linear-gradient(135deg, hsl(350, 40%, 92%) 0%, hsl(25, 30%, 95%) 100%);
  
  /* Shadows */
  --shadow-soft: 0 4px 20px -4px hsla(30, 10%, 10%, 0.08);
  --shadow-hover: 0 12px 40px -8px hsla(30, 10%, 10%, 0.15);
  --shadow-gold: 0 8px 30px -6px hsla(38, 70%, 50%, 0.3);
  
  /* Fonts */
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
}

/* ===== Reset ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

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

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ===== Utility Classes ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Animations ===== */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@keyframes ping {
  75%, 100% {
    transform: scale(2);
    opacity: 0;
  }
}

.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
}

.animation-delay-100 { animation-delay: 100ms; }
.animation-delay-200 { animation-delay: 200ms; }
.animation-delay-300 { animation-delay: 300ms; }
.animation-delay-400 { animation-delay: 400ms; }

/* ===== Buttons ===== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: var(--whatsapp);
  color: white;
  font-weight: 500;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: scale(1.05);
  box-shadow: 0 10px 25px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--gradient-gold);
  color: var(--primary-foreground);
  font-weight: 600;
  border-radius: 9999px;
  transition: all 0.3s ease;
}

.btn-hero:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.btn-hero svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background-color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid var(--border);
}

.header-top {
  background-color: var(--charcoal);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
}

.header-top .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  font-size: 0.875rem;
}

.header-top a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s ease;
}

.header-top a:hover {
  color: var(--gold);
}

.header-top svg {
  width: 1rem;
  height: 1rem;
}

.header-top .separator {
  color: var(--muted-foreground);
}

.header-top .location {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted-foreground);
}

.header-main {
  padding: 1rem 0;
}

.header-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--foreground);
}

.logo-tagline {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-weight: 500;
  color: var(--foreground);
  transition: color 0.3s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.menu-toggle {
  padding: 0.5rem;
  color: var(--foreground);
}

.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 0;
  animation: fadeUp 0.3s ease-out;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile a {
  font-weight: 500;
  color: var(--foreground);
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.nav-mobile a:hover {
  color: var(--primary);
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .header-top .location {
    display: flex;
  }
  
  .logo-name {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .header-top .separator,
  .header-top .location {
    display: none;
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(26, 24, 23, 0.9), rgba(26, 24, 23, 0.7), transparent);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 8rem 0 5rem;
  max-width: 42rem;
}

.hero-badge {
  display: inline-block;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  color: var(--primary-foreground);
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.2);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 6s ease-in-out infinite;
}

.scroll-indicator-inner {
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
}

.scroll-indicator-dot {
  width: 0.375rem;
  height: 0.75rem;
  background-color: var(--gold);
  border-radius: 9999px;
  animation: bounce 1.5s infinite;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 4.5rem;
  }
}

/* ===== Product Catalog ===== */
.catalog {
  padding: 5rem 0 8rem;
  background-color: var(--background);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1rem;
}

.section-description {
  color: var(--muted-foreground);
  max-width: 42rem;
  margin: 0 auto;
  font-size: 1.125rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  background-color: var(--card);
  transition: all 0.5s ease;
}

.product-card:hover {
  box-shadow: var(--shadow-hover);
}

.product-image-container {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--gradient-blush);
}

.product-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.1);
}

.product-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 24, 23, 0.6);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay .btn-whatsapp {
  transform: translateY(1rem);
  transition: transform 0.5s ease;
}

.product-card:hover .product-overlay .btn-whatsapp {
  transform: translateY(0);
}

.product-category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 9999px;
  color: var(--foreground);
}

.product-content {
  padding: 1.25rem;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.product-card:hover .product-name {
  color: var(--primary);
}

.product-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--primary);
  transition: color 0.3s ease;
}

.product-link:hover {
  color: var(--whatsapp);
}

.product-link svg {
  width: 1rem;
  height: 1rem;
}

.catalog-cta {
  text-align: center;
  margin-top: 4rem;
}

.catalog-cta p {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
  
  .products-grid {
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== About Section ===== */
.about {
  padding: 5rem 0 8rem;
  background: var(--gradient-blush);
}

.about .container {
  display: grid;
  gap: 3rem;
}

.about-content {
  max-width: 36rem;
}

.about-title {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 1.5rem;
}

.about-title span {
  display: block;
  color: var(--primary);
}

.about-text {
  color: var(--muted-foreground);
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--foreground);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background-color: var(--background);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--primary-foreground);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .about-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .about .container {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

/* ===== Contact Section ===== */
.contact {
  padding: 5rem 0 8rem;
  background-color: var(--charcoal);
  color: var(--primary-foreground);
}

.contact .section-badge {
  color: var(--gold);
}

.contact .section-title {
  color: var(--primary-foreground);
}

.contact .section-description {
  color: rgba(255, 255, 255, 0.7);
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-card {
  text-align: center;
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.contact-icon.whatsapp {
  background-color: rgba(37, 211, 102, 0.2);
}

.contact-icon.whatsapp svg {
  color: var(--whatsapp);
}

.contact-icon.gold {
  background-color: rgba(201, 161, 54, 0.2);
}

.contact-icon.gold svg {
  color: var(--gold);
}

.contact-icon svg {
  width: 2rem;
  height: 2rem;
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}

.contact-card a,
.contact-card span.value {
  color: var(--gold);
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-foreground);
}

.contact-cta {
  text-align: center;
}

.contact-cta .btn-whatsapp {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

@media (min-width: 768px) {
  .contact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===== Footer ===== */
.footer {
  background-color: var(--background);
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-nav a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: var(--foreground);
}

.footer-copyright {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-copyright svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
  fill: var(--primary);
}

@media (min-width: 768px) {
  .footer .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ===== WhatsApp Float Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 4rem;
  height: 4rem;
  background-color: var(--whatsapp);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 2rem;
  height: 2rem;
  color: white;
}

.whatsapp-float .ping {
  position: absolute;
  inset: -0.25rem;
  background-color: var(--whatsapp);
  border-radius: 9999px;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
  opacity: 0.3;
}

.whatsapp-float .tooltip {
  position: absolute;
  right: 100%;
  margin-right: 0.75rem;
  padding: 0.5rem 0.75rem;
  background-color: var(--charcoal);
  color: var(--primary-foreground);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover .tooltip {
  opacity: 1;
}
