html, body {
  margin: 0;
  padding: 0;
}

.hero {
  display: grid;
  position: relative;
  grid-template-columns: 1;
  grid-template-rows: 1;
  place-items: center;
  overflow: hidden;
  animation: clip-hero-anim 1.25s cubic-bezier(0.29, 0.8, 0.8, 0.98);
  will-change: clip-path;
}

/* Los tres elementos se ubican en la misma celda */
.hero__bg,
.hero__cnt,
.hero__logo {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  align-self: center;
  justify-self: center;
}

/* Fondo */
.hero__bg {
  position: relative;
  z-index: 0;
  display: grid;
  place-items: center;
  animation: fade-in 0.75s linear;
  will-change: opacity;
}

/* Degradado sutil para efecto "tech" (usando el valor fijo de $hero-bg-mix: rgba(41, 4, 47, 0.4)) */
.hero__bg::before {
  content: "";
  position: absolute;
  z-index: 5;
  top: -10%;
  right: -10%;
  bottom: -10%;
  left: -10%;
  background: rgba(41, 4, 47, 0.4);
  background-blend-mode: screen;
}

.hero__bg picture {
  display: block;
  height: 100vh;
  width: 100vw;
  animation: scaling-hero-anim 4s 0.25s cubic-bezier(0, 0.71, 0.4, 0.97) forwards;
  will-change: transform;
}

.hero__bg picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 77% 50%;
}

/* Logo de la empresa centrado */
.hero__logo {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 15;
  opacity: 0;
  animation: fade-in 1s 1.5s forwards;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Ajuste responsivo del logo */
.hero__logo img {
  max-width: 150px;
  height: auto;
}

/* 📱 Para pantallas más pequeñas (menos de 768px) */
@media (max-width: 768px) {
  .hero__logo {
    top: 30%; /* Lo subimos un poco en pantallas más pequeñas */
  }

  .hero__logo img {
    max-width: 120px; /* Reducimos el tamaño del logo */
  }
}

/* 📱 Para dispositivos muy pequeños (menos de 480px) */
@media (max-width: 480px) {
  .hero__logo {
    top: 37%;
  }

  .hero__logo img {
    max-width: 100px; /* Aún más pequeño en móviles */
  }
}


/* Contenido principal (texto) */
.hero__cnt {
  position: relative;
  z-index: 10;
  color: #FFF;
  text-align: center;
  opacity: 0;
  animation: fade-in 0.75s 1.75s linear forwards;
}

.hero__cnt h1 {
  font-size: 4vw;
  margin: 0.5em 0;
}

.hero__cnt p {
  font-size: 1.5vw;
  margin: 0;
}

/* Animaciones */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaling-hero-anim {
  from {
    transform: scale(1.25);
  }
  to {
    transform: scale(1.1);
  }
}

@keyframes clip-hero-anim {
  from {
    clip-path: polygon(50% 50%, 50% 50%, 50% 50%, 50% 50%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}

/* Media queries para ajustar tipografía y tamaño del logo en pantallas pequeñas */
@media (max-width: 768px) {
  .hero__cnt h1 {
    font-size: 8vw;
  }
  .hero__cnt p {
    font-size: 4vw;
  }

}
/* CSS Mejorado */
:root {
  --brand-primary: #5d1486;    /* Morado principal */
  --brand-secondary: #12026e;  /* Azul oscuro */
  --brand-accent: #e21111;     /* Rojo coral para contraste */
}

.custom-cursor {
  position: fixed;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, 
    var(--brand-primary) 20%, 
    var(--brand-secondary) 80%);
  pointer-events: none;
  border-radius: 50%;
  z-index: 9999;
  transition: 
    transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28),
    width 0.3s ease,
    height 0.3s ease;
  mix-blend-mode: difference;
  filter: drop-shadow(0 0 8px rgba(93, 20, 134, 0.4));
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.1); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.custom-cursor.cursor-click {
  animation: clickEffect 0.4s ease-out;
  background: radial-gradient(circle, 
    var(--brand-accent) 20%, 
    var(--brand-primary) 80%);
}

@keyframes clickEffect {
  0% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(0.5); }
  100% { transform: translate(-50%, -50%) scale(1); }
}

