:root {
  --negro: #0e0e10;
  --negro-2: #18181b;
  --gris: #28282d;
  --gris-claro: #8a8a92;
  --violeta: #8b5cf6;
  --violeta-suave: #c4b5fd;
  --crema: #f5e9d6;
  --blanco: #fdfaf6;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', sans-serif;
  background: var(--negro);
  color: var(--blanco);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name, .hero-title {
  font-family: 'Poppins', sans-serif;
}

.accent { color: var(--violeta-suave); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--crema);
  margin-bottom: 12px;
}

.tag.center { display: block; text-align: center; }

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background .3s, border-color .3s, backdrop-filter .3s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(14, 14, 16, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gris);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--crema);
}

.brand-name {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1.5px;
  color: var(--crema);
}

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  color: var(--blanco);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  position: relative;
  transition: color .2s;
}

.nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--violeta);
  transition: width .25s;
}

.nav a:hover { color: var(--violeta-suave); }
.nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: transform .2s;
}

.icon-link img { width: 28px; height: 28px; }
.icon-link:hover { transform: scale(1.15) rotate(8deg); }

.btn-wsp-header {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--crema);
  color: var(--negro);
  padding: 11px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: transform .2s, background .2s;
}

.btn-wsp-header:hover {
  background: var(--violeta-suave);
  transform: translateY(-2px);
}

.btn-wsp-header img { width: 20px; height: 20px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--crema);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 15%, rgba(139, 92, 246, 0.14), transparent 50%),
    radial-gradient(circle at 10% 85%, rgba(139, 92, 246, 0.1), transparent 55%),
    linear-gradient(160deg, var(--negro) 0%, var(--negro-2) 60%, #1c1a1f 100%);
  z-index: 0;
}

.hero-inner {
  text-align: center;
  padding: 60px 24px 70px;
}

.hero-logo {
  width: 130px;
  height: 130px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--crema);
  padding: 6px;
  margin-bottom: 28px;
  box-shadow: 0 0 0 6px rgba(245, 233, 214, 0.12), 0 0 50px rgba(139, 92, 246, 0.18);
  animation: float 5s ease-in-out infinite;
}

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

.hero-kicker {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gris-claro);
  margin-bottom: 18px;
}

.hero-title {
  font-weight: 800;
  line-height: 1.05;
}

.hero-title .line {
  display: block;
  font-size: clamp(48px, 9vw, 96px);
  letter-spacing: 1px;
  color: var(--crema);
}

.hero-title .line.accent { color: var(--violeta-suave); }

.hero-sub {
  margin-top: 22px;
  font-size: 18px;
  color: #d7d7de;
  font-weight: 500;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--crema);
  color: var(--negro);
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, background .2s;
}

.btn-primary img { width: 22px; height: 22px; }

.btn-primary:hover {
  background: var(--violeta-suave);
  transform: translateY(-3px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--crema);
  border: 1px solid rgba(245, 233, 214, 0.35);
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background .2s, border-color .2s;
}

.btn-ghost:hover {
  background: rgba(245, 233, 214, 0.08);
  border-color: var(--crema);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--crema);
  border: 1px solid var(--crema);
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s, background .2s, color .2s;
}

.btn-secondary img { width: 22px; height: 22px; }

.btn-secondary:hover {
  background: var(--crema);
  color: var(--negro);
  transform: translateY(-2px);
}

/* MARQUEE — bug-free seamless loop using two identical tracks */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: var(--negro-2);
  border-top: 1px solid var(--gris);
  border-bottom: 1px solid var(--gris);
  padding: 16px 0;
  display: flex;
}

.marquee-track {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  animation: scroll-marquee 22s linear infinite;
}

.marquee-item {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--crema);
  white-space: nowrap;
  padding: 0 24px;
}

@keyframes scroll-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* FADE UP ANIMATION */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ABOUT */
.about {
  padding: 110px 0;
  background: var(--negro-2);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: 36px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: var(--crema);
}

.about-text p {
  color: #c8c8ce;
  font-size: 16px;
  max-width: 480px;
}

.stats {
  display: flex;
  gap: 36px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.stat-number {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--violeta-suave);
}

.stat-label {
  font-size: 13px;
  color: var(--gris-claro);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  overflow: hidden;
}

.photo-frame {
  position: absolute;
  inset: 0;
  background: #c9c9c9 url("assets/hero-bg.jpeg") center/contain no-repeat;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.photo-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.05), rgba(14,14,16,0.55));
  border-radius: 20px;
}

/* CARRUSEL */
.carrusel {
  padding: 100px 0 90px;
  background: var(--negro);
}

.carrusel h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: var(--crema);
}

.slider {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  border-radius: 22px;
  overflow: hidden;
  background: var(--negro-2);
  border: 1px solid var(--gris);
}

.slider-track {
  display: flex;
  transition: transform .5s ease;
}

.slide {
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.75));
  font-weight: 700;
  font-size: 16px;
  color: var(--crema);
}

.slide-text {
  text-align: center;
  padding: 40px;
  max-width: 480px;
}

