/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-fondo) 0%, var(--color-superficie) 100%);
}

.hero__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__particles::before,
.hero__particles::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--color-acento);
  opacity: 0.1;
  animation: float 20s infinite ease-in-out;
}

.hero__particles::before {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.hero__particles::after {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.hero__text {
  animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-acento-suave);
  color: var(--color-acento);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__title {
  font-family: var(--fuente);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-texto);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero__highlight {
  color: var(--color-acento);
  position: relative;
}

.hero__highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--color-acento);
  border-radius: 2px;
  animation: underlineExpand 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
}

@keyframes underlineExpand {
  from { width: 0; }
  to { width: 100%; }
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--color-texto-suave);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  font-family: var(--fuente-sans);
  max-width: 500px;
  animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: slideInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radio);
  transition: all var(--transicion-rapida);
  position: relative;
  overflow: hidden;
}

.hero__btn i {
  font-size: 1.1rem;
}

.hero__btn--primary {
  background: linear-gradient(135deg, var(--color-acento) 0%, var(--color-acento-hover) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.hero__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(99, 102, 241, 0.4);
}

.hero__btn--secondary {
  background: transparent;
  color: var(--color-texto);
  border: 2px solid var(--color-borde);
}

.hero__btn--secondary:hover {
  border-color: var(--color-acento);
  color: var(--color-acento);
  transform: translateY(-2px);
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: slideInRight 1s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__bottle {
  position: relative;
  width: 300px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.perfume__showcase {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.perfume__icon-main {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--color-acento) 0%, var(--color-acento-hover) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: white;
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.05); }
}

.perfume__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.perfume__particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-acento);
  border-radius: 50%;
  opacity: 0.6;
}

.perfume__particle:nth-child(1) {
  top: 20%;
  left: 20%;
  animation: particleFloat 4s ease-in-out infinite;
}

.perfume__particle:nth-child(2) {
  top: 30%;
  right: 25%;
  animation: particleFloat 4s ease-in-out infinite 1s;
}

.perfume__particle:nth-child(3) {
  bottom: 35%;
  left: 15%;
  animation: particleFloat 4s ease-in-out infinite 2s;
}

.perfume__particle:nth-child(4) {
  bottom: 25%;
  right: 20%;
  animation: particleFloat 4s ease-in-out infinite 3s;
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translate(0, 0) scale(1);
    opacity: 0.6;
  }
  25% { 
    transform: translate(10px, -15px) scale(1.2);
    opacity: 0.8;
  }
  50% { 
    transform: translate(-5px, -25px) scale(0.8);
    opacity: 0.4;
  }
  75% { 
    transform: translate(-10px, -10px) scale(1.1);
    opacity: 0.7;
  }
}

.perfume__aroma-waves {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 60px;
}

.aroma__wave {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  border: 2px solid var(--color-acento);
  border-radius: 50%;
  opacity: 0;
  animation: aromaExpand 3s ease-out infinite;
}

.aroma__wave:nth-child(2) {
  animation-delay: 1s;
}

.aroma__wave:nth-child(3) {
  animation-delay: 2s;
}

@keyframes aromaExpand {
  0% {
    width: 20px;
    height: 20px;
    opacity: 0.8;
  }
  100% {
    width: 200px;
    height: 60px;
    opacity: 0;
  }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
  40% { transform: translateX(-50%) translateY(-10px); }
  60% { transform: translateX(-50%) translateY(-5px); }
}

.scroll__mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--color-texto-suave);
  border-radius: 12px;
  position: relative;
}

.scroll__wheel {
  width: 4px;
  height: 8px;
  background: var(--color-texto-suave);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
  0% { top: 8px; opacity: 1; }
  100% { top: 20px; opacity: 0; }
}

.scroll__text {
  font-size: 0.7rem;
  color: var(--color-texto-suave);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features {
  padding: 6rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature__card {
  background: var(--color-superficie);
  border: 1px solid var(--color-borde);
  border-radius: var(--radio-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transicion);
  position: relative;
  overflow: hidden;
}

.feature__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-acento) 0%, var(--color-acento-hover) 100%);
  transform: scaleX(0);
  transition: transform var(--transicion);
}

.feature__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature__card:hover::before {
  transform: scaleX(1);
}

.feature__icon {
  width: 60px;
  height: 60px;
  background: var(--color-acento-suave);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  color: var(--color-acento);
}

.feature__title {
  font-family: var(--fuente);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--color-texto);
  margin-bottom: 1rem;
}

.feature__description {
  color: var(--color-texto-suave);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.categories {
  padding: 6rem 2.5rem;
  background: var(--color-superficie);
  border-top: 1px solid var(--color-borde);
  border-bottom: 1px solid var(--color-borde);
}

.categories__header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--color-acento-suave);
  color: var(--color-acento);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section__title {
  font-family: var(--fuente);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--color-texto);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section__subtitle {
  color: var(--color-texto-suave);
  line-height: 1.6;
  font-size: 1.05rem;
}

.categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.category__card {
  background: var(--color-fondo);
  border: 1px solid var(--color-borde);
  border-radius: var(--radio-lg);
  padding: 2rem;
  text-decoration: none;
  color: var(--color-texto);
  transition: all var(--transicion);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}

.category__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--color-acento) 0%, var(--color-acento-hover) 100%);
  opacity: 0;
  transition: opacity var(--transicion);
}

