/* BLACKBELT Hosting WordPress - Styles */
:root {
  --fondo-logo: #030005;
  --color-black: #000;
  --color-bg: #111;
  --color-morado: #8400ff;
  --color-morado-oscuro: #530993;
  --color-rosa: #ff005a;
  --color-white: #bfbfbf;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Typex";
  src: url("/assets/font/Typex.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Typex", "Courier New", monospace;
  background-color: var(--color-black);
  color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
  /* Fade-in global de la página */
  opacity: 0;
  animation: pageFadeIn 400ms ease-out forwards;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  background-color: var(--color-bg);
  padding: 20px;
  border: 6px solid transparent;
  border-image: linear-gradient(var(--color-morado), var(--color-black)) 1;
  border-image-slice: 1;
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 0px !important;
  padding-bottom: 0px !important;
}

/* Fade-in global */
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Header Styles */
.main-header {
  text-align: left;
  margin-bottom: 30px;
}

.titulo-principal {
  font-family: "Typex", "Courier New", monospace;
  font-size: clamp(30px, 8vw, 40px);
  font-weight: 900;
  color: var(--color-white);
  text-transform: uppercase;
  text-shadow: -1px -1px 0px var(--color-morado), 1px 1px 0px var(--color-rosa);
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -2px;
}

.subtitle {
  color: var(--color-white);
  text-shadow: -1px -1px 0px var(--color-morado), 1px 1px 0px var(--color-rosa);
  margin-bottom: 20px;
  font-size: clamp(16px, 4vw, 24px);
}

/* Intro Section */
.intro-section {
  margin-bottom: 40px;
}

.tagline-container {
  margin-bottom: 30px;
  border-left: 3px solid var(--color-rosa);
  padding-left: 15px;
}

.tagline {
  font-size: clamp(18px, 5vw, 24px);
  margin-bottom: 15px;
  line-height: 1.4;
  color: var(--color-white);
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-white);
}

/* Botón de cierre superior derecho */
.close {
  color: var(--color-white);
  font-size: 2rem;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  transition: color 0.3s ease;
  text-decoration: none;
  text-shadow: -1px -1px 0px var(--color-morado), 1px 1px 0px var(--color-rosa);
  line-height: 1;
}

/* Footer */
.site-footer {
  margin-top: auto;
  background: none;
  color: var(--color-morado-oscuro);
  text-align: center;
  font-size: 13px;
}

.site-footer a {
  color: inherit;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-morado);
}

.close:hover,
.close:focus {
  color: var(--color-rosa);
  outline: none;
}

.description strong {
  background: linear-gradient(to right, var(--color-morado), var(--color-rosa));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

/* Stats Container */
.stats-container {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  background: linear-gradient(
    45deg,
    rgba(132, 0, 255, 0.3),
    rgba(255, 0, 89, 0.3),
    rgba(132, 0, 255, 0.3),
    rgba(255, 0, 89, 0.3)
  );
  border-radius: 8px;
  padding: 20px;
  gap: 15px;
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

.stat-item {
  text-align: center;
  flex: 1;
  padding: 15px;
}

.stat-number {
  font-size: clamp(24px, 6vw, 36px);
  font-weight: bold;
  margin-bottom: 5px;
  background: linear-gradient(to right, var(--color-morado), var(--color-rosa));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 14px;
  color: var(--color-white);
}

/* Services Navigation */
.services-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid rgba(132, 0, 255, 0.3);
  margin-bottom: 30px;
  gap: 10px;
}

.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px 10px;
  flex: 1;
  text-align: center;
  color: var(--color-white);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: clamp(12px, 3vw, 16px);
}

.service-tab:hover {
  background-color: rgba(132, 0, 255, 0.1);
}

.service-tab.active {
  background-color: rgba(132, 0, 255, 0.2);
}

.service-tab.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--color-morado), var(--color-rosa));
}

.icon-wrapper {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--color-morado), var(--color-rosa));
}

