/* Color preview para categorías en admin */
.color-preview {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-right: 8px;
  vertical-align: middle;
}

/* Efecto crecimiento para imagen PyMEs */
.crecimiento-effect {
  position: relative;
  animation: float 3s ease-in-out infinite;
  border-radius: 15px;
  overflow: hidden;
}

.crecimiento-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(180, 199, 29, 0.2), rgba(155, 176, 26, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  border-radius: 15px;
}

.crecimiento-effect:hover::before {
  opacity: 1;
}

.crecimiento-effect:hover {
  transform: translateY(-10px) scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(180, 199, 29, 0.4)) brightness(1.1);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
/* FacturaPRO - Estilos principales basados en la marca + efectos Enfold */

:root {
  --primary-color: #b4c71d;
  --primary-dark: #9bb01a;
  --secondary-color: #6b7280;
  --accent-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --dark-color: #374151;
  --light-color: #f9fafb;
  --gray-color: #9ca3af;
  --shadow-light: rgba(180, 199, 29, 0.1);
  --shadow-medium: rgba(180, 199, 29, 0.25);
  --shadow-dark: rgba(0, 0, 0, 0.15);
}

/* Fuentes principales */
body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: var(--dark-color);
  overflow-x: hidden; /* Previene scroll horizontal en efectos */
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
  font-family: "Montserrat", sans-serif;
}

/* Smooth scrolling global */
html {
  scroll-behavior: smooth;
}

/* Navegación estilo Enfold */
.navbar {
  background-color: rgba(255, 255, 255, 0.6) !important;
  backdrop-filter: blur(15px);
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(180, 199, 29, 0.1);
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
}

.navbar-brand {
  font-size: 1.5rem;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.navbar-brand img {
  height: 50px;
  width: auto;
  max-width: 220px;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.2));
  transition: filter 0.3s ease;
}

.navbar-brand:hover img {
  filter: drop-shadow(0 5px 15px rgba(180, 199, 29, 0.4));
}

.navbar .btn {
  border-radius: 30px;
  padding: 10px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar .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;
}

.navbar .btn:hover::before {
  left: 100%;
}

.nav-link {
  color: var(--dark-color) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

.nav-link:hover::after {
  width: 100%;
  left: 0;
}

/* Hero section estilo Enfold */
.hero-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--primary-dark) 50%,
    var(--accent-color) 100%
  );
  min-height: 100vh;
  display: flex;
  align-items: center;
  margin-top: -76px;
  padding-top: 76px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.03"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to bottom, transparent, rgba(249, 250, 251, 0.8));
  pointer-events: none;
}

.min-vh-50 {
  min-height: 70vh;
}

/* Hero mockup styling estilo Enfold */
.hero-mockup {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
  transition: all 0.4s ease;
  animation: float 8s ease-in-out infinite;
  transform-origin: center center;
}

.hero-mockup:hover {
  transform: scale(1.05) translateY(-10px);
  filter: drop-shadow(0 25px 80px rgba(0, 0, 0, 0.4));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotateX(0deg) rotateY(0deg);
  }
  25% {
    transform: translateY(-15px) rotateX(2deg) rotateY(1deg);
  }
  50% {
    transform: translateY(-10px) rotateX(0deg) rotateY(-1deg);
  }
  75% {
    transform: translateY(-20px) rotateX(-1deg) rotateY(0deg);
  }
}

/* Sección con efecto de fondo estilo Enfold */
.feature-section {
  background-image: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.7) 0%,
      rgba(0, 0, 0, 0.4) 100%
    ),
    url("../img/BackGround.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  padding: 100px 0;
  min-height: 60vh;
}

.feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 70%
  );
  animation: shimmer 4s infinite;
}

.feature-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

/* Background overlay for better text readability */
.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.3) 60%,
    transparent 100%
  );
  z-index: 1;
}

