/* ===== NAV LINKS ===== */
.imagen-icon{
  width: 40px;
  height: auto;
  border: 10px;
}

.nav-link {
  color: inherit;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FF4BF0;
}

/* línea animada */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #FF4BF0, #8A2BE2);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-btn {
  background: linear-gradient(135deg, #FF4BF0, #8A2BE2);
  color: #000;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 75, 240, 0.35);
}

/* ===== ICONOS DE NAVEGACIÓN ===== */

.nav-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

/* En desktop: efecto sutil */
.nav-link:hover .nav-icon {
  transform: translateY(-1px);
}

/* =========================
   BOTÓN BASE
========================= */
.menu-button {/*boton de solicitar propuesta servicio*/
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 18px 36px;
  min-width: 180px;
  height: 50px;

  font-size: 1.05em;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  color: #ffffff;
  background: transparent;
  border: 3px solid #ffffff29;
  border-radius: 8px;

  cursor: pointer;
  overflow: hidden;

  transform: translateY(0);
  transition:
    color 0.4s ease,
    letter-spacing 0.4s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* =========================
   FONDO ANIMADO
========================= */
.menu-button span {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff4bf030, #892be23e);
  z-index: -1;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

/* =========================
   EFECTO PARTÍCULAS (LÍNEAS)
========================= */
.particle-btn::before,
.particle-btn::after {
  content: "";
  position: absolute;
  inset: -40px;

  background: repeating-linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 75, 240, 0) 48%,
    transparent 52%,
    transparent 100%
  );

  background-size: 100% 12px; /* separación vertical de líneas */
  opacity: 0;
  transform: scaleY(0.6) translateY(10px);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease;

  pointer-events: none;
}

/* =========================
   HOVER
========================= */
.menu-button:hover {
  color: #fbfbfb;
  letter-spacing: 0.16em;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 75, 255, 0.378);/*sobra debajo del boton*/
}

.menu-button:hover span {
  transform: scaleY(1);
}

.menu-button:hover::before,
.menu-button:hover::after {
  opacity: 0.9;
  transform: scaleY(1) translateY(0);
}

/* =========================
   CLICK (PRESIÓN)
========================= */
.menu-button:active {
  transform: translateY(0);
}
/*boton de servicio index.html*/

.menu-server{
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;

  padding: 18px 36px;
  min-width: 180px;
  height: 50px;

  font-size: 1.05em;
  text-transform: uppercase;
  letter-spacing: 0.12em;

  color: #ffffff;
  background: transparent;
  border: 3px solid #ffffff29;
  border-radius: 8px;

  cursor: pointer;
  overflow: hidden;

  transform: translateY(0);
  transition:
    color 0.4s ease,
    letter-spacing 0.4s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease;

}
.menu-server span{
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff4bf030, #892be23e);
  z-index: -1;

  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

/*efecto al pasr el cursol*/
.p-btn::before,
.p-btn::after {
  content: "";
  position: absolute;
  inset: -40px;

  background: repeating-linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 75, 240, 0) 48%,
    transparent 52%,
    transparent 100%
  );

   background-size: 100% 12px; /* separación vertical de líneas */
  opacity: 0;
  transform: scaleY(0.6) translateY(10px);

  transition:
    opacity 0.45s ease,
    transform 0.45s ease;

  pointer-events: none;
}

.p-btn:hover {
  color: #fbfbfb;
  letter-spacing: 0.16em;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255, 75, 255, 0.378);/*sobra debajo del boton*/
}

.p-btn:hover span {
  transform: scaleY(1);
}

.p-btn:hover::before,
.p-btn:hover::after {
  opacity: 0.9;
  transform: scaleY(1) translateY(0);
}

/* =========================
   CLICK (PRESIÓN)
========================= */
.p-btn:active {
  transform: translateY(0);
}

/*forma de body y el footer*/

.header {
  height: 80px;
}

#hero {
  margin-top: -100px;
}

.footer-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 3rem;
}

/*servicio*/

/* ================================
   RESET + BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}
/* ================================
   CAMPO DE ESTRELLAS (FONDO)
================================ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 30% 80%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, #ffffff 50%, transparent 100%),
    radial-gradient(2px 2px at 70% 30%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, #ffffff 50%, transparent 100%),
    radial-gradient(2px 2px at 40% 10%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, #ffffff 50%, transparent 100%);
  background-repeat: repeat;
  background-size: 400px 400px;
  opacity: 0.6;
  z-index: 1;               /* ⬅ estrellas */
  pointer-events: none;
  animation: starsMove 120s linear infinite;
}

/* Movimiento ultra sutil */
@keyframes starsMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200px);
  }
}