.cursor-trail {
  position: fixed;
  width: 8px;
  height: 8px;
  background: linear-gradient(
    45deg,
    var(--brand-primary),
    var(--brand-secondary)
  );
  border-radius: 50%;
  z-index: 9998;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: 
    trailFade 1s ease-out forwards,
    trailFloat 1s ease-out forwards;
}

@keyframes trailFade {
  0% { opacity: 0.8; }
  100% { opacity: 0; }
}

@keyframes trailFloat {
  0% { transform: translate(-50%, -50%); }
  100% { transform: translate(-50%, calc(-50% - 20px)); }
}

/* Nuevos efectos de hover */
.custom-cursor.hover-link {
  transform: translate(-50%, -50%) scale(1.8);
  background: radial-gradient(circle, 
    var(--brand-accent) 20%, 
    var(--brand-primary) 80%);
  animation: hoverPulse 1s infinite;
}

@keyframes hoverPulse {
  0% { filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.4)); }
  50% { filter: drop-shadow(0 0 15px rgba(255, 107, 107, 0.6)); }
  100% { filter: drop-shadow(0 0 8px rgba(255, 107, 107, 0.4)); }
}


:root {
  --st-glow: rgba(255,255,255,0.15);
}

.st-plan-premium {
  background: linear-gradient(
      45deg, 
      rgba(93, 20, 134, 0.9), 
      rgba(65, 20, 161, 0.9)
  ), 
  url('https://images.unsplash.com/photo-1550029402-226115b7c579?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=701&q=80');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.st-plan-premium::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      45deg,
      transparent 25%,
      var(--st-glow) 50%,
      transparent 75%
  );
  animation: glow-animation 6s infinite linear;
  z-index: 0;
}

@keyframes glow-animation {
  0% { transform: rotate(0deg) translateZ(0); }
  100% { transform: rotate(360deg) translateZ(0); }
}

.st-plan-premium > * {
  position: relative;
  z-index: 1;
}

.st-plan-premium .st-plan-cta {
  background: rgba(255,255,255,0.9);
  color: var(--st-primary);
  border: 2px solid white;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.st-plan-premium .st-plan-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
      to right,
      rgba(255,255,255,0) 20%,
      rgba(255,255,255,0.3) 50%,
      rgba(255,255,255,0) 80%
  );
  transform: rotate(45deg);
  animation: button-glow 3s infinite;
}

@keyframes button-glow {
  0% { left: -100%; }
  100% { left: 200%; }
}

.st-plan-premium .st-plan-features li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.st-plan-premium .st-plan-price {
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.st-plan-premium .st-plan-name {
  position: relative;
  display: inline-block;
}

.st-plan-premium .st-plan-name::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: rgba(255,255,255,0.5);
  box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

/* Efecto de partículas brillantes */
.st-plan-premium::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 50% 50%,
      rgba(255,255,255,0.1) 0%,
      transparent 30%
  );
  pointer-events: none;
}

@media (max-width: 1200px) {
  .st-pricing-grid {
    gap: 1.5rem;
    padding: 0 1rem;
  }
  
  .st-plan-card {
    padding: 1.5rem;
  }
}

@media (max-width: 992px) {
  .st-pricing-title {
    font-size: 2.2rem;
    margin-bottom: 2rem;
  }
  
  .st-plan-price {
    font-size: 3rem;
  }
  
  .st-plan-features li {
    font-size: 0.95rem;
    padding: 0.8rem 0;
  }
}

@media (max-width: 768px) {
  .st-pricing {
    padding: 3rem 0.5rem;
  }
  
  .st-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .st-plan-premium {
    transform: scale(1) !important;
    background-image: linear-gradient(
        rgba(93, 20, 134, 0.9), 
        rgba(65, 20, 161, 0.9)
      ), 
      url('https://images.unsplash.com/photo-1550029402-226115b7c579');
    background-position: 60% center;
    order: -1;
    margin-bottom: 1.5rem;
  }
  
  .st-plan-ribbon {
    right: -35px;
    top: 12px;
    padding: 0.4rem 2rem;
    font-size: 0.7rem;
    width: 130px;
  }
  
  .st-plan-name {
    font-size: 1.6rem;
  }
  
  .st-plan-price {
    font-size: 2.8rem;
  }
  
  .st-plan-cta {
    font-size: 0.9rem;
    padding: 0.9rem;
  }
  
  .st-plan-premium::before {
    animation: glow-animation-mobile 10s infinite linear;
    opacity: 0.5;
  }
  
  @keyframes glow-animation-mobile {
    0% { transform: rotate(0deg) scale(1.5); }
    100% { transform: rotate(360deg) scale(1.5); }
  }
}