/* Feature content positioning */
.feature-content {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

/* Improved min-vh utility */
.min-vh-60 {
  min-height: 60vh;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

/* ========================================
   HERO SECTIONS Y EFECTOS ESPECIALES
======================================== */

/* Hero Section común */
.hero-section {
  position: relative;
  overflow: hidden;
}

/* Animaciones flotantes */
@keyframes floatAnimation {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes floatDocuments {
  0%,
  100% {
    transform: translateY(0px) rotate(var(--rotate, 0deg));
  }
  50% {
    transform: translateY(-15px) rotate(var(--rotate, 0deg));
  }
}

@keyframes floatBusiness {
  0%,
  100% {
    transform: translateY(0px) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-20px) scale(1.1);
    opacity: 0.5;
  }
}

@keyframes overlayPulse {
  0% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.95;
  }
}

/* Overlay con animación */
.hero-overlay {
  animation: overlayPulse 4s ease-in-out infinite alternate;
}

/* Elementos flotantes */
.hero-mockup {
  transition: transform 0.3s ease;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  animation: floatAnimation 6s ease-in-out infinite;
}

.hero-mockup:hover {
  transform: scale(1.05);
}

.floating-element {
  opacity: 0.6;
  animation: floatAnimation 4s ease-in-out infinite reverse;
}

.floating-mockup .floating-element:nth-child(2) {
  animation: floatAnimation 5s ease-in-out infinite;
}

/* Elementos de documentos */
.doc-element:nth-child(1) {
  --rotate: 15deg;
}
.doc-element:nth-child(2) {
  --rotate: -10deg;
}
.doc-element:nth-child(3) {
  --rotate: 25deg;
}

.business-icon {
  transition: all 0.3s ease;
}

.business-icon:hover {
  transform: scale(1.2);
  opacity: 0.8 !important;
}

/* ========================================
   ESTADÍSTICAS Y CARDS GLASS MORPHISM
======================================== */

/* Estadísticas con glass morphism */
.stat-box {
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  min-height: 80px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  background: rgba(255, 255, 255, 0.12) !important;
  backdrop-filter: blur(15px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.stat-card:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ========================================
   RESPONSIVE Y EFECTOS PARALLAX
======================================== */

/* Efecto parallax */
@media (min-width: 768px) {
  .hero-section {
    background-attachment: fixed;
  }
}

@media (max-width: 767px) {
  .hero-section {
    background-attachment: scroll;
  }

  .floating-documents,
  .floating-business-elements {
    display: none !important;
  }

  .stat-card {
    padding: 0.75rem !important;
    min-height: 70px !important;
  }

  .stat-card h3 {
    font-size: 1.3rem;
  }

  .stat-card small {
    font-size: 0.75rem;
  }

  .stat-box {
    padding: 0.75rem !important;
  }
}

/* Grid items spacing */
.stat-item {
  margin-bottom: 1rem;
}

/* Estilos para la página de Freelancers */
.price-card {
  max-width: 300px;
  margin: 0 auto;
}

.price-display {
  line-height: 1;
}

.profession-card {
  background: white;
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 2px solid transparent;
}

.profession-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.profession-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.profession-icon i {
  font-size: 2rem;
  color: white;
}

.example-usage {
  background: #f8f9fa;
  padding: 10px;
  border-radius: 8px;
  margin-top: 15px;
}

.testimonial-freelancer {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.calculator-mini {
  border-radius: 15px;
}
/* Cards estilo Enfold con mejor organización */
.card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 20px;
  border: 1px solid var(--shadow-light);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 25px 50px var(--shadow-medium) !important;
}

.card:hover::before {
  transform: scaleX(1);
}

/* Service cards estilo Enfold */
.service-card {
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 25px;
  overflow: hidden;
  border: 2px solid transparent;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.95),
    rgba(255, 255, 255, 0.8)
  );
  backdrop-filter: blur(15px);
  position: relative;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    145deg,
    var(--primary-color),
    var(--accent-color)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover {
  transform: translateY(-20px) scale(1.05) rotateX(5deg);
  box-shadow: 0 30px 60px var(--shadow-medium) !important;
  border-color: var(--primary-color);
}

.service-card:hover::before {
  opacity: 0.03;
}

.service-card:hover .feature-icon i {
  transform: scale(1.3) rotate(10deg);
  color: var(--primary-color) !important;
}

.service-card .card-body {
  position: relative;
  z-index: 2;
}

/* Service numbers */
.service-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  opacity: 0.8;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(180, 199, 29, 0.3);
}

.service-card:hover .service-number {
  opacity: 1;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(180, 199, 29, 0.4);
}

/* Hero stats */
.hero-stats .stat-item {
  padding: 15px;
  transition: all 0.3s ease;
}

.hero-stats .stat-item:hover {
  transform: translateY(-5px);
}

.hero-stats h3 {
  font-size: 2.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 10px rgba(255, 193, 7, 0.3);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 193, 7, 0.6);
  }
}