/* ================================
   FONDO ESPACIAL / NEBULA
   (CAPA BASE DEL FONDO)
================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246,0,192,0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(139,29,156,0.15), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(90,0,120,0.2), transparent 50%),
    linear-gradient(180deg, #05000a, #120016 60%, #05000a);
  z-index: 0;
  pointer-events: none;
}

/* ================================
   HEADER   
================================ */

/* ================================
   NAV
================================ */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f600c0, #8b1d9c);
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* ================================
   CONTENIDO amk
================================ */
body {
  padding-top: 0px;
}

section {
  position: relative;
  z-index: 5;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 span {
  color: #f600c0;
}

.about {
  padding: 120px 20px;
}

.about-container {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.highlight {
  color: #f600c0;
  font-weight: 600;
}

/* ================================
   CANVAS PARTÍCULAS (CAPA ANIMADA)
================================ */
#particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;           /* ENTRE fondo y contenido */
  pointer-events: none;
}

/* ================================
   CURSOR GLOW
================================ */
.cursor-glow {
  position: fixed;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(246,0,192,0.9) 0%,
    rgba(246,0,192,0.4) 40%,
    transparent 70%
  );
  box-shadow:
    0 0 20px rgba(246,0,192,0.9),
    0 0 40px rgba(139,29,156,0.6);
  transform: translate(-50%, -50%);
  z-index: 99999;
  mix-blend-mode: screen;
}

/* ================================
   FOOTER
================================ */
footer {
  padding: 40px 20px;
  text-align: center;
  opacity: 0.7;
  position: relative;
  z-index: 5;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }

  .nav {
    display: flex;
  }
}
/* ================================
   ABOUT PRO STYLE
================================ */
.pro-about {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Intro */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-intro span {
  color: #f600c0;
  font-weight: 600;
}

/* Grid de cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 18px;
  transition: 0.4s ease;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, transparent, rgba(246,0,192,0.15));
  opacity: 0;
  transition: 0.4s;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(246,0,192,0.25);
}

.about-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Statement final */
.about-statement {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.about-statement p {
  opacity: 0.85;
  margin-bottom: 25px;
}

.about-statement h4 {
  font-size: 1.5rem;
}

.about-statement span {
  color: #f600c0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 1.8rem;
  }
}

/* ===== NAV LINKS ===== */

.nav-link {
  color: inherit;
  position: relative;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #FF4BF0;
}

/* línea animada */
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #FF4BF0, #8A2BE2);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.menu-btn {
  background: linear-gradient(135deg, #FF4BF0, #8A2BE2);
  color: #000;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 75, 240, 0.35);
}

/* ===== ICONOS DE NAVEGACIÓN ===== */

.nav-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

/* En desktop: efecto sutil */
.nav-link:hover .nav-icon {
  transform: translateY(-1px);
}

.body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 10%;
  background:
    radial-gradient(circle at top right, rgba(246, 0, 192, 0.35), transparent 60%),
    radial-gradient(circle at bottom left, rgba(139, 29, 156, 0.35), transparent 60%),
    linear-gradient(135deg,
      var(--morado-profundo) 0%,
      var(--morado-oscuro) 30%,
      var(--morado-medio) 60%,
      var(--fucsia) 100%
    );
}

.contact-btn{
    position: relative;
    width: 240px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    cursor: pointer;
    overflow: hidden;
    font-size: 2em;
    transition: 0.5s;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color:#ffffff
}

.menu-btn {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  color: #ab006f;
    border-color: #ff4bf0;
  font-size: 1.1em;
  text-transform: uppercase;
  letter-spacing: 0.1em;

  background: transparent;
  border: 2px solid #ab006f;
  cursor: pointer;
  overflow: hidden;

  z-index: 0; /* 🔥 CLAVE */
  transition: letter-spacing 0.55s ease, color 0.55s ease;
}

.menu-btn span {
  position: absolute;
  inset: 0;
  background: #ab006f;

   background: linear-gradient(135deg, #FF4BF0, #8A2BE2);

  z-index: -1; /* ahora sí funciona */
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.55s ease;
}


/*Nosotros*/

/* ================================
   RESET + BASE
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}
/* ================================
   CAMPO DE ESTRELLAS (FONDO)
================================ */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 30% 80%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 50% 50%, #ffffff 50%, transparent 100%),
    radial-gradient(2px 2px at 70% 30%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 90% 70%, #ffffff 50%, transparent 100%),
    radial-gradient(2px 2px at 40% 10%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 60% 90%, #ffffff 50%, transparent 100%),
    radial-gradient(1px 1px at 80% 60%, #ffffff 50%, transparent 100%);
  background-repeat: repeat;
  background-size: 400px 400px;
  opacity: 0.6;
  z-index: 1;               /* ⬅ estrellas */
  pointer-events: none;
  animation: starsMove 120s linear infinite;
}

/* Movimiento ultra sutil */
@keyframes starsMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-200px);
  }
}


