*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: #f8f7ff;
  color: #2d1b4e;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === ANIMATIONS === */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

main { animation: fadeIn .4s ease both; }
.anim-up   { animation: fadeSlideUp .6s ease both; }
.anim-up-1 { animation-delay: .1s; }
.anim-up-2 { animation-delay: .2s; }
.anim-up-3 { animation-delay: .3s; }
.anim-up-4 { animation-delay: .4s; }

/* === BOTTOM BANNER === */
.bottom-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: linear-gradient(90deg, #db2777, #7c3aed);
  color: #fff; text-align: center;
  font-size: .8rem; font-weight: 500;
  padding: 10px 16px;
}
.bottom-banner a { color: #fff; text-decoration: underline; }
.bottom-banner a:hover { opacity: .8; }

/* === NAVBAR === */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  padding: 0 clamp(16px,4vw,48px); height: 68px;
  display: flex; align-items: center; justify-content: space-between;
  background: #0f0428;
  box-shadow: 0 1px 0 rgba(192,132,252,.15);
}
.navbar.scrolled {
  background: #0f0428;
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
}
.nav-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem; font-weight: 800; letter-spacing: -.3px;
  text-decoration: none; display: flex; align-items: center; gap: 1px;
}
.nav-logo .logo-main {
  background: linear-gradient(135deg, #6d28d9, #0f0428);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-logo .logo-club {
  background: linear-gradient(135deg, #db2777, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-link {
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.7);
  padding: 8px 14px; border-radius: 8px;
  text-decoration: none; transition: color .2s, background .2s; display: inline-block;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.nav-link.active { color: #fff; background: rgba(219,39,119,.2); font-weight: 600; }

/* Mobile menu */
.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 8px;
}
.menu-toggle span {
  width: 22px; height: 2px; background: #fff; border-radius: 2px;
  transition: all .3s;
}
.mobile-overlay {
  position: fixed; inset: 0; background: rgba(15,4,40,.5);
  z-index: 1000; opacity: 0; pointer-events: none; transition: opacity .3s;
}
.mobile-overlay.open { opacity: 1; pointer-events: auto; }
.mobile-menu {
  position: fixed; top: 0; right: 0; width: 260px; height: 100vh;
  background: #fff; z-index: 1001; padding: 72px 24px 24px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -4px 0 24px rgba(109,40,217,.12);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .nav-link { padding: 12px 16px; border-radius: 10px; font-size: .95rem; display: block; color: #2d1b4e; }
.mobile-menu .nav-link:hover { color: #6d28d9; background: #faf5ff; }
.mobile-menu .nav-link.active { color: #6d28d9; background: #faf5ff; }

@media (max-width: 768px) {
  .nav-links   { display: none !important; }
  .menu-toggle { display: flex !important; }
}
@media (min-width: 769px) {
  .menu-toggle { display: none !important; }
  .mobile-menu, .mobile-overlay { display: none !important; }
}

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, #6d28d9, #db2777);
  color: #fff; border: none; padding: 14px 32px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .3s; display: inline-block;
  text-decoration: none; box-shadow: 0 4px 14px rgba(109,40,217,.3);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(109,40,217,.4); }

.btn-secondary {
  background: #fff; color: #6d28d9; border: 1.5px solid #6d28d9;
  padding: 13px 30px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .3s; display: inline-block; text-decoration: none;
}
.btn-secondary:hover { background: #faf5ff; transform: translateY(-2px); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25d366; color: #fff; border: none;
  padding: 14px 32px; border-radius: 10px;
  font-family: 'Inter', sans-serif; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: all .3s; text-decoration: none;
  box-shadow: 0 4px 14px rgba(37,211,102,.3);
}
.btn-wa:hover { background: #1ebe5c; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.4); }
.btn-wa svg { width: 20px; height: 20px; fill: #fff; }

/* === TYPOGRAPHY === */
.section-label {
  font-size: .73rem; letter-spacing: 3px; text-transform: uppercase;
  font-weight: 700; color: #db2777; text-align: center;
  margin-bottom: 12px; display: block;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem,4vw,2.8rem); font-weight: 800;
  color: #0f0428; text-align: center; margin-bottom: 16px;
  line-height: 1.15; letter-spacing: -.5px;
}
.section-subtitle {
  font-size: 1rem; color: #6b5b8a; text-align: center;
  max-width: 540px; margin: 0 auto 56px; line-height: 1.75;
}

/* === HERO === */
.hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 100px clamp(20px,5vw,80px) 80px;
  background: linear-gradient(160deg, #f5f0ff 0%, #f8f7ff 50%, #fdf2f8 100%);
  position: relative; overflow: hidden;
}
.hero-shape {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.hero-shape-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(109,40,217,.08) 0%, transparent 70%);
  top: -150px; right: -150px;
}
.hero-shape-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(219,39,119,.07) 0%, transparent 70%);
  bottom: -100px; left: -100px;
}
.hero-inner {
  max-width: 860px; width: 100%; text-align: center; position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #faf5ff; border: 1px solid #e9d5ff; border-radius: 50px;
  padding: 6px 16px; font-size: .78rem; font-weight: 700; color: #6d28d9;
  margin-bottom: 28px; animation: fadeSlideUp .5s ease both; letter-spacing: .3px;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: linear-gradient(135deg, #6d28d9, #db2777);
}
.hero-inner h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.4rem,6vw,4rem); font-weight: 800;
  color: #0f0428; line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 24px; animation: fadeSlideUp .6s ease .1s both;
}
.hero-inner h1 span {
  background: linear-gradient(135deg, #6d28d9, #db2777);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-inner > p {
  font-size: 1.1rem; color: #6b5b8a; line-height: 1.8;
  max-width: 540px; margin: 0 auto 40px;
  animation: fadeSlideUp .6s ease .2s both;
}
.hero-buttons {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
  animation: fadeSlideUp .6s ease .3s both; margin-bottom: 56px;
}
.hero-features {
  display: flex; justify-content: center; gap: clamp(20px,4vw,48px);
  flex-wrap: wrap; animation: fadeSlideUp .6s ease .4s both;
  padding-top: 40px; border-top: 1px solid #e9d5ff;
}
.hero-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: #6b5b8a; font-weight: 500;
}
.hero-feature-icon {
  width: 28px; height: 28px; border-radius: 8px; background: #faf5ff;
  display: flex; align-items: center; justify-content: center; font-size: 14px;
}

/* === PORTFOLIO TEASER === */
.portfolio-teaser {
  background: #fff; padding: 32px clamp(20px,5vw,80px);
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; border-bottom: 1px solid #f1f0f6;
}
.portfolio-teaser-text {
  font-size: .95rem; color: #6b5b8a; margin: 0;
}

/* === FOR WHOM === */
.for-whom {
  padding: 88px clamp(20px,5vw,80px); background: #fff;
}
.business-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: 14px; max-width: 860px; margin: 0 auto;
}
.business-card {
  background: #f8f7ff; border: 1px solid #e9d5ff; border-radius: 14px;
  padding: 24px 14px; text-align: center; transition: all .25s;
}
.business-card:hover { border-color: #c4b5fd; background: #faf5ff; transform: translateY(-4px); }
.business-icon { font-size: 30px; margin-bottom: 10px; display: block; }
.business-name { font-size: .82rem; font-weight: 600; color: #2d1b4e; }

/* === HOW IT WORKS === */
.how-it-works {
  padding: 88px clamp(20px,5vw,80px);
  background: linear-gradient(180deg, #f8f7ff, #fdf2f8);
}
.steps-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr));
  gap: 20px; max-width: 900px; margin: 0 auto;
}
.step {
  text-align: center; padding: 32px 20px; background: #fff;
  border-radius: 16px; border: 1px solid #e9d5ff;
  box-shadow: 0 2px 12px rgba(109,40,217,.05); transition: transform .3s;
}
.step:hover { transform: translateY(-4px); }
.step-number {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, #6d28d9, #db2777);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: #fff; margin: 0 auto 16px;
}
.step h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem; font-weight: 700; color: #0f0428; margin-bottom: 8px;
}
.step p { font-size: .875rem; color: #6b5b8a; line-height: 1.65; }

/* === PRICE PREVIEW (index) === */
.price-preview {
  padding: 88px clamp(20px,5vw,80px);
  background: #0f0428; text-align: center;
}
.price-preview .section-label { color: #c084fc; }
.price-preview .section-title { color: #fff; }
.price-preview .section-subtitle { color: #a38bbe; margin-bottom: 36px; }
.price-old {
  display: block; font-size: 1.4rem; color: #7c6a9a;
  text-decoration: line-through; margin-bottom: 4px;
}
.price-big {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(3.5rem,10vw,6rem); font-weight: 800; line-height: 1;
  background: linear-gradient(135deg, #c084fc, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; display: block; margin-bottom: 8px;
}
.price-note { color: #6b5b8a; font-size: .88rem; margin-bottom: 36px; display: block; }

/* === SERVICIOS PAGE === */
.servicios { padding: 120px clamp(20px,5vw,80px) 100px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 24px; max-width: 760px; margin: 0 auto 64px;
}
.pricing-card {
  border-radius: 20px; padding: 40px 32px;
  display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-card.light {
  background: #fff; border: 1.5px solid #e9d5ff;
}
.pricing-card.light:hover { box-shadow: 0 16px 40px rgba(109,40,217,.1); border-color: #c4b5fd; }
.pricing-card.dark {
  background: linear-gradient(160deg, #0f0428, #2d1b4e);
  border: 1.5px solid rgba(192,132,252,.15);
}
.pricing-card.dark:hover { box-shadow: 0 16px 40px rgba(192,132,252,.2); }
.pricing-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6d28d9, #db2777);
  color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
  margin-bottom: 20px; width: fit-content;
}
.pricing-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem; font-weight: 800; margin-bottom: 8px;
}
.pricing-card.light .pricing-name { color: #0f0428; }
.pricing-card.dark  .pricing-name { color: #fff; }
.pricing-desc { font-size: .875rem; line-height: 1.65; margin-bottom: 24px; }
.pricing-card.light .pricing-desc { color: #6b5b8a; }
.pricing-card.dark  .pricing-desc { color: rgba(255,255,255,.5); }
.pricing-old {
  font-size: 1.1rem; color: #7c6a9a; text-decoration: line-through; margin-bottom: 4px;
}
.pricing-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 3.2rem; font-weight: 800; line-height: 1; margin-bottom: 4px;
}
.pricing-card.light .pricing-amount { color: #0f0428; }
.pricing-card.dark  .pricing-amount {
  background: linear-gradient(135deg, #c084fc, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-period { font-size: .8rem; color: #a38bbe; margin-bottom: 28px; display: block; }
.pricing-divider { height: 1px; margin: 20px 0; }
.pricing-card.light .pricing-divider { background: #e9d5ff; }
.pricing-card.dark  .pricing-divider { background: rgba(255,255,255,.08); }
.pricing-includes-label {
  font-size: .68rem; letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; margin-bottom: 16px;
}
.pricing-card.light .pricing-includes-label { color: #a38bbe; }
.pricing-card.dark  .pricing-includes-label { color: rgba(255,255,255,.3); }
.pricing-items { flex: 1; margin-bottom: 28px; }
.pricing-item {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px;
}
.pricing-check {
  width: 20px; height: 20px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: .75rem;
  margin-top: 1px;
}
.pricing-card.light .pricing-check { background: #faf5ff; color: #6d28d9; }
.pricing-card.dark  .pricing-check { background: rgba(192,132,252,.15); color: #c084fc; }
.pricing-item-text { font-size: .875rem; line-height: 1.5; }
.pricing-card.light .pricing-item-text { color: #4a3b6a; }
.pricing-card.dark  .pricing-item-text { color: rgba(255,255,255,.75); }

.extras-section { max-width: 760px; margin: 0 auto; }
.extras-section h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem; font-weight: 700; color: #0f0428; margin-bottom: 16px;
}
.extras-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: 12px;
}
.extra-item {
  background: #fff; border: 1px solid #e9d5ff; border-radius: 12px;
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
}
.extra-icon { font-size: 22px; }
.extra-text h4 { font-size: .875rem; font-weight: 600; color: #0f0428; margin-bottom: 2px; }
.extra-text p  { font-size: .78rem; color: #6b5b8a; }

/* === PORTFOLIO PAGE === */
.portfolio-page { padding: 120px clamp(20px,5vw,80px) 100px; }
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px; max-width: 860px; margin: 0 auto;
}
@media (max-width: 540px) {
  .portfolio-grid { grid-template-columns: 1fr; }
}
.portfolio-card {
  background: #fff; border: 1px solid #e9d5ff; border-radius: 16px;
  overflow: hidden; transition: transform .3s, box-shadow .3s;
}
.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(109,40,217,.1);
  border-color: #c4b5fd;
}
.portfolio-img-wrap {
  width: 100%; aspect-ratio: 16/10; overflow: hidden;
}
.portfolio-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .4s;
}
.portfolio-card:hover .portfolio-img-wrap img { transform: scale(1.05); }
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px;
}
.portfolio-placeholder-icon { font-size: 40px; opacity: .5; }
.portfolio-placeholder-text {
  font-size: .72rem; letter-spacing: 1.5px; font-weight: 600;
  text-transform: uppercase; opacity: .5;
}
.p1 { background: linear-gradient(135deg, #faf5ff, #ede9fe); color: #6d28d9; }
.p2 { background: linear-gradient(135deg, #fdf2f8, #fce7f3); color: #db2777; }
.p3 { background: linear-gradient(135deg, #f5f0ff, #e9d5ff); color: #7c3aed; }
.p4 { background: linear-gradient(135deg, #fff0f9, #fce7f3); color: #be185d; }
.portfolio-info { padding: 20px 22px; }
.portfolio-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; font-weight: 700; color: #0f0428; margin-bottom: 6px;
}
.portfolio-info p { font-size: .84rem; color: #6b5b8a; line-height: 1.65; }
.portfolio-tag {
  display: inline-block; background: #faf5ff; color: #6d28d9;
  font-size: .68rem; font-weight: 700; padding: 3px 10px;
  border-radius: 50px; margin-top: 12px; letter-spacing: .5px; text-transform: uppercase;
}
.portfolio-domain {
  display: block; font-size: .75rem; color: #94a3b8; margin-top: 6px; letter-spacing: .3px;
}

/* === FAQ PAGE === */
.faq-page { padding: 120px clamp(20px,5vw,80px) 100px; }
.faq-tabs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.faq-tab {
  padding: 9px 22px; border-radius: 50px; border: 1.5px solid #e9d5ff;
  background: #fff; color: #6b5b8a; font-family: 'Inter', sans-serif;
  font-size: .82rem; font-weight: 600; cursor: pointer; transition: all .25s;
}
.faq-tab.active { border-color: #6d28d9; background: #6d28d9; color: #fff; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e9d5ff; }
.faq-question {
  width: 100%; padding: 20px 0; background: none; border: none;
  cursor: pointer; display: flex; justify-content: space-between; align-items: center;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: .975rem; font-weight: 600;
  color: #0f0428; text-align: left; gap: 16px;
}
.faq-question span:last-child {
  transition: transform .3s; font-size: 1.4rem; color: #db2777;
  flex-shrink: 0; font-weight: 300; line-height: 1;
}
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }
.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: all .35s ease; }
.faq-item.open .faq-answer { max-height: 320px; opacity: 1; }
.faq-answer p {
  padding: 0 0 20px; margin: 0; font-size: .9rem;
  color: #6b5b8a; line-height: 1.8;
}

/* === CONTACTO PAGE === */
.contacto-page { padding: 120px clamp(20px,5vw,80px) 100px; }
.contacto-inner { max-width: 520px; margin: 0 auto; }
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.contact-card {
  background: #fff; border: 1px solid #e9d5ff; border-radius: 16px;
  padding: 22px 24px; display: flex; align-items: center; gap: 18px;
  text-decoration: none; color: inherit; transition: all .3s;
}
.contact-card:hover {
  border-color: #c4b5fd; box-shadow: 0 8px 24px rgba(109,40,217,.08);
  transform: translateX(4px);
}
.contact-card-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.contact-card-icon.wa   { background: #dcfce7; }
.contact-card-icon.mail { background: #faf5ff; }
.contact-card-info h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem; font-weight: 700; color: #0f0428; margin-bottom: 2px;
}
.contact-card-info p { font-size: .84rem; color: #6b5b8a; }
.contact-card-arrow { margin-left: auto; color: #c4b5fd; font-size: 1.1rem; }
.contact-note {
  background: #faf5ff; border: 1px solid #e9d5ff; border-radius: 12px;
  padding: 16px 20px; font-size: .875rem; color: #6d28d9; line-height: 1.65;
  text-align: center;
}

/* === FOOTER === */
footer {
  padding: 36px clamp(20px,5vw,80px); border-top: 1px solid #e9d5ff;
  text-align: center; background: #fff;
}
footer .logo-main {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800;
  background: linear-gradient(135deg, #6d28d9, #0f0428);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer .logo-club {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1rem; font-weight: 800;
  background: linear-gradient(135deg, #db2777, #f472b6);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
footer .footer-logo { margin-bottom: 8px; display: block; }
footer .copy { font-size: .78rem; color: #a38bbe; }

/* === HELPERS === */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.scroll-indicator {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: float 3s ease-in-out infinite; opacity: .35; text-decoration: none;
}
.scroll-indicator span { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: #6b5b8a; }