.service-icon {
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Service Icons */
.hosting-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M4 1h16c1.1 0 2 .9 2 2v3c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2V3c0-1.1.9-2 2-2zm0 7h16c1.1 0 2 .9 2 2v3c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2zm0 7h16c1.1 0 2 .9 2 2v3c0 1.1-.9 2-2 2H4c-1.1 0-2-.9-2-2v-3c0-1.1.9-2 2-2zM6 4h2v2H6V4zm0 7h2v2H6v-2zm0 7h2v2H6v-2zm12 0h-2v2h2v-2zm0-7h-2v2h2v-2zm0-7h-2v2h2V4z'/%3E%3C/svg%3E");
}

.plug-icon {
  /* Icono de pieza de rompecabezas para Plugins */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M20.5 11H19V7c0-1.1-.9-2-2-2h-4V3.5C13 2.12 11.88 1 10.5 1S8 2.12 8 3.5V5H4c-1.1 0-1.99.9-1.99 2v3.8H3.5c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7H2V20c0 1.1.9 2 2 2h3.8v-1.5c0-1.49 1.21-2.7 2.7-2.7 1.49 0 2.7 1.21 2.7 2.7V22H17c1.1 0 2-.9 2-2v-4h1.5c1.38 0 2.5-1.12 2.5-2.5S21.88 11 20.5 11z'/%3E%3C/svg%3E");
}

.maintenance-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19.14 12.94c.04-.3.06-.61.06-.94s-.02-.64-.06-.94l2.03-1.58c.18-.14.23-.4.11-.61l-1.92-3.32c-.12-.21-.37-.29-.58-.22l-2.39.96c-.5-.38-1.04-.72-1.62-1.01l-.36-2.55C14.31 2.1 14.12 2 13.92 2h-3.84c-.2 0-.39.1-.49.28l-.36 2.55c-.58.29-1.12.63-1.62 1.01l-2.39-.96c-.21-.08-.46.01-.58.22l-1.92 3.32c-.12.21-.07.47.11.61l2.03 1.58c-.04.3-.06.61-.06.94s.02.64.06.94l-2.03 1.58c-.18.14-.23.4-.11.61l1.92 3.32c.12.21.37.29.58.22l2.39-.96c.5.38 1.04.72 1.62 1.01l.36 2.55c.1.18.29.28.49.28h3.84c.2 0 .39-.1.49-.28l.36-2.55c.58-.29 1.12-.63 1.62-1.01l2.39.96c.21.08.46-.01.58-.22l1.92-3.32c.12-.21.07-.47-.11-.61l-2.03-1.58zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'/%3E%3C/svg%3E");
}

/* Service Content */
.service-content-container {
  position: relative;
}

.service-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-content.active {
  display: block;
  opacity: 1;
}

.service-header {
  margin-bottom: 25px;
  text-align: center;
}

.service-header h3 {
  color: var(--color-white);
  text-shadow: -1px -1px 0px var(--color-morado), 1px 1px 0px var(--color-rosa);
  margin-bottom: 10px;
  font-size: clamp(20px, 5vw, 28px);
}

.service-subtitle {
  color: var(--color-white);
  font-size: 18px;
  opacity: 0.9;
}

/* Service Cards */
.service-details {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}

.service-column {
  flex: 1;
  min-width: 250px;
}

.service-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 1px solid rgba(132, 0, 255, 0.3);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--color-rosa);
}

.card-header {
  background: linear-gradient(135deg, var(--color-morado), var(--color-rosa));
  padding: 15px;
  display: flex;
  align-items: center;
}

.card-header h4 {
  color: white;
  margin: 0;
  font-size: clamp(14px, 4vw, 18px);
}

.card-icon {
  width: 30px;
  height: 30px;
  margin-right: 10px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.performance-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M3 17h18v2H3v-2zm4-3l3 3 5-5 3 3 4-4V6l-4 4-3-3-5 5-3-3-4 4v2l4-4z'/%3E%3C/svg%3E");
}