/* ================================
   FONDO ESPACIAL / NEBULA
   (CAPA BASE DEL FONDO)
================================ */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246,0,192,0.15), transparent 40%),
    radial-gradient(circle at 80% 30%, rgba(139,29,156,0.15), transparent 45%),
    radial-gradient(circle at 50% 80%, rgba(90,0,120,0.2), transparent 50%),
    linear-gradient(180deg, #05000a, #120016 60%, #05000a);
  z-index: 0;
  pointer-events: none;
}

/* ================================
   HEADER   
================================ */

/* ================================
   NAV
================================ */
.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  color: #fff;
  text-decoration: none;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f600c0, #8b1d9c);
  transition: 0.3s;
}

.nav a:hover::after {
  width: 100%;
}

/* ================================
   CONTENIDO amk
================================ */
body {
  padding-top: 120px;
}

section {
  position: relative;
  z-index: 5;
}

.hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 span {
  color: #f600c0;
}

.about {
  padding: 120px 20px;
}

.about-container {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.highlight {
  color: #f600c0;
  font-weight: 600;
}

/* ================================
   CANVAS PARTÍCULAS (CAPA ANIMADA)
================================ */
#particles {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 2;           /* ENTRE fondo y contenido */
  pointer-events: none;
}

/* ================================
   CURSOR GLOW
================================ */
.cursor-glow {
  position: fixed;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle,
    rgba(246,0,192,0.9) 0%,
    rgba(246,0,192,0.4) 40%,
    transparent 70%
  );
  box-shadow:
    0 0 20px rgba(246,0,192,0.9),
    0 0 40px rgba(139,29,156,0.6);
  transform: translate(-50%, -50%);
  z-index: 99999;
  mix-blend-mode: screen;
}

/* ================================
   FOOTER
================================ */
footer {
  padding: 40px 20px;
  text-align: center;
  opacity: 0.7;
  position: relative;
  z-index: 5;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }

  .nav {
    display: none;
  }
}
/* ================================
   ABOUT PRO STYLE
================================ */
.pro-about {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* Intro */
.about-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.about-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.about-intro span {
  color: #f600c0;
  font-weight: 600;
}

/* Grid de cards */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.about-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 18px;
  transition: 0.4s ease;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, transparent, rgba(246,0,192,0.15));
  opacity: 0;
  transition: 0.4s;
}

.about-card:hover::before {
  opacity: 1;
}

.about-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(246,0,192,0.25);
}

.about-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Statement final */
.about-statement {
  text-align: center;
  max-width: 850px;
  margin: auto;
}

.about-statement p {
  opacity: 0.85;
  margin-bottom: 25px;
}

.about-statement h4 {
  font-size: 1.5rem;
}

.about-statement span {
  color: #f600c0;
}

/* Responsive */
@media (max-width: 768px) {
  .about-intro h2 {
    font-size: 1.8rem;
  }
}


/*============================
CSS del servicos 
===============================*/
.service{
  padding: 120px 20px;
}
.service-container {
  max-width: 900px;
  margin: auto;
  line-height: 1.8;
}

.pro-service {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* ================================
   service PRO STYLE
================================ */

/* Intro */
.service-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.service-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* Grid de cards */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 18px;
  transition: 0.4s ease;
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, transparent, rgba(246,0,192,0.15));
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(246,0,192,0.25);
}

.service-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .service-intro h2 {
    font-size: 1.8rem;
  }
}

/*circle boton de servicio*/
.color{
  color: #f600c0;
}

.service-intro span {
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    #7b01ab 0%,
    #e100ca 100%,
    #f89ffc 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ================================
   CATALOGO PRO STYLE
================================ */

/* Intro */
.catalogo-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.catalogo-intro h2,
.plan-intro h2 {
  font-size: 2.2rem;
  font-weight: bold;
  background: linear-gradient(90deg, #7b01ab,#e100ca, #f89ffc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Grid de cards */
.catalogo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 80px;
}

.catalogo-card,
.plan-card {
 position: relative;
  background: rgba(255,255,255,0.05);
  border-radius: 18px;
  padding: 32px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalogo-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, transparent, rgba(246,0,192,0.15));
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;
}

.catalogo-card:hover::before {
  opacity: 1;
}

.catalogo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(246,0,192,0.25);
}

.catalogo-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .catalogo-intro h2 {
    font-size: 1.8rem;
  }
}

/*circle boton de servicio*/
.color{
  color: #f600c0;
}

.catalogo-intro{
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    #7b01ab 0%,
    #e100ca 100%,
    #f89ffc 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.catalogo {
  padding: 80px 20px;
}