@media (max-width: 576px) {
  .st-pricing-title {
    font-size: 1.8rem;
    padding: 0 1rem;
  }
  
  .st-pricing-title::after {
    width: 80px;
    bottom: -0.8rem;
  }
  
  .st-plan-card {
    margin: 0 0.5rem;
    padding: 1.2rem;
  }
  
  .st-plan-price {
    font-size: 2.5rem;
  }
  
  .st-plan-features li {
    font-size: 0.9rem;
    gap: 0.6rem;
  }
  
  .st-plan-features li i {
    font-size: 0.9rem;
  }
  
  .st-plan-cta {
    font-size: 0.85rem;
  }
  
  .st-plan-ribbon {
    top: 10px;
    right: -40px;
    width: 140px;
    padding: 0.3rem 2rem;
  }
}

@media (max-width: 480px) {
  .st-plan-premium {
    background-position: 55% center;
  }
  
  .st-plan-name {
    font-size: 1.5rem;
  }
  
  .st-plan-price {
    font-size: 2.2rem;
  }
  
  .st-currency {
    font-size: 1.2rem;
  }
  
  .st-period {
    font-size: 1rem;
  }
  
  .st-plan-features li {
    font-size: 0.85rem;
    padding: 0.6rem 0;
  }
  
  .st-plan-cta {
    padding: 0.8rem;
    font-size: 0.8rem;
  }
  
  .st-plan-ribbon {
    font-size: 0.6rem;
    right: -45px;
    width: 150px;
  }
  
  /* Optimización de animaciones para móvil */
  .st-plan-card {
    transition: none;
  }
  
  .st-plan-card:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .st-plan-premium::before {
    animation: glow-animation-mobile 12s infinite linear;
    opacity: 0.3;
  }
}
main{
  z-index: -1;
}

:root {
  --primary-color: rgba(93, 20, 134, 0.1);
  --accent-color: rgba(255, 107, 107, 0.05);
  --animation-duration: 20s;
}




.st-testimonials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f8f9fa;
}

.st-testimonial-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.st-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(93, 20, 134, 0.2);
}

.st-quote {
  position: relative;
  padding: 2rem;
  margin: 0;
  font-style: italic;
  color: #4a4a4a;
  line-height: 1.6;
  background: #fff;
}

.st-quote::before,
.st-quote::after {
  font-family: 'FontAwesome';
  font-size: 2.5rem;
  color: rgba(93, 20, 134, 0.1);
  position: absolute;
}

.st-quote::before {
  content: "\201C";
  top: 1rem;
  left: 1rem;
}

.st-quote::after {
  content: "\201D";
  bottom: -1rem;
  right: 1rem;
}

.st-arrow {
  position: absolute;
  bottom: -1px;
  left: 2rem;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
}

.st-client-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.st-client-info {
  padding: 1.5rem;
  background: #fff;
}

.st-client-name {
  margin: 0;
  font-size: 1.1rem;
  color: #2c3e50;
}

.st-client-role {
  display: block;
  font-size: 0.9rem;
  color: #7f8c8d;
  margin-top: 0.5rem;
  font-weight: 400;
}

.st-highlighted {
  transform: scale(1.05);
  box-shadow: 0 20px 40px rgba(93, 20, 134, 0.3);
}

.st-highlighted:hover {
  transform: scale(1.08);
}

/* Responsive Design */
@media (max-width: 768px) {
  .st-testimonials {
      flex-direction: column;
      align-items: center;
      padding: 2rem 1rem;
  }
  
  .st-testimonial-card {
      max-width: 100%;
  }
  
  .st-highlighted {
      transform: scale(1);
  }
  
  .st-highlighted:hover {
      transform: scale(1.02);
  }
}

@media (max-width: 480px) {
  .st-quote {
      padding: 1.5rem;
      font-size: 0.9rem;
  }
  
  .st-client-info {
      padding: 1rem;
  }
  
  .st-client-name {
      font-size: 1rem;
  }
  
  .st-client-role {
      font-size: 0.8rem;
  }
}