.security-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z'/%3E%3C/svg%3E");
}

.management-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M19.14 12.94c.04-.3.06-.61.06-.94s-.02-.64-.06-.94l2.03-1.58c.18-.14.23-.4.11-.61l-1.92-3.32c-.12-.21-.37-.29-.58-.22l-2.39.96c-.5-.38-1.04-.72-1.62-1.01l-.36-2.55C14.31 2.1 14.12 2 13.92 2h-3.84c-.2 0-.39.1-.49.28l-.36 2.55c-.58.29-1.12.63-1.62 1.01l-2.39-.96c-.21-.08-.46.01-.58.22l-1.92 3.32c-.12.21-.07.47.11.61l2.03 1.58c-.04.3-.06.61-.06.94s.02.64.06.94l-2.03 1.58c-.18.14-.23.4-.11.61l1.92 3.32c.12.21.37.29.58.22l2.39-.96c.5.38 1.04.72 1.62 1.01l.36 2.55c.1.18.29.28.49.28h3.84c.2 0 .39-.1.49-.28l.36-2.55c.58-.29 1.12-.63 1.62-1.01l2.39.96c.21.08.46-.01.58-.22l1.92-3.32c.12-.21.07-.47-.11-.61l-2.03-1.58zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z'/%3E%3C/svg%3E");
}

.development-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8.293 6.293L2.586 12l5.707 5.707 1.414-1.414L5.414 12l4.293-4.293zm7.414 11.414L21.414 12l-5.707-5.707-1.414 1.414L18.586 12l-4.293 4.293z'/%3E%3C/svg%3E");
}

.card-body {
  padding: 15px;
}

.card-body p {
  margin-bottom: 15px;
  color: var(--color-white);
  font-size: 14px;
}

.features-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--color-white);
  font-size: 14px;
}

.features-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238400ff' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Plugin Services */
.plugin-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.plugin-card {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(132, 0, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plugin-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--color-rosa);
}

.plugin-icon {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--color-morado), var(--color-rosa));
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
}

.custom-plugin-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M14,12H10V10H14M14,16H10V14H14M20,8H17.19C16.74,7.22 16.12,6.55 15.37,6.04L17,4.41L15.59,3L13.42,5.17C12.96,5.06 12.5,5 12,5C11.5,5 11.04,5.06 10.59,5.17L8.41,3L7,4.41L8.62,6.04C7.88,6.55 7.26,7.22 6.81,8H4V10H6.09C6.04,10.33 6,10.66 6,11V12H4V14H6V15C6,15.34 6.04,15.67 6.09,16H4V18H6.81C7.85,19.79 9.78,21 12,21C14.22,21 16.15,19.79 17.19,18H20V16H17.91C17.96,15.67 18,15.34 18,15V14H20V12H18V11C18,10.66 17.96,10.33 17.91,10H20V8Z'/%3E%3C/svg%3E");
}

.integration-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M8,3A2,2 0 0,0 6,5V9A2,2 0 0,1 4,11H3V13H4A2,2 0 0,1 6,15V19A2,2 0 0,0 8,21H10V19H8V14A2,2 0 0,0 6,12A2,2 0 0,0 8,10V5H10V3H8M16,3A2,2 0 0,1 18,5V9A2,2 0 0,0 20,11H21V13H20A2,2 0 0,0 18,15V19A2,2 0 0,1 16,21H14V19H16V14A2,2 0 0,1 18,12A2,2 0 0,1 16,10V5H14V3H16Z'/%3E%3C/svg%3E");
}

.optimization-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 24 24'%3E%3Cpath d='M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.22,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.22,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.68 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z'/%3E%3C/svg%3E");
}

.plugin-card h4 {
  color: var(--color-white);
  margin-bottom: 15px;
  font-size: clamp(16px, 4vw, 20px);
}