.catalogo-container {
  max-width: 1200px;
  margin: auto;
}

.catalogo-intro {
  margin-bottom: 40px;
}


.catalogo-card {
  border-radius: 18px;
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 75, 240, 0.25);
}

.catalogo-card h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.catalogo-card h5 {
  font-size: 0.95rem;
  opacity: 0.8;
  margin-bottom: 10px;
}

.resumen {
  margin-bottom: 10px;
}

.btn {
  width: 100%;
  margin-top: 14px;
  padding: 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.ver-mas {
  background: #67009ab2;
  color: #fff;
  min-height: 48px;
  font-size: 1rem;
  line-height: 1.2;
}

.solicitar {
  background: linear-gradient(90deg, #FF4BF0, #9f4bff);
  color: #fff;
}


@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.info-extra {
  display: none;
}
/*
.catalogo-card.activa .info-extra{

}
.catalogo-card .solicitar{}



.catalogo-card.activa .solicitar{

}


.catalogo-card.activa .ver-mas{
  
}*/

/* CATÁLOGO – contenido oculto */
.catalogo-card .info-extra {
  display: none;
  margin-top: 1rem;
  animation: fadeIn 0.3s ease;
}

/* CATÁLOGO – cuando está activa */
.catalogo-card.activa .info-extra {
  display: block;
}

/* Botón solicitar */
.catalogo-card .solicitar {
  display: none;
}

.catalogo-card.activa .solicitar {
  display: inline-block;
  margin-top: 1rem;
}

/* Animación suave */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*plan*/

/* Intro */
.plan-intro {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.plan-intro h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* Grid de cards */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin:0 auto;
  align-items: stretch;
}

.plan-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 18px;
  transition: 0.4s ease;
  position: relative;

  height: auto;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, transparent, rgba(246,0,192,0.15));
  opacity: 0;
  transition: 0.4s;
  pointer-events: none;

}

.plan-card:hover::before {
  opacity: 1;
}

.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(246,0,192,0.25);
}

.plan-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .plan-intro h2 {
    font-size: 1.8rem;
  }
}

/*circle boton de servicio*/
.color{
  color: #f600c0;
}

.plan-intro{
  font-size: 50px;
  font-weight: bold;
  background: linear-gradient(
    90deg,
    #7b01ab 0%,
    #e100ca 100%,
    #f89ffc 50%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* Texto */
.precio {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 15px 0;
}

.subtitulo{
  font-size: 1.8rem;
  font-weight: bold;
  margin: 6px 0;
}

.descripcion {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 20px;
}

/* INFO OCULTA */
.pinfo-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease;
  background: #b702f970;
  border: #fff;
  border-radius: 10px;
  
}

.pinfo-extra ul {
  padding-left: 18px;
}

.pinfo-extra li {
  margin-bottom: 8px;
  font-size: 0.9rem;
}

/* Plan destacado */
.pricing-card.destacado {
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(246,0,192,0.45);
}

.plan-card.activa .ver-mas {
  display: none;
}

.plan-card.activa .solicitar {
  display: block;
}

.plan-card .solicitar {
  display: none;
}

.plan-card.activa .pinfo-extra {
  max-height: 1000px;
  opacity: 1;
  margin-top: 1rem;
}
.btn {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

.contact {
  padding: 6rem 1.5rem;
}

.contact-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}


.contact-form {
  padding: 3rem;
  color: #fff;
  background: linear-gradient(135deg, #ff4bf0, #8a2be2, #f89ffc);
}

.contact-form h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  padding: 1rem 0;
  color: #fff;
  margin-bottom: 1.5rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.contact-form textarea {
  resize: none;
  min-height: 120px;
}

.contact-form button {
  background: #ff89b0;
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #ff89b0;
}

.contact-info {
  padding: 3rem;
  background: #fff;
  color: #111;
}

.dark .contact-info {
  background: #645f8736;
  color: #eee;
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info p {
  color: #777;
  margin-bottom: 2rem;
}

.dark .contact-info p {
  color: #ffffff;
}

.contact-info ul {
  list-style: none;
  padding: 0;
}

.contact-info li {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/*menu*/
.tooltip {
 position: relative;
}

.tooltip::after {
 content: attr(data-tooltip);
 position: absolute;
 bottom: -35px;
 left: 50%;
 transform: translateX(-50%);
 background: #111;
 color: #fff;
 padding: 6px 12px;
 border-radius: 6px;
 font-size: .75rem;
 white-space: nowrap;
 opacity: 0;
 pointer-events: none;
 transition: .25s ease;
 box-shadow: 0 8px 20px rgba(0,0,0,.3);
}

.tooltip:hover::after {
 opacity: 1;
}