
.cc-wrap *, .cc-wrap *::before, .cc-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
.cc-wrap {
  font-family: 'Nunito', sans-serif;
  color: #1A1033;
  --electric: #FF3CAC;
  --electric-dark: #c4007e;
  --violet: #784BA0;
  --cyan: #2B86C5;
  --yellow: #FFD600;
  --dark: #1A1033;
  --muted: #5a5270;
  --radius: 18px;
  --shadow: 0 8px 32px rgba(80,0,120,0.13);
}

/* NAV */
.cc-nav {
  background: #1A1033;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 9999;
}
.cc-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
  text-decoration: none;
}
.cc-logo span { color: #FF3CAC; }
.cc-logo-img {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.cc-logo-img img {
  height: 42px;
  width: auto;
  max-width: 180px;
  display: block;
}
.cc-nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}
.cc-nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.cc-nav-links a:hover { color: #FF3CAC; }
.cc-btn-nav {
  background: #FF3CAC;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.cc-btn-nav:hover { background: #c4007e; transform: scale(1.04); }

/* HERO */
.cc-hero {
  background: linear-gradient(135deg, #1A1033 0%, #784BA0 50%, #2B86C5 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cc-hero::before {
  content: '';
  position: absolute;
  top: -80px; left: -80px;
  width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(255,60,172,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.cc-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,214,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cc-hero-badge {
  display: inline-block;
  background: #FF3CAC;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  margin-bottom: 1.2rem;
}
.cc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cc-hero h1 em {
  font-style: normal;
  color: #FFD600;
}
.cc-hero p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.6;
}
.cc-hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cc-btn-primary {
  background: #FF3CAC;
  color: #fff !important;
  border: none;
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.cc-btn-primary:hover { background: #c4007e; transform: scale(1.04); }
.cc-btn-outline {
  background: transparent;
  color: #fff !important;
  border: 2.5px solid rgba(255,255,255,0.5);
  border-radius: 50px;
  padding: 0.85rem 2.2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.15s;
  text-decoration: none;
  display: inline-block;
}
.cc-btn-outline:hover { border-color: #fff; transform: scale(1.04); }

/* TRUST BAR */
.cc-trust-bar {
  background: #FFD600;
  padding: 0.9rem 2rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.cc-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 0.95rem;
  color: #1A1033;
}
.cc-trust-item svg { width: 20px; height: 20px; flex-shrink: 0; }

/* SECCIONES */
.cc-section {
  padding: 4rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.cc-section-bg {
  background: #f4f0ff;
}
.cc-section-dark {
  background: #1A1033;
}
.cc-section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: #1A1033;
  margin-bottom: 0.5rem;
}
.cc-section-title.white { color: #fff; }
.cc-section-sub {
  text-align: center;
  color: #5a5270;
  font-size: 1rem;
  margin-bottom: 3rem;
}
.cc-section-sub.white { color: rgba(255,255,255,0.6); }

/* FEATURES */
.cc-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.cc-feature-card {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(80,0,120,0.13);
  text-align: center;
  transition: transform 0.2s;
}
.cc-feature-card:hover { transform: translateY(-5px); }
.cc-feature-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
}
.cc-icon-pink { background: #ffe4f4; }
.cc-icon-violet { background: #ede8ff; }
.cc-icon-cyan { background: #e0f3ff; }
.cc-icon-yellow { background: #fff8d6; }
.cc-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
  color: #1A1033;
}
.cc-feature-card p {
  font-size: 0.9rem;
  color: #5a5270;
  line-height: 1.5;
}

/* CATALOGO */
.cc-phones-wrap {
  padding: 4rem 2rem;
  background: #1A1033;
}
.cc-phones-inner { max-width: 1100px; margin: 0 auto; }
.cc-phones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.cc-phone-card {
  background: #241c40;
  border-radius: 18px;
  padding: 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.08);
  transition: transform 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
.cc-phone-card:hover { transform: translateY(-5px); border-color: #FF3CAC; }
.cc-phone-card.cc-popular::before {
  content: '⭐ Más vendido';
  position: absolute;
  top: 14px; right: -22px;
  background: #FF3CAC;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.25rem 2.2rem;
  transform: rotate(45deg);
}
.cc-phone-emoji { font-size: 2.8rem; margin-bottom: 1rem; display: block; }
.cc-phone-card h3 { color: #fff; font-size: 1.05rem; font-weight: 800; margin-bottom: 0.25rem; }
.cc-phone-specs { color: rgba(255,255,255,0.5); font-size: 0.8rem; margin-bottom: 1rem; line-height: 1.4; }
.cc-phone-price { color: #FFD600; font-size: 1.35rem; font-weight: 900; margin-bottom: 0.2rem; }
.cc-phone-cuota { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 1.2rem; }
.cc-btn-phone {
  display: block;
  width: 100%;
  background: #FF3CAC;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.6rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cc-btn-phone:hover { background: #c4007e; }

/* PASOS */
.cc-steps-inner { max-width: 900px; margin: 0 auto; }
.cc-steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.cc-step {
  background: #fff;
  border-radius: 18px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 32px rgba(80,0,120,0.13);
  text-align: center;
}
.cc-step-num {
  width: 44px; height: 44px;
  background: #FF3CAC;
  color: #fff;
  font-weight: 900;
  font-size: 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.cc-step h4 { font-weight: 800; font-size: 1rem; color: #1A1033; margin-bottom: 0.4rem; }
.cc-step p { font-size: 0.88rem; color: #5a5270; line-height: 1.5; }

/* CALCULADORA */
.cc-calc-section {
  background: linear-gradient(135deg, #FF3CAC 0%, #784BA0 100%);
  padding: 4rem 2rem;
}
.cc-calc-inner {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.12);
  border-radius: 24px;
  padding: 2.5rem;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.cc-calc-inner h2 {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.4rem;
}
.cc-calc-sub { color: rgba(255,255,255,0.8); text-align: center; margin-bottom: 2rem; font-size: 0.95rem; }
.cc-calc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.cc-calc-field label {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
}
.cc-calc-field select,
.cc-calc-field input {
  width: 100%;
  background: rgba(255,255,255,0.2);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  padding: 0.65rem 1rem;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  outline: none;
  appearance: none;
}
.cc-calc-field select option { color: #1A1033; background: #fff; }
.cc-calc-field input::placeholder { color: rgba(255,255,255,0.55); }
.cc-calc-result {
  background: #fff;
  border-radius: 14px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}
.cc-calc-result .cc-label { font-size: 0.85rem; color: #5a5270; font-weight: 700; margin-bottom: 0.25rem; }
.cc-calc-result .cc-amount { font-size: 2.5rem; font-weight: 900; color: #FF3CAC; }
.cc-calc-result .cc-note { font-size: 0.8rem; color: #5a5270; margin-top: 0.3rem; }
.cc-btn-calc {
  display: block;
  width: 100%;
  margin-top: 1.2rem;
  background: #FFD600;
  color: #1A1033;
  border: none;
  border-radius: 50px;
  padding: 0.85rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1.05rem;
  cursor: pointer;
  transition: transform 0.15s;
}
.cc-btn-calc:hover { transform: scale(1.02); }

/* TESTIMONIOS */
.cc-testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.cc-testi-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.8rem;
  box-shadow: 0 8px 32px rgba(80,0,120,0.13);
}
.cc-stars { color: #FF3CAC; font-size: 1.1rem; margin-bottom: 0.8rem; }
.cc-testi-text { font-size: 0.95rem; color: #5a5270; line-height: 1.6; margin-bottom: 1.2rem; }
.cc-testi-author { display: flex; align-items: center; gap: 0.75rem; }
.cc-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.cc-a1 { background: #FF3CAC; }
.cc-a2 { background: #784BA0; }
.cc-a3 { background: #2B86C5; }
.cc-author-info strong { display: block; font-size: 0.9rem; font-weight: 800; color: #1A1033; }
.cc-author-info span { font-size: 0.8rem; color: #5a5270; }

/* CTA */
.cc-cta {
  background: #1A1033;
  padding: 5rem 2rem;
  text-align: center;
}
.cc-cta h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.15;
}
.cc-cta h2 span { color: #FFD600; }
.cc-cta p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2rem; max-width: 480px; margin-left: auto; margin-right: auto; }
.cc-cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto;
}
.cc-cta-form input {
  flex: 1;
  min-width: 220px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50px;
  padding: 0.8rem 1.4rem;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  outline: none;
}
.cc-cta-form input::placeholder { color: rgba(255,255,255,0.5); }
.cc-cta-form button {
  background: #FF3CAC;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 1.8rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}
.cc-cta-form button:hover { background: #c4007e; }

/* FOOTER */
.cc-footer {
  background: #100b22;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.85rem;
}
.cc-footer strong { color: rgba(255,255,255,0.85); }
.cc-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }

@media (max-width: 600px) {
  .cc-nav-links { display: none; }
  .cc-calc-row { grid-template-columns: 1fr; }
  .cc-trust-bar { gap: 1.2rem; }
}


/* WordPress / WooCommerce ajustes */
.cc-logo-img .custom-logo { height: 42px; width: auto; max-width: 180px; display:block; }
.cc-woo-products { margin-top: 1.5rem; }
.cc-woo-products ul.products { display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:1.5rem; margin:0; padding:0; }
.cc-woo-products ul.products li.product { width:auto !important; float:none !important; margin:0 !important; background:#241c40; border-radius:18px; padding:1.2rem; border:1.5px solid rgba(255,255,255,.08); text-align:center; transition: transform .2s, border-color .2s; }
.cc-woo-products ul.products li.product:hover { transform:translateY(-5px); border-color:#FF3CAC; }
.cc-woo-products ul.products li.product img { border-radius:14px; margin-bottom:1rem; }
.cc-woo-products ul.products li.product .woocommerce-loop-product__title { color:#fff; font-family:'Nunito',sans-serif; font-weight:800; font-size:1rem; }
.cc-woo-products ul.products li.product .price { color:#FFD600 !important; font-weight:900; font-size:1.2rem; }
.cc-woo-products ul.products li.product .button { background:#FF3CAC; color:#fff; border-radius:50px; font-weight:800; padding:.65rem 1rem; margin-top:.8rem; }
.cc-woo-products ul.products li.product .button:hover { background:#c4007e; color:#fff; }
.cc-woo-products .woocommerce-result-count,
.cc-woo-products .woocommerce-ordering { display:none; }
.woocommerce-page .cc-wrap a { text-decoration:none; }