.hero-stats small {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.75rem;
}

/* Document types con badges */
.document-type {
  padding: 30px 20px;
  transition: all 0.3s ease;
  position: relative;
}

.document-type:hover {
  transform: translateY(-5px);
}

.document-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.document-badge .badge {
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Pulse button animation */
.pulse-button {
  animation: pulse 2s infinite;
  position: relative;
  overflow: hidden;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 193, 7, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0);
  }
}

.pulse-button:hover {
  animation: none;
  transform: scale(1.05);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.5rem;
  cursor: pointer;
  animation: bounce 2s infinite;
  transition: all 0.3s ease;
}

.scroll-indicator:hover {
  color: white;
  transform: translateX(-50%) scale(1.2);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Feature icons mejorados */
.feature-icon i {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.card:hover .feature-icon i {
  transform: scale(1.2) translateY(-5px);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.2));
}

/* Document types mejorados */
.document-type {
  transition: all 0.4s ease;
  padding: 30px 20px;
  border-radius: 20px;
  position: relative;
  cursor: pointer;
}

.document-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0.4)
  );
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.document-type:hover {
  transform: translateY(-10px) scale(1.05);
  background: white;
  box-shadow: 0 20px 40px var(--shadow-light);
}

.document-type:hover::before {
  opacity: 1;
}

.document-type:hover i {
  transform: scale(1.2) rotateY(180deg);
}

/* Buttons estilo Enfold */
.btn {
  border-radius: 30px;
  padding: 15px 30px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.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.6s;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.btn:hover::before {
  left: 100%;
}

/* Botones específicos de la marca */
.btn-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(180, 199, 29, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  box-shadow: 0 15px 40px rgba(180, 199, 29, 0.4);
}

.btn-warning {
  background: linear-gradient(135deg, var(--warning-color), #e59400);
  border: none;
  color: white;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background-color: white;
  color: var(--primary-color);
  border-color: white;
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Footer mejorado */
footer {
  background: linear-gradient(145deg, var(--dark-color), #2d3748) !important;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-color),
    transparent
  );
}

.social-links a {
  display: inline-block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(
    145deg,
    rgba(180, 199, 29, 0.1),
    rgba(180, 199, 29, 0.05)
  );
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: linear-gradient(
    145deg,
    var(--primary-color),
    var(--primary-dark)
  );
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(180, 199, 29, 0.4);
}

/* Newsletter form mejorado */
#newsletter-form {
  position: relative;
}

#newsletter-form input {
  border-radius: 25px;
  border: 2px solid rgba(180, 199, 29, 0.3);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 12px 20px;
}

#newsletter-form input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(180, 199, 29, 0.25);
  background: white;
}

#newsletter-form button {
  border-radius: 25px;
  min-width: 50px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  border: none;
  transition: all 0.3s ease;
}

#newsletter-form button:hover {
  background: linear-gradient(
    135deg,
    var(--primary-dark),
    var(--primary-color)
  );
  transform: scale(1.05);
}

/* Utilidades */
.text-primary {
  color: var(--primary-color) !important;
}

.bg-primary {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  ) !important;
}

.bg-light {
  background: linear-gradient(145deg, var(--light-color), #ffffff) !important;
}

/* Separadores de sección estilo Enfold */
.section-divider {
  height: 100px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(180, 199, 29, 0.05),
    transparent
  );
  position: relative;
  overflow: hidden;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 30px;
  background: var(--primary-color);
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(180, 199, 29, 0.6);
  animation: divider-glow 3s ease-in-out infinite alternate;
}

@keyframes divider-glow {
  0% {
    box-shadow: 0 0 20px rgba(180, 199, 29, 0.6);
    height: 30px;
  }
  100% {
    box-shadow: 0 0 40px rgba(180, 199, 29, 0.8);
    height: 40px;
  }
  border-radius: 1px;
}

/* Responsive estilo Enfold */
@media (max-width: 768px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
    margin-top: -70px;
    padding-top: 70px;
  }

  .display-4 {
    font-size: 2.5rem;
  }

  .btn-lg {
    padding: 15px 25px;
    font-size: 1rem;
  }

  .feature-section {
    background-attachment: scroll;
    padding: 80px 0;
  }

  .navbar-brand img {
    height: 40px;
    max-width: 180px;
  }

  .hero-mockup {
    margin-top: 2rem;
    animation: none;
  }

  .service-card:hover {
    transform: translateY(-10px) scale(1.02);
  }

  .card:hover {
    transform: translateY(-8px) scale(1.02);
  }
}