@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@700&display=swap");

:root {
  /* Colors */
  --brand-color: hsl(46, 100%, 50%);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
  /* Fonts */
  --font-title: "Montserrat", sans-serif;
  --font-text: "Lato", sans-serif;
}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}



/* ===============================================
   VARIABLES GLOBALES & RESET DE ESPACIADOS
=============================================== */
:root {
  /* Colores base: azul y morado */

  --brand-color: var(--secondary-color);
  --accent-color: #7f5af0;        /* Morado intermedio/acento */
  --bg-dark: #0a0a23;             /* Fondo oscuro para contraste */
  --text-color: #ffffff;
  --transition-timing: cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Espaciado base para elementos en flujo */
  --flow-space: 1em;
  
  /* Fuente para títulos (asegúrate de cargar Montserrat o la fuente de tu preferencia) */
  --font-title: 'Montserrat', sans-serif;
}

/* Cada elemento siguiente en una jerarquía .flow tendrá un margen superior */
.flow > * + * {
  margin-top: var(--flow-space, 1em);
}

/* ===============================================
   CARD GRID: CONTENEDOR DE LAS TARJETAS
=============================================== */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  animation: gridFadeIn 1s ease-out forwards;
}

@keyframes gridFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================================
   CARD COMPONENT: TARJETA INDIVIDUAL
=============================================== */
.card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 350px;
  height: 450px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
 
  transform-style: preserve-3d;
  perspective: 1000px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: cardEntrance 0.8s ease-out forwards;
}

@keyframes cardEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================================
   CARD BACKGROUND: IMAGEN O VIDEO DE FONDO
=============================================== */
.card__background {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
  filter: brightness(0.7);
}

/* ===============================================
   CARD CONTENT: CONTENIDO SUPERPUESTO
=============================================== */
.card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  padding: 1.5rem;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.8) 100%
  );
  color: white;
  transition: transform 0.5s ease, opacity 0.5s ease;
  transform: translateY(100%);
  opacity: 0;
}

.card:hover .card__content {
  transform: translateY(0);
  opacity: 1;
}

/* ===============================================
   CARD TITLE: TÍTULO CON EFECTO SHIMMER
=============================================== */
.card__title {
  font-size: 1.8rem;
  font-family: var(--font-title);
  color: white;
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}

/* ===============================================
   CARD BUTTON: BOTÓN DE ACCIÓN CON EFECTOS
=============================================== */
.card__button {
  padding: 0.75em 1.6em;
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  background-color: #ff6f61;
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

.card__button:hover {
  background-color: #ff3b2f;
  transform: translateY(-3px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* ===============================================
   TEXTO ADICIONAL (PARRAFOS, SPANS) CON EFECTO POP
=============================================== */
.card__content--container p,
.card__content--container span {
  font-size: 1rem;
  line-height: 1.4;
  color: white;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  animation: textPop 0.8s ease-out forwards;
}

@keyframes textPop {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===============================================
   HOVER: EFECTOS Y ANIMACIONES EXTRA
=============================================== */
.card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.card:hover .card__background {
  transform: scale(1.1);
}

/* Efecto halo (glow) animado alrededor de la tarjeta */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;

  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
 
}

.card:hover::before {
  opacity: 0.5;
}

/* ===============================================
   RESPONSIVE DESIGN
=============================================== */
@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
  }
  .card {
    max-width: 100%;
  }
}
/* ===============================================
   TEXTO ADICIONAL (PARRAFOS, SPANS) CON EFECTO POP
=============================================== */
.card__content--container p,
.card__content--container span {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--text-color);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
  animation: textPop 0.8s ease-out forwards;
}