.category__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category__card:hover::before {
  opacity: 0.05;
}

.category__icon {
  width: 50px;
  height: 50px;
  background: var(--color-acento-suave);
  border-radius: var(--radio);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--color-acento);
  flex-shrink: 0;
  transition: all var(--transicion-rapida);
}

.category__card:hover .category__icon {
  background: var(--color-acento);
  color: white;
  transform: scale(1.1);
}

.category__content {
  flex: 1;
}

.category__title {
  font-family: var(--fuente);
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.category__desc {
  color: var(--color-texto-suave);
  font-size: 0.9rem;
  line-height: 1.4;
}

.category__arrow {
  font-size: 1.2rem;
  color: var(--color-texto-suave);
  transition: all var(--transicion-rapida);
}

.category__card:hover .category__arrow {
  color: var(--color-acento);
  transform: translateX(5px);
}

/* ============================================
   PHILOSOPHY SECTION
   ============================================ */
.philosophy {
  padding: 6rem 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

.philosophy__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.philosophy__text {
  max-width: 500px;
}

.philosophy__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.stat {
  text-align: center;
}

.stat__number {
  font-family: var(--fuente);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--color-acento);
  margin-bottom: 0.5rem;
}

.stat__label {
  font-size: 0.85rem;
  color: var(--color-texto-suave);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.philosophy__visual {
  display: flex;
  justify-content: center;
}

.visual__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 400px;
}

.grid__item {
  background: var(--color-superficie);
  border: 1px solid var(--color-borde);
  border-radius: var(--radio);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transicion);
}

.grid__item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--color-acento);
}

.grid__item--1 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}

.grid__item--2 {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}

.grid__item--3 {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}

.item__icon {
  width: 40px;
  height: 40px;
  background: var(--color-acento-suave);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.2rem;
  color: var(--color-acento);
}

.grid__item h4 {
  font-family: var(--fuente);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.grid__item p {
  color: var(--color-texto-suave);
  font-size: 0.85rem;
  line-height: 1.4;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  padding: 6rem 2.5rem;
  background: linear-gradient(135deg, var(--color-acento) 0%, var(--color-acento-hover) 100%);
  position: relative;
  overflow: hidden;
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.cta__title {
  font-family: var(--fuente);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.cta__highlight {
  position: relative;
  color: white;
}

.cta__highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: white;
  border-radius: 2px;
}

.cta__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radio);
  transition: all var(--transicion-rapida);
}

.cta__btn i {
  font-size: 1.1rem;
}

.cta__btn--primary {
  background: white;
  color: var(--color-acento);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta__btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}

.cta__btn--secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta__btn--secondary:hover {
  background: white;
  color: var(--color-acento);
  transform: translateY(-2px);
}

.cta__decoration {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.decoration__circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 20s infinite ease-in-out;
}

.decoration__circle--1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.decoration__circle--2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 7s;
}

.decoration__circle--3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

/* ============================================
   FOOTER STYLES
   ============================================ */
.footer {
  border-top: 1px solid var(--color-borde);
  padding: 3rem 2.5rem 2rem;
  background: var(--color-superficie);
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 4rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.footer__brand {
  flex: 1;
  min-width: 300px;
}

.footer__name {
  font-family: var(--fuente);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--color-texto);
  margin-bottom: 0.5rem;
}

.footer__desc {
  font-size: 0.9rem;
  color: var(--color-texto-suave);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer__social {
  display: flex;
  gap: 1rem;
}

.social__link {
  width: 40px;
  height: 40px;
  background: var(--color-fondo);
  border: 1px solid var(--color-borde);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-texto-suave);
  text-decoration: none;
  transition: all var(--transicion-rapida);
  font-size: 1.2rem;
}

.social__link:hover {
  background: var(--color-acento);
  color: white;
  border-color: var(--color-acento);
  transform: translateY(-2px);
}

.footer__contact {
  min-width: 250px;
}

.footer__title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-texto-suave);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer__link {
  color: var(--color-texto-suave);
  text-decoration: none;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transicion-rapida);
}

.footer__link:hover {
  color: var(--color-acento);
}

.footer__bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid var(--color-borde);
  text-align: center;
  color: var(--color-texto-suave);
  font-size: 0.8rem;
}

.footer__bottom i {
  color: #e91e63;
  font-size: 0.9rem;
}

/* ============================================
   WHATSAPP FLOTANTE
   ============================================ */
.whatsapp-flotante {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: all var(--transicion);
  z-index: 200;
  font-size: 1.4rem;
}

.whatsapp-flotante:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero__visual {
    order: -1;
  }

  .philosophy__content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .cta__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero__content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .hero__actions {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero__bottle {
    width: 200px;
    height: 300px;
    order: -1;
  }

  .hero__scroll {
    bottom: 1rem;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .categories__grid {
    grid-template-columns: 1fr;
  }

  .visual__grid {
    grid-template-columns: 1fr;
    max-width: 300px;
  }

  .grid__item--1,
  .grid__item--2,
  .grid__item--3 {
    grid-column: 1;
    grid-row: auto;
  }

  .philosophy__stats {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .cta__actions {
    justify-content: center;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .cta__title {
    font-size: 1.6rem;
  }

  .features,
  .categories,
  .philosophy,
  .cta {
    padding: 4rem 1.5rem;
  }
}