.plugin-card p {
  color: var(--color-white);
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.plugin-features {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.plugin-features li {
  padding: 5px 0 5px 25px;
  position: relative;
  color: var(--color-white);
  font-size: 14px;
}

.plugin-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238400ff' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Maintenance Plans */
.maintenance-plans {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.plan-card {
  flex: 1;
  min-width: 220px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(132, 0, 255, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  border-color: var(--color-rosa);
}

.plan-card.featured {
  border-color: var(--color-rosa);
  box-shadow: 0 5px 15px rgba(255, 0, 90, 0.2);
}

.plan-tag {
  position: absolute;
  top: 10px;
  right: -30px;
  background: linear-gradient(90deg, var(--color-morado), var(--color-rosa));
  color: white;
  padding: 5px 30px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
}

.plan-header {
  margin-bottom: 20px;
  text-align: center;
}

.plan-header h5 {
  color: var(--color-white);
  margin-bottom: 10px;
  font-size: clamp(16px, 4vw, 20px);
}

.plan-price {
  font-size: clamp(20px, 5vw, 28px);
  font-weight: bold;
  color: white;
}

.plan-price span {
  font-size: 14px;
  opacity: 0.7;
}

.plan-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.plan-features li {
  padding: 8px 0 8px 25px;
  position: relative;
  color: var(--color-white);
  font-size: 14px;
}

.plan-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238400ff' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.plan-button {
  display: block;
  text-align: center;
  width: 100%;
  background-color: var(--color-morado);
  color: var(--color-white);
  padding: 12px 20px;
  border: 1px solid var(--color-rosa);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.plan-button:hover {
  background-color: var(--color-rosa);
  border-color: var(--color-morado);
}

/* Why Choose Section */
.why-choose-section {
  margin: 40px 0;
}

.why-choose-section h2 {
  color: var(--color-white);
  text-shadow: -1px -1px 0px var(--color-morado), 1px 1px 0px var(--color-rosa);
  margin-bottom: 30px;
  text-align: center;
  font-size: clamp(20px, 5vw, 28px);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  align-items: stretch;
}

.benefit-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  align-items: start;
  gap: 16px;
  background-color: rgba(0, 0, 0, 0.15);
  padding: 24px;
  border-radius: 12px;
  border: 2px solid rgba(132, 0, 255, 0.25);
  transition: transform 0.2s ease, border-color 0.2s ease,
    background-color 0.2s ease;
}

.benefit-icon {
  grid-area: icon;
  width: 44px;
  height: 44px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
}

.expertise-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238400ff' viewBox='0 0 24 24'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
}

.support-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238400ff' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/%3E%3C/svg%3E");
}

.performance-icon-morado {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238400ff' viewBox='0 0 24 24'%3E%3Cpath d='M3 17h18v2H3v-2zm4-3l3 3 5-5 3 3 4-4V6l-4 4-3-3-5 5-3-3-4 4v2l4-4z'/%3E%3C/svg%3E");
}

.custom-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%238400ff' viewBox='0 0 24 24'%3E%3Cpath d='M12,15.5A3.5,3.5 0 0,1 8.5,12A3.5,3.5 0 0,1 12,8.5A3.5,3.5 0 0,1 15.5,12A3.5,3.5 0 0,1 12,15.5M19.43,12.97C19.47,12.65 19.5,12.33 19.5,12C19.5,11.67 19.47,11.34 19.43,11L21.54,9.37C21.73,9.22 21.78,8.95 21.66,8.73L19.66,5.27C19.54,5.05 19.27,4.96 19.05,5.05L16.56,6.05C16.04,5.66 15.5,5.32 14.87,5.07L14.5,2.42C14.46,2.18 14.25,2 14,2H10C9.75,2 9.54,2.18 9.5,2.42L9.13,5.07C8.5,5.32 7.96,5.66 7.44,6.05L4.95,5.05C4.73,4.96 4.46,5.05 4.34,5.27L2.34,8.73C2.22,8.95 2.27,9.22 2.46,9.37L4.57,11C4.53,11.34 4.5,11.67 4.5,12C4.5,12.33 4.53,12.65 4.57,12.97L2.46,14.63C2.27,14.78 2.22,15.05 2.34,15.27L4.34,18.73C4.46,18.95 4.73,19.03 4.95,18.95L7.44,17.94C7.96,18.34 8.5,18.68 9.13,18.93L9.5,21.58C9.54,21.82 9.75,22 10,22H14C14.25,22 14.46,21.82 14.5,21.58L14.87,18.93C15.5,18.68 16.04,18.34 16.56,17.94L19.05,18.95C19.27,19.03 19.54,18.95 19.66,18.73L21.66,15.27C21.78,15.05 21.73,14.78 21.54,14.63L19.43,12.97Z'/%3E%3C/svg%3E");
}