/* Animaciones estilo Enfold */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.card,
.service-card {
  animation: fadeInUp 0.8s ease forwards;
}

.document-type {
  animation: fadeInUp 0.6s ease forwards;
}

/* Estados de carga mejorados */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  margin: -15px 0 0 -15px;
  border: 3px solid var(--primary-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Efectos especiales para destacar la marca */
.navbar-brand:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* Gradiente de marca para elementos especiales */
.brand-gradient {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--accent-color) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll indicators */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: 2rem;
  animation: bounce 2s infinite;
  cursor: pointer;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================= 
   SECCIÓN DE PRECIOS 
   ========================= */

.pricing-section {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.pricing-card {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: white;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card .card-header {
  border: none;
  padding: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card .card-body {
  padding: 2rem 1.5rem;
}

.pricing-amount .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  vertical-align: top;
}

.price .amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.pricing-features {
  margin: 1.5rem 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: #495057;
}

.pricing-card.popular {
  border: 3px solid #ffc107;
  position: relative;
}

.pricing-card.enterprise {
  border: 3px solid #dc3545;
  position: relative;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 10;
}

.enterprise-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  z-index: 10;
}

.contact-cta {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  backdrop-filter: blur(10px);
}

/* Animaciones para precios */
@keyframes priceGlow {
  0%,
  100% {
    text-shadow: 0 0 5px rgba(178, 199, 29, 0.3);
  }
  50% {
    text-shadow: 0 0 15px rgba(178, 199, 29, 0.6);
  }
}

.pricing-card:hover .price .amount {
  animation: priceGlow 2s ease-in-out infinite;
}

/* =========================
   PRICING CARDS COMPACTAS
   ========================= */

.pricing-card-compact {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card-compact:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.pricing-card-compact.featured {
  border-color: #28a745;
  transform: scale(1.05);
}

.pricing-card-compact.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card-compact.enterprise {
  border-color: #343a40;
}

.plan-header {
  color: white;
  text-align: center;
  padding: 8px 12px;
  position: relative;
}

.plan-name {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.plan-content {
  padding: 16px 12px;
  text-align: center;
}

.plan-quantity {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 2px;
}

.plan-unit {
  color: #6c757d;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  display: block;
  margin-bottom: 8px;
}

.plan-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #212529;
  margin-bottom: 12px;
}

.btn-compact {
  display: inline-block;
  background: #f8f9fa;
  color: #495057;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.btn-compact:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-compact.featured {
  background: #28a745;
  color: white;
  border-color: #28a745;
}

.btn-compact.featured:hover {
  background: #1e7e34;
}

.btn-compact.enterprise {
  background: #343a40;
  color: white;
  border-color: #343a40;
}

.btn-compact.enterprise:hover {
  background: #23272b;
}

.popular-tag,
.enterprise-tag {
  position: absolute;
  top: -8px;
  right: 8px;
  background: #ffc107;
  color: #212529;
  font-size: 0.6rem;
  padding: 2px 8px;
  border-radius: 10px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
}

.enterprise-tag {
  background: #dc3545;
  color: white;
}

.pricing-benefits {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
  backdrop-filter: blur(5px);
}

.benefit-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.benefit-item i {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.benefit-item small {
  font-size: 0.75rem;
  font-weight: 500;
  color: #495057;
}

.pricing-contact {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  padding: 12px;
}

.pricing-contact p {
  color: #6c757d;
  font-weight: 500;
}

/* Responsive para pricing compacto */
@media (max-width: 768px) {
  .pricing-card-compact.featured {
    transform: none;
    margin-top: 0;
  }

  .pricing-card-compact.featured:hover {
    transform: translateY(-4px);
  }

  .plan-quantity {
    font-size: 1.5rem;
  }

  .plan-price {
    font-size: 0.9rem;
  }

  .benefit-item i {
    font-size: 1rem;
  }

  .benefit-item small {
    font-size: 0.7rem;
  }
}

/* =========================
   PRICING CARDS FACTURE STYLE
   ========================= */

.pricing-card-facture {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  position: relative;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.pricing-card-facture:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pricing-card-facture.featured-card {
  transform: scale(1.05);
  z-index: 10;
  border: 2px solid #ffc107;
}

.pricing-card-facture.featured-card:hover {
  transform: scale(1.05) translateY(-8px);
}

/* Card Colors - Header Sections */
.teal-card {
  background: linear-gradient(
    to bottom,
    #4ecdc4 0%,
    #4ecdc4 55%,
    white 55%,
    white 100%
  );
}
.blue-card {
  background: linear-gradient(
    to bottom,
    #3498db 0%,
    #3498db 55%,
    white 55%,
    white 100%
  );
}
.yellow-card {
  background: linear-gradient(
    to bottom,
    #f1c40f 0%,
    #f1c40f 55%,
    white 55%,
    white 100%
  );
}
.orange-card {
  background: linear-gradient(
    to bottom,
    #e67e22 0%,
    #e67e22 55%,
    white 55%,
    white 100%
  );
}
.red-card {
  background: linear-gradient(
    to bottom,
    #e74c3c 0%,
    #e74c3c 55%,
    white 55%,
    white 100%
  );
}
.dark-red-card {
  background: linear-gradient(
    to bottom,
    #c0392b 0%,
    #c0392b 55%,
    white 55%,
    white 100%
  );
}

.plan-name-facture {
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 1rem;
  margin: 0;
  background: rgba(0, 0, 0, 0.1);
}

.plan-price-facture {
  color: white;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  margin: 0.5rem 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.plan-quantity-facture {
  color: #495057;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1.5rem 0 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 0.5rem;
}

/* Buttons Facture Style */
.btn-facture {
  display: block;
  width: calc(100% - 2rem);
  margin: 0 1rem 1rem 1rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  color: white;
}

.btn-facture:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  color: white;
}

/* Button Colors */
.teal-btn {
  background: #4ecdc4;
}
.teal-btn:hover {
  background: #42b8b1;
}

.blue-btn {
  background: #3498db;
}
.blue-btn:hover {
  background: #2980b9;
}

.yellow-btn {
  background: #f1c40f;
}
.yellow-btn:hover {
  background: #e6b800;
}

.orange-btn {
  background: #e67e22;
}
.orange-btn:hover {
  background: #d35400;
}

.red-btn {
  background: #e74c3c;
}
.red-btn:hover {
  background: #c0392b;
}

.dark-red-btn {
  background: #c0392b;
}
.dark-red-btn:hover {
  background: #a93226;
}

/* Responsive Facture */
@media (max-width: 768px) {
  .pricing-card-facture {
    margin-bottom: 1rem;
    min-height: 180px;
  }

  .pricing-card-facture.featured-card {
    transform: none;
    margin-top: 0;
  }

  .pricing-card-facture.featured-card:hover {
    transform: translateY(-8px);
  }

  .plan-price-facture {
    font-size: 2rem;
  }

  .plan-name-facture {
    font-size: 1rem;
    padding: 0.75rem;
  }
}

/* Card Specific Hover Effects */
.teal-card:hover {
  box-shadow: 0 15px 35px rgba(78, 205, 196, 0.3);
}

.blue-card:hover {
  box-shadow: 0 15px 35px rgba(52, 152, 219, 0.3);
}

.yellow-card:hover {
  box-shadow: 0 15px 35px rgba(241, 196, 15, 0.3);
}

.orange-card:hover {
  box-shadow: 0 15px 35px rgba(230, 126, 34, 0.3);
}

.red-card:hover {
  box-shadow: 0 15px 35px rgba(231, 76, 60, 0.3);
}

.dark-red-card:hover {
  box-shadow: 0 15px 35px rgba(192, 57, 43, 0.3);
}

/* =========================
   PRICING CARDS PRO VERSION (BACKUP)
   ========================= */

.pricing-card-pro {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 2px solid transparent;
  position: relative;
  transform: translateY(0);
}

.pricing-card-pro:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-color);
}

.pricing-card-pro.featured-pro {
  border-color: #28a745;
  transform: scale(1.05) translateY(-10px);
  z-index: 10;
}

.pricing-card-pro.featured-pro:hover {
  transform: scale(1.07) translateY(-20px);
}

.pricing-card-pro.enterprise-pro {
  border-color: #343a40;
}

/* Plan Headers with Gradients */
.plan-header-pro {
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;
}

.plan-header-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%,
    rgba(255, 255, 255, 0.1) 100%
  );
  animation: shimmerEffect 3s ease-in-out infinite;
}

.teal-gradient {
  background: linear-gradient(135deg, #00bed6, #0093c9);
}
.orange-gradient {
  background: linear-gradient(135deg, #ff8300, #ffb600);
}
.green-gradient {
  background: linear-gradient(135deg, #28a745, #20c997);
}
.purple-gradient {
  background: linear-gradient(135deg, #6f42c1, #8b5cf6);
}
.red-gradient {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
}
.dark-gradient {
  background: linear-gradient(135deg, #343a40, #495057);
}

.plan-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.5rem;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.plan-name-pro {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem 0 0.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-subtitle {
  font-size: 0.8rem;
  opacity: 0.9;
  font-weight: 400;
  margin: 0;
}

/* Plan Content */
.plan-content-pro {
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.plan-quantity-pro {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.plan-unit-pro {
  color: #6c757d;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

/* Price Wrapper */
.plan-price-wrapper {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
}

.plan-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: #495057;
}

.plan-price-pro {
  font-size: 2rem;
  font-weight: 800;
  color: #212529;
  line-height: 1;
}

.plan-period {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.price-per-cfdi {
  font-size: 0.75rem;
  color: #28a745;
  font-weight: 600;
  background: rgba(40, 167, 69, 0.1);
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.best-value {
  font-size: 0.7rem;
  color: #ffc107;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 193, 7, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0.75rem;
  animation: glow 2s ease-in-out infinite alternate;
}

/* Plan Features */
.plan-features {
  margin: 1rem 0 1.5rem;
  text-align: left;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #495057;
}

.feature-item i {
  color: #28a745;
  font-size: 0.75rem;
  margin-right: 0.5rem;
  width: 12px;
  flex-shrink: 0;
}

/* Feature Items para sección de características adicionales */
.feature-item.text-center {
  display: block !important;
  padding: 1.5rem 1rem;
  transition: all 0.3s ease;
}

.feature-item.text-center:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item .feature-icon {
  display: block;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item .feature-icon i {
  transition: all 0.3s ease;
}

.feature-item:hover .feature-icon i {
  transform: scale(1.1);
}

.feature-item h5 {
  margin: 1rem 0 0.5rem 0;
  color: #2c3e50;
}

.feature-item p {
  margin: 0;
  line-height: 1.4;
}

/* Avatar para testimonios */
.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #b4c71d, #00a8cc);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 18px;
  margin-right: 15px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

/* Testimonial cards mejoradas */
.testimonial-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 60px;
  color: #b4c71d;
  opacity: 0.3;
  font-family: "Times New Roman", serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

/* Carrusel de testimonios */
.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(180, 199, 29, 0.9);
  border: none;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(180, 199, 29, 1);
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b4c71d;
  border: none;
  margin: 0 5px;
}

/* Buttons Pro */
.btn-pro {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  width: 100%;
  text-align: center;
}

.btn-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s;
}

.btn-pro:hover::before {
  left: 100%;
}

.btn-pro:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

/* Button Colors */
.btn-pro.teal {
  background: #00bed6;
  color: white;
}
.btn-pro.teal:hover {
  background: #0093c9;
  color: white;
}

.btn-pro.orange {
  background: #ff8300;
  color: white;
}
.btn-pro.orange:hover {
  background: #ffb600;
  color: white;
}

.btn-pro.green {
  background: #28a745;
  color: white;
}
.btn-pro.green:hover {
  background: #20c997;
  color: white;
}

.btn-pro.purple {
  background: #6f42c1;
  color: white;
}
.btn-pro.purple:hover {
  background: #8b5cf6;
  color: white;
}

.btn-pro.red {
  background: #dc3545;
  color: white;
}
.btn-pro.red:hover {
  background: #e74c3c;
  color: white;
}

.btn-pro.dark {
  background: #343a40;
  color: white;
}
.btn-pro.dark:hover {
  background: #495057;
  color: white;
}

.btn-pro.featured-btn {
  background: linear-gradient(135deg, #28a745, #20c997);
  box-shadow: 0 4px 15px rgba(40, 167, 69, 0.4);
  animation: pulse 2s infinite;
}

.btn-pro.featured-btn:hover {
  background: linear-gradient(135deg, #20c997, #28a745);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.6);
}

/* Tags */
.popular-tag-pro,
.enterprise-tag-pro {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ffc107, #fd7e14);
  color: #212529;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 20;
  box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
  animation: tagFloat 3s ease-in-out infinite;
}

.enterprise-tag-pro {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
  color: white;
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.4);
}

/* Animations */
@keyframes shimmerEffect {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(300%) rotate(45deg);
  }
}

@keyframes tagFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0px);
  }
  50% {
    transform: translateX(-50%) translateY(-3px);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.3);
  }
  100% {
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.6);
  }
}

/* Responsive Pro */
@media (max-width: 1200px) {
  .pricing-card-pro.featured-pro {
    transform: none;
    margin-top: 0;
  }

  .pricing-card-pro.featured-pro:hover {
    transform: translateY(-15px) scale(1.02);
  }
}

@media (max-width: 768px) {
  .plan-quantity-pro {
    font-size: 2rem;
  }

  .plan-price-pro {
    font-size: 1.5rem;
  }

  .plan-content-pro {
    padding: 1rem;
  }

  .plan-header-pro {
    padding: 1rem 0.5rem 0.75rem;
  }

  .plan-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Card Hover Effects */
.pricing-card-pro[data-plan="ejecutivo"]:hover {
  box-shadow: 0 25px 50px rgba(40, 167, 69, 0.3);
}

.pricing-card-pro[data-plan="basico"]:hover {
  box-shadow: 0 25px 50px rgba(0, 190, 214, 0.3);
}

.pricing-card-pro[data-plan="emprendedor"]:hover {
  box-shadow: 0 25px 50px rgba(255, 131, 0, 0.3);
}

.pricing-card-pro[data-plan="pyme"]:hover {
  box-shadow: 0 25px 50px rgba(111, 66, 193, 0.3);
}

.pricing-card-pro[data-plan="pro"]:hover {
  box-shadow: 0 25px 50px rgba(220, 53, 69, 0.3);
}

.pricing-card-pro[data-plan="super-pro"]:hover {
  box-shadow: 0 25px 50px rgba(52, 58, 64, 0.3);
}

/* =========================
   TESTIMONIALS SECTION
   ========================= */

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(180, 199, 29, 0.1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-color);
}

.testimonial-card:hover::before {
  transform: scaleX(1);
}

.testimonial-content {
  position: relative;
  z-index: 2;
}

.stars {
  display: flex;
  gap: 4px;
  justify-content: flex-start;
}

.stars i {
  font-size: 1rem;
  filter: drop-shadow(0 2px 4px rgba(255, 193, 7, 0.3));
}

.blockquote {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
  color: #495057;
  position: relative;
}

.blockquote::before {
  content: '"';
  font-size: 4rem;
  color: var(--primary-color);
  opacity: 0.2;
  position: absolute;
  top: -20px;
  left: -10px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(180, 199, 29, 0.2);
}

.author-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 15px rgba(180, 199, 29, 0.3);
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.testimonial-author h6 {
  font-weight: 700;
  color: #212529;
  margin-bottom: 2px;
}

.testimonials-stats {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9),
    rgba(248, 249, 250, 0.8)
  );
  border-radius: 20px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(180, 199, 29, 0.1);
}

.testimonials-stats .stat-item {
  transition: all 0.3s ease;
}

.testimonials-stats .stat-item:hover {
  transform: translateY(-5px);
}

.testimonials-stats h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Responsive para testimonials */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 1.5rem;
    margin-bottom: 1rem;
  }

  .blockquote {
    font-size: 0.9rem;
  }

  .author-photo {
    width: 50px;
    height: 50px;
  }

  .testimonials-stats {
    padding: 1.5rem;
  }

  .testimonials-stats h3 {
    font-size: 1.5rem;
  }

  .testimonials-stats .stat-item {
    margin-bottom: 1rem;
  }
}

/* Animaciones para testimonials */
@keyframes testimonialFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.testimonial-card:nth-child(even) {
  animation: testimonialFloat 6s ease-in-out infinite;
}

.testimonial-card:nth-child(odd) {
  animation: testimonialFloat 6s ease-in-out infinite reverse;
}

@media (prefers-reduced-motion: reduce) {
  .testimonial-card:nth-child(even),
  .testimonial-card:nth-child(odd) {
    animation: none;
  }
}