@keyframes textPop {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===============================================
   HOVER: EFECTOS Y ANIMACIONES EXTRA
=============================================== */
.card:hover {
  transform: scale(1.05);

  animation: subtleShake 0.5s ease;
}

@keyframes subtleShake {
  0% { transform: scale(1.05) translateX(0); }
  25% { transform: scale(1.05) translateX(-2px); }
  50% { transform: scale(1.05) translateX(2px); }
  75% { transform: scale(1.05) translateX(-2px); }
  100% { transform: scale(1.05) translateX(0); }
}

/* Zoom en el fondo al hover */
.card:hover .card__background {
  transform: scale(1.1);
}

/* El contenido se desplaza hacia arriba al hover */
.card:hover .card__content {
  transform: translateY(0);
}

/* Expansión de la línea subrayada en el título */
.card:hover .card__title::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Revela los elementos internos y el botón */
.card:hover .card__content--container > :not(.card__title),
.card:hover .card__button {
  opacity: 1;
  transform: translateY(0);
}

/* Efecto halo (glow) animado alrededor de la tarjeta */
.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;

  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  filter: blur(8px);
}

.card:hover::before {
  opacity: 0.5;
}

/* Estaggered fade in para los elementos internos del contenido */
.card__content--container > * {
  opacity: 0;
  transform: translateY(20px);
  animation: contentFadeIn 0.8s forwards;
}

.card__content--container > *:nth-child(1) {
  animation-delay: 0.3s;
}
.card__content--container > *:nth-child(2) {
  animation-delay: 0.5s;
}
.card__content--container > *:nth-child(3) {
  animation-delay: 0.7s;
}

@keyframes contentFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===============================================
   RESPONSIVE DESIGN
=============================================== */
@media (max-width: 768px) {
  .card-grid {
    flex-direction: column;
    align-items: center;
  }
  .card {
    max-width: 100%;
  }
}
.card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75em 1.6em;
  font-variant: small-caps;
  font-weight: bold;
  border-radius: 0.45em;
  border: none;
  background-color: var(--brand-color);
  font-family: var(--font-title);
  font-size: 1.125rem;
  color: #000;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.6);
}

/* Estilos Mejorados */
.st-interactive-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.st-shape-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 2rem;
}

.st-section-title {
  font-size: 2.5rem;
  color: #2d117a;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.st-highlight {
  color: #5013a0;
  position: relative;
  display: inline-block;
}

.st-innovative-list {
  display: grid;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.st-solution-card {
  background: rgba(190, 232, 248, 0.95);
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(93, 20, 134, 0.1);
  transition: transform 0.3s ease;
}

.st-solution-card:hover {
  transform: translateY(-5px);
}

.st-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.st-cta {
  background: linear-gradient(45deg, #5d1486, #4114a1);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  margin-top: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.st-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(93, 20, 134, 0.3);
}

/* Animaciones personalizadas */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.st-dynamic-polygon {
  fill: url(#gradient);
  stroke: #5d1486;
  stroke-width: 2;
  filter: drop-shadow(0 10px 20px rgba(120, 38, 168, 0.1));
}

.st-shape-svg circle {
  fill: #30e1e7;
  stroke: #fff;
  stroke-width: 2;
  cursor: grab;
  animation: float 3s ease-in-out infinite;
}

.st-shape-svg circle:active {
  cursor: grabbing;
  animation: none;
}
.menu-btn {
  position: fixed;
  z-index: 1001;
  right: 20px;
  top: 20px;
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease-in-out;
  border: none;
}

.menu-btn span,
.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 2px;
  background: #070707;
  left: 30%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-btn::before {
  transform: translateY(-8px);
}
.menu-btn::after {
  transform: translateY(8px);
}

/* Estado abierto */
#active.active + .close + .wrapper {
  right: 0;
}

#active.active .menu-btn span {
  opacity: 0;
}

#active.active .menu-btn::before {
  transform: rotate(135deg);
}

#active.active .menu-btn::after {
  transform: rotate(-135deg);
}

.close {
  display: none;
}
#active {
  /* Ocultar visualmente */
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
  
  /* Mantener accesibilidad */
  pointer-events: none;
}

:root {
  --st-primary: #5d1486;
  --st-secondary: #4114a1;
  --st-accent: #ff6b6b;
  --st-gradient: linear-gradient(135deg, var(--st-primary), var(--st-secondary));
}

.st-pricing {
  padding: 4rem 1rem;
  background: #f8f9fa;
}

.st-pricing-title {
  text-align: center;
  font-size: 2.5rem;
  color: var(--st-primary);
  margin-bottom: 3rem;
  position: relative;
}

.st-pricing-title::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: var(--st-accent);
}

.st-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.st-plan-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.st-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(93, 20, 134, 0.2);
}