.benefit-item h4 {
  grid-area: title;
  color: var(--color-white);
  margin: 2px 0 6px;
  font-size: clamp(16px, 3.2vw, 22px);
  line-height: 1.2;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefit-item p {
  grid-area: text;
  color: var(--color-white);
  font-size: clamp(13px, 2.6vw, 16px);
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
}

.chevron-morado {
  color: var(--color-morado);
  margin-right: 4px;
}

/* CTA Section */
.cta-section {
  margin: 40px 0;
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
}

.cta-content h2 {
  color: var(--color-white);
  text-shadow: -1px -1px 0px var(--color-morado), 1px 1px 0px var(--color-rosa);
  margin-bottom: 15px;
  font-size: clamp(20px, 5vw, 28px);
}

.cta-content p {
  color: var(--color-white);
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.5;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.boton {
  color: var(--color-white);
  background-color: var(--color-morado);
  border: 1px solid var(--color-rosa);
  border-radius: 5px;
  cursor: pointer;
  padding: 12px 20px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  min-width: 180px;
}

.boton:hover {
  background-color: var(--color-rosa);
  border-color: var(--color-morado);
  color: var(--color-white);
}

.boton.secondary {
  background-color: transparent;
  border: 2px solid var(--color-morado);
}

.boton.secondary:hover {
  background-color: var(--color-morado);
  border-color: var(--color-rosa);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .container {
    width: 98%;
    padding: 15px;
  }

  .stats-container {
    flex-direction: column;
    gap: 10px;
  }

  .services-nav {
    flex-direction: column;
    gap: 5px;
  }

  .service-tab {
    flex-direction: row;
    text-align: left;
    padding: 10px;
  }

  .service-tab span {
    margin-left: 10px;
  }

  .service-details {
    flex-direction: column;
  }

  .maintenance-plans {
    flex-direction: column;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
  .benefit-item {
    grid-template-columns: 44px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    padding: 18px;
  }
  .benefit-item h4 {
    font-size: 16px;
  }
  .benefit-item p {
    font-size: 13px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .boton {
    width: 100%;
    max-width: 300px;
  }
}

@media screen and (max-width: 480px) {
  .titulo-principal {
    font-size: 24px;
    letter-spacing: -1px;
  }

  .service-tab {
    padding: 8px;
  }

  .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .service-icon {
    width: 20px;
    height: 20px;
  }

  .stat-number {
    font-size: 24px;
  }

  .plugin-services {
    grid-template-columns: 1fr;
  }
}
/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Animación de contadores eliminada */

/* Wave effect para enlaces */
.wave-link {
  background: linear-gradient(to right, var(--color-morado), var(--color-rosa));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  -webkit-text-fill-color: var(--color-morado);
}

.wave-link:hover {
  background: linear-gradient(
    to right,
    var(--color-morado),
    var(--color-rosa),
    var(--color-morado),
    var(--color-rosa)
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: waveAnimation 1s linear;
}

@keyframes waveAnimation {
  0% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Efectos de estrellas de fondo */
.container::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      2px 2px at 20px 30px,
      var(--color-white),
      transparent
    ),
    radial-gradient(2px 2px at 40px 70px, var(--color-morado), transparent),
    radial-gradient(1px 1px at 90px 40px, var(--color-rosa), transparent),
    radial-gradient(1px 1px at 130px 80px, var(--color-white), transparent),
    radial-gradient(2px 2px at 160px 30px, var(--color-morado), transparent);
  background-repeat: repeat;
  background-size: 200px 100px;
  animation: twinkle 3s linear infinite;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
  }
  50% {
    opacity: 0.1;
  }
}

/* Animaciones de entrada eliminadas */

/* Keyframes fadeIn eliminados */

/* Aplicar animaciones a elementos: eliminado */

/* Animaciones hover avanzadas para iconos */
.icon-wrapper {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-tab:hover .icon-wrapper {
  transform: translateY(-5px) rotate(5deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(132, 0, 255, 0.3);
}

.plugin-icon {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.plugin-card:hover .plugin-icon {
  transform: rotateY(180deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 0, 90, 0.4);
}

.card-icon {
  transition: all 0.3s ease;
}

.service-card:hover .card-icon {
  transform: rotate(360deg) scale(1.2);
}

/* Estados focus para accesibilidad */
.service-tab:focus,
.boton:focus,
.plan-button:focus {
  outline: 2px solid var(--color-rosa);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 0, 90, 0.2);
}

/* Efectos de gradiente animado */
@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.cta-section {
  background: linear-gradient(
    45deg,
    rgba(132, 0, 255, 0.3),
    rgba(255, 0, 89, 0.3),
    rgba(132, 0, 255, 0.3),
    rgba(255, 0, 89, 0.3)
  );
  background-size: 200% 200%;
  animation: gradientShift 4s ease infinite;
}

/* Transiciones suaves entre contenido de pestañas */
.service-content {
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: translateY(20px);
}

.service-content.active {
  transform: translateY(0);
}

/* Estados de loading/transición */
.service-content-container {
  position: relative;
}

.service-content-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-morado),
    var(--color-rosa),
    transparent
  );
  transform: translateX(-100%);
  animation: loading 2s ease-in-out infinite;
  opacity: 0;
}

.service-content-container.loading::before {
  opacity: 1;
}

@keyframes loading {
  0% {
    transform: translateX(-100%);
  }
  50% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Efectos de pulsado para elementos destacados */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(132, 0, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(132, 0, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(132, 0, 255, 0);
  }
}

.plan-card.featured {
  animation: pulse 2s infinite;
}

/* Efecto typewriter eliminado */

.titulo-principal {
  position: relative;
  width: fit-content;
}

/* Animaciones para beneficios: eliminado */

/* Hover effects mejorados */
.benefit-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 0, 90, 0.35);
  background-color: rgba(132, 0, 255, 0.08);
}

.benefit-icon {
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.benefit-item:hover .benefit-icon {
  transform: rotate(360deg) scale(1.2);
  filter: drop-shadow(0 5px 10px rgba(132, 0, 255, 0.5));
}

/* Efectos de entrada escalonados: eliminado */

/* Parallax effect ligero */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.icon-wrapper {
  animation: float 3s ease-in-out infinite;
}

.icon-wrapper:nth-child(2n) {
  animation-delay: -1.5s;
}

/* Efectos de resplandor en hover */
.service-card:hover,
.plugin-card:hover,
.plan-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 40px rgba(132, 0, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* Animación de aparición suave para toda la página: eliminado */

/* Responsive para animaciones */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .titulo-principal {
    animation: none;
    border-right: none;
  }
  /* Evitar parpadeo si reduce motion está activo */
  body {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Performance optimizations */
.service-card,
.plugin-card,
.plan-card,
.benefit-item {
  will-change: transform;
}

.icon-wrapper,
.plugin-icon,
.card-icon {
  will-change: transform;
}