.slide-num {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: var(--violeta-suave);
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.slide-text h3 {
  font-size: 28px;
  color: var(--crema);
  margin-bottom: 14px;
}

.slide-text p {
  color: #c8c8ce;
  font-size: 16px;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(14,14,16,0.6);
  color: var(--crema);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 3;
}

.slider-arrow:hover { background: rgba(139, 92, 246, 0.6); }
.slider-arrow.prev { left: 16px; }
.slider-arrow.next { right: 16px; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 18px 0;
  background: var(--negro-2);
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gris);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.dot.active {
  background: var(--violeta-suave);
  transform: scale(1.25);
}

/* CATALOGO */
.catalogo {
  padding: 100px 0 90px;
  background: var(--negro-2);
}

.catalogo h2 {
  font-size: 36px;
  color: var(--crema);
  margin-bottom: 14px;
}

.catalogo-sub {
  color: var(--gris-claro);
  font-size: 15px;
  max-width: 480px;
  margin: 0 auto 50px;
}

.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.cut-card {
  background: var(--negro);
  border: 1px solid var(--gris);
  border-radius: 18px;
  overflow: hidden;
  text-align: center;
  padding-bottom: 26px;
  transition: transform .3s, border-color .3s;
}

.cut-card:hover {
  transform: translateY(-8px);
  border-color: var(--violeta);
}

.cut-photo {
  aspect-ratio: 4/5;
  overflow: hidden;
}

.cut-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cut-card h3 {
  margin-top: 22px;
  font-size: 20px;
  color: var(--crema);
}

.cut-card p {
  margin-top: 8px;
  padding: 0 20px;
  font-size: 14px;
  color: #b8b8c0;
}

.btn-cut {
  display: inline-block;
  margin-top: 18px;
  background: transparent;
  color: var(--violeta-suave);
  border: 1px solid var(--violeta-suave);
  padding: 10px 22px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  transition: background .2s, color .2s;
}

.btn-cut:hover {
  background: var(--violeta-suave);
  color: var(--negro);
}

.catalogo-nota {
  margin-top: 40px;
  font-size: 12px;
  color: var(--gris-claro);
  font-style: italic;
}

/* CTA BAND */
.cta-band {
  padding: 80px 0;
  background: var(--negro-2);
  border-top: 1px solid var(--gris);
  border-bottom: 1px solid var(--gris);
  text-align: center;
}

.cta-band-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.cta-band h2 {
  font-size: 30px;
  color: var(--crema);
  max-width: 600px;
}

/* CONTACTO */
.contacto {
  padding: 110px 0;
  background: var(--negro);
}

.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

.contacto-info h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--crema);
}

.contacto-info p {
  margin-bottom: 18px;
  color: #d8d8de;
  font-size: 15px;
}

.contacto-mapa {
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--gris);
}

.contacto-botones {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* FOOTER */
.footer {
  padding: 36px 0;
  background: var(--negro-2);
  border-top: 1px solid var(--gris);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.footer-logo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--crema);
  object-fit: contain;
}

.footer p {
  color: var(--gris-claro);
  font-size: 13px;
}

/* WHATSAPP FLOTANTE */
.wsp-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 60px;
  height: 60px;
  background: var(--crema);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 200;
  transition: transform .2s, background .2s;
}

.wsp-float:hover {
  background: var(--violeta-suave);
  transform: scale(1.1);
}

.wsp-float img { width: 30px; height: 30px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { order: -1; aspect-ratio: 16/9; }
  .slide-text h3 { font-size: 24px; }
}

@media (max-width: 768px) {
  .header-inner { flex-wrap: wrap; }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    order: 3;
    gap: 0;
    background: var(--negro);
    border-top: 1px solid var(--gris);
    margin-top: 12px;
  }

  .nav.open { display: flex; }

  .nav a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--gris);
  }

  .nav-toggle { display: flex; }

  .btn-wsp-header span { display: none; }
  .btn-wsp-header { padding: 10px; }

  .brand-name { font-size: 16px; }

  .hero { padding-top: 80px; }
  .hero-logo { width: 100px; height: 100px; }
  .hero-title .line { font-size: clamp(36px, 12vw, 56px); }
  .hero-sub { font-size: 16px; }

  .about, .carrusel, .contacto, .catalogo { padding: 64px 0; }
  .about-text h2, .carrusel h2, .contacto-info h2, .catalogo h2 { font-size: 26px; }

  .catalogo-grid { grid-template-columns: 1fr; gap: 20px; }

  .stats { gap: 24px; }
  .stat-number { font-size: 28px; }

  .contacto-inner { grid-template-columns: 1fr; }
  .contacto-mapa { min-height: 220px; }

  .contacto-botones { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary, .btn-ghost { justify-content: center; }

  .cta-band h2 { font-size: 22px; }

  .marquee-item { font-size: 13px; padding: 0 16px; }

  .slide-text { padding: 24px; }
  .slide-text h3 { font-size: 20px; }
  .slide-text p { font-size: 14px; }

  .slider-arrow { width: 36px; height: 36px; font-size: 20px; }

  .wsp-float { width: 52px; height: 52px; bottom: 16px; right: 16px; }
  .wsp-float img { width: 26px; height: 26px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .brand-logo { width: 36px; height: 36px; }
  .hero-cta { flex-direction: column; width: 100%; }
  .btn-primary, .btn-secondary, .btn-ghost { width: 100%; justify-content: center; padding: 14px 20px; }
  .footer-inner { flex-direction: column; gap: 10px; }
}