.st-plan-premium {
  background: var(--st-gradient);
  color: white;
  transform: scale(1.05);
  z-index: 1;
}

.st-plan-premium:hover {
  transform: scale(1.08) translateY(-10px);
}

.st-plan-ribbon {
  position: absolute;
  top: 15px;
  right: -30px;
  background: var(--st-accent);
  color: white;
  padding: 0.5rem 2rem;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 0.8rem;
  width: 120px;
  text-align: center;
}

.st-plan-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.st-plan-name {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: inherit;
}

.st-plan-price {
  font-size: 3.5rem;
  font-weight: 800;
  margin: 1rem 0;
  position: relative;
  display: inline-block;
}

.st-currency {
  font-size: 1.5rem;
  vertical-align: super;
}

.st-period {
  font-size: 1.2rem;
  font-weight: 400;
}

.st-plan-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.st-plan-features li {
  padding: 1rem 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.st-plan-features li:last-child {
  border-bottom: none;
}

.st-plan-cta {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 50px;
  background: var(--st-gradient);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.st-plan-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      120deg,
      transparent,
      rgba(255,255,255,0.3),
      transparent
  );
  transition: 0.5s;
}

.st-plan-cta:hover::before {
  left: 100%;
}

.st-plan-premium .st-plan-cta {
  background: white;
  color: var(--st-primary);
}

/* Efectos de hover específicos */
.st-plan-card:not(.st-plan-premium):hover .st-plan-cta {
  background: var(--st-secondary);
}

@media (max-width: 768px) {
  .st-plan-premium {
      transform: scale(1);
  }
  
  .st-pricing-title {
      font-size: 2rem;
  }
  
  .st-plan-price {
      font-size: 2.5rem;
  }
}


/* ===============================================
   SECCIÓN BROCHURE - MEJORADA
=============================================== */
.brochure-section {
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
  /* Fondo suave con degradado y textura sutil */
  background: linear-gradient(135deg, #f8f8f8, #ffffff);
  color: #222;
}

.brochure-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  align-items: center;
}

/* CONTENEDOR DE CONTENIDO */
.brochure-content {
  position: relative;
  z-index: 1;
}

.brochure-title {
  font-size: 3rem;
  color: #247ea1; /* Color ligeramente afinado */
  margin-bottom: 1.5rem;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
  /* Animación de flotación para llamar la atención */
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.brochure-text {
  color: rgba(17, 17, 17, 0.9);
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* BOTONES DE ACCIÓN */
.brochure-actions {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Botón de descarga con degradado y efecto de destello */
.download-btn {
  background: linear-gradient(45deg, #5d0597, #8a2be2);
  color: #f1f1f1;
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.download-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.download-btn:hover::before {
  left: 100%;
}

.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.download-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.download-btn:hover .download-icon {
  transform: translateY(3px);
}

/* Botón de vista previa */
.preview-btn {
  background: transparent;
  border: 2px solid #240647;
  color: #260574;
  padding: 1rem 2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s ease, background 0.3s ease;
}

.preview-btn:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

/* PREVISIÓN DEL BROCHURE */
.brochure-preview {
  position: relative;
  perspective: 1000px;
  height: 400px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.brochure-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  /* Animación de flotación para darle dinamismo */
  animation: float 6s ease-in-out infinite;
}

.preview-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Overlay con degradado semitransparente para resaltar la imagen */
  background: linear-gradient(45deg, rgba(93,20,134,0.3), rgba(65,20,161,0.3));
  border-radius: 15px;
}

/* Mensaje de reproducción (opcional) */
.st-play-message {
  position: absolute;
  top: 20%;
  left: 55%;
  transform: translate(0%, -80%);
  font-size: 24px;
  font-family: Arial, sans-serif;
  font-weight: bold;
  color: #220d97;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 10;
}

.st-play-message:hover {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.1);
}

/* MODAL DE VISTA PREVIA */
.preview-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
}

.modal-content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: #fff;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.close-modal {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  color: #333;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: #0813b8;
}

.pdf-viewer {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .brochure-container {
      grid-template-columns: 1fr;
      text-align: center;
  }
  
  .brochure-actions {
      flex-direction: column;
      align-items: center;
  }
  
  .brochure-preview {
      height: 300px;
  }
}
