/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #ff3333;
  --primary-dark: #cc0000;
  --secondary-color: #1f1f1f;
  --accent-color: #ff4444;
  --text-primary: #ffffff;
  --text-secondary: #aaaaaa;
  --text-light: #ffffff;
  --text-dark: #000000;
  --bg-primary: #0f0f0f;
  --bg-secondary: #1a1a1a;
  --bg-dark: #080808;
  --bg-card: #222222;
  --border-color: #333333;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.7);
  --shadow-red: 0 4px 20px rgba(255, 51, 51, 0.4);
  --gradient-primary: linear-gradient(135deg, #ff3333, #cc0000);
  --gradient-dark: linear-gradient(135deg, #1f1f1f, #080808);
  --gradient-bg: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  --gradient-red-glow: radial-gradient(
    circle,
    rgba(255, 51, 51, 0.1) 0%,
    transparent 70%
  );
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-primary);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo .logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.logo-text {
  display: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  color: var(--primary-color);
}

.btn-tienda {
  background: var(--gradient-primary);
  color: var(--text-light) !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-panel {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color) !important;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-panel:hover {
  background: rgba(255, 51, 51, 0.1);
}

.btn-tienda:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-tienda::after {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: var(--gradient-bg);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(139, 0, 0, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-container:has(.hero-content:only-child) {
  grid-template-columns: 1fr;
  text-align: center;
  max-width: 800px;
}

.hero-content:only-child {
  grid-column: 1 / -1;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.highlight {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-light);
  background: rgba(255, 51, 51, 0.15);
  border: 1px solid rgba(255, 51, 51, 0.4);
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 1.5rem;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-highlight {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hero-highlight i {
  color: var(--primary-color);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}

.btn-secondary:hover {
  background: var(--secondary-color);
  color: var(--text-light);
  border-color: var(--secondary-color);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: var(--text-light);
}

/* Minecraft Server Preview */
.minecraft-server-preview {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.server-window {
  background: var(--bg-dark);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.server-window:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.window-header {
  background: #1d1d1d;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #333333;
}

.window-controls {
  display: flex;
  gap: 8px;
}

.control {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.control.close {
  background: #ff5f57;
}

.control.minimize {
  background: #ffbd2e;
}

.control.maximize {
  background: #28ca42;
}

.window-title {
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
}

.server-content {
  padding: 20px;
  font-family: "Courier New", monospace;
  font-size: 0.85rem;
  line-height: 1.4;
}

.server-line {
  color: #aaaaaa;
  margin-bottom: 4px;
  opacity: 0;
  animation: fadeInUp 0.5s ease forwards;
}

.server-line:nth-child(1) {
  animation-delay: 0.5s;
}
.server-line:nth-child(2) {
  animation-delay: 1s;
}
.server-line:nth-child(3) {
  animation-delay: 1.5s;
}
.server-line:nth-child(4) {
  animation-delay: 2s;
}
.server-line:nth-child(5) {
  animation-delay: 2.5s;
}
.server-line:nth-child(6) {
  animation-delay: 3s;
}

.server-line.active {
  color: #4ade80;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Features Section */
.features {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.features::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(139, 0, 0, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.feature-card:hover::before {
  transform: translateX(0);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.feature-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.feature-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: var(--bg-primary);
}

.pricing-header-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 51, 51, 0.15);
  border: 1px solid rgba(255, 51, 51, 0.4);
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  margin-top: 1rem;
}

.billing-toggle {
  margin: 2.5rem 0 1rem;
  text-align: center;
}

.billing-label {
  display: block;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.billing-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.billing-option {
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-secondary);
  padding: 0.6rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.billing-option:hover {
  color: var(--text-light);
  border-color: var(--primary-color);
}

.billing-option.active {
  background: var(--gradient-primary);
  color: var(--text-light);
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

.tier-note {
  margin: 1.5rem auto 0;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.tier-note strong {
  color: var(--text-light);
}

.tier-note-title {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tier-note-title i {
  color: var(--primary-color);
}

.tier-toggle {
  margin: 1.75rem auto 0;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.02);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  justify-content: center;
}

.tier-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.tier-label i {
  color: var(--primary-color);
}

.tier-options {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 0.4rem;
}

.tier-option {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-weight: 600;
  padding: 0.75rem 1.6rem;
  border-radius: 12px;
  min-width: 140px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tier-option:hover {
  color: var(--text-light);
}

.tier-option.active {
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.tier-option.active[data-tier="standard"] {
  background: linear-gradient(120deg, #1b6bff, #29b7ff);
}

.tier-option.active[data-tier="extreme"] {
  background: linear-gradient(120deg, #a259ff, #ff4ecd);
}

@media (max-width: 640px) {
  .tier-toggle {
    flex-direction: column;
    align-items: flex-start;
  }

  .tier-options {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .tier-option {
    width: 100%;
    text-align: center;
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-grid.single-plan {
  grid-template-columns: minmax(260px, 420px);
  justify-content: center;
}

.pricing-cta {
  margin-top: 2rem;
  text-align: center;
}

.pricing-card {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.pricing-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--gradient-primary);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.plan-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
}

.plan-price {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.plan-price-current {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.plan-price-current [data-price-value] {
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--text-light);
}

.plan-price-current [data-period-label] {
  font-size: 1rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.plan-price-total {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.plan-price-original {
  font-size: 0.95rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

.plan-price-original.no-discount {
  text-decoration: none;
}

.plan-price-note {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Quote Builder */
.quote-builder {
  padding: 80px 0;
  background: var(--bg-secondary);
  margin-top: -20px;
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 2.5rem;
}

.quote-controls {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--border-color);
  padding: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.quote-control {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-control-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.quote-control-value {
  color: var(--primary-color);
  font-weight: 600;
}

.quote-control input[type="range"] {
  width: 100%;
  accent-color: var(--primary-color);
}

.quote-summary {
  background: var(--bg-card);
  border-radius: 18px;
  border: 1px solid var(--primary-color);
  padding: 2rem;
  box-shadow: var(--shadow-red);
  display: flex;
  align-items: center;
}

.quote-summary-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quote-summary-label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.quote-summary-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-light);
}

.quote-summary-detail {
  color: var(--text-secondary);
  font-size: 1rem;
}

.quote-summary-discount {
  font-size: 0.95rem;
  color: var(--primary-color);
  font-weight: 600;
}

.quote-includes {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.quote-include {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.quote-include i {
  color: var(--primary-color);
}

.quote-summary .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

.plan-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.plan-specs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.plan-specs li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
}

.plan-specs li i {
  color: var(--primary-color);
}

.plan-cta {
  margin-top: auto;
}

.disclaimer-note {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
}

/* Technology Section */
.technology {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.technology::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(139, 0, 0, 0.03) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.tech-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.tech-card:hover::before {
  transform: translateX(0);
}

.tech-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.tech-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.tech-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.tech-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Support Section */
.support {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.support::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(139, 0, 0, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.support-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.support-features {
  margin-top: 2rem;
}

.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.support-feature:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.support-feature i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 4px;
}

.support-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.support-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.support-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(139, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stat-card:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.stat-label {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* Overview Section */
.overview {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.overview::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 51, 51, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.overview-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.overview-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.overview-card:hover::before {
  transform: translateX(0);
}

.overview-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.overview-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.overview-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.overview-description {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Quick Contact Section */
.quick-contact {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.quick-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 51, 51, 0.1) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.quick-contact-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.quick-contact-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

/* Additional Services Section */
.additional-services {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.additional-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(255, 51, 51, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.service-icon i {
  font-size: 1.8rem;
  color: var(--text-light);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-description {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Contact Section */
.contact {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(139, 0, 0, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  background: var(--bg-card);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    rgba(139, 0, 0, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.contact-card:hover::before {
  opacity: 1;
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.contact-description {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo .logo {
  height: 60px;
  width: auto;
  border-radius: 8px;
}

.footer-description {
  color: #aaaaaa;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #aaaaaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 2rem;
  text-align: center;
  color: #aaaaaa;
}

/* Contact Features */
.contact-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: 10px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.contact-feature:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.contact-feature i {
  color: var(--primary-color);
  font-size: 1.2rem;
  min-width: 20px;
}

.contact-feature span {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Additional Contact Section */
.additional-contact {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.additional-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(139, 0, 0, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.method-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.method-card:hover::before {
  transform: translateX(0);
}

.method-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.method-icon i {
  font-size: 1.8rem;
  color: var(--text-light);
}

.method-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.method-description {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.method-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.method-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.social-links-inline {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link-inline {
  width: 45px;
  height: 45px;
  background: var(--bg-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.social-link-inline:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

/* Business Hours Section */
.business-hours {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.business-hours::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 30%,
    rgba(139, 0, 0, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.hours-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hours-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.hours-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.hours-item.emergency {
  background: linear-gradient(
    135deg,
    rgba(255, 51, 51, 0.1) 0%,
    transparent 100%
  );
  border-color: var(--primary-color);
}

.hours-day {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 1rem;
}

.hours-time {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hours-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.hours-info {
  flex: 1;
}

/* FAQ Quick Section */
.faq-quick {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.faq-quick::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(139, 0, 0, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.quick-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.quick-faq-item {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.quick-faq-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.quick-faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.quick-faq-item:hover::before {
  transform: translateX(0);
}

.faq-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.faq-icon i {
  font-size: 1.5rem;
  color: var(--text-light);
}

.quick-faq-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.quick-faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Support Text and Image */
.support-text {
  flex: 1;
}

.support-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Support Channels Section */
.support-channels {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.support-channels::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(139, 0, 0, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.channel-card {
  background: var(--bg-card);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.channel-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.channel-card:hover::before {
  transform: translateX(0);
}

.channel-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-red);
}

.channel-icon i {
  font-size: 2rem;
  color: var(--text-light);
}

.channel-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.channel-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.channel-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.feature-tag {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: var(--primary-color);
  color: var(--text-light);
  border-color: var(--primary-color);
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 70%,
    rgba(139, 0, 0, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: var(--bg-card);
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--bg-secondary);
}

.faq-question h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.3s ease,
    padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Tech Specs Section */
.tech-specs {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.tech-specs::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 0, 0, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.spec-category {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.spec-category::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.spec-category:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.spec-category:hover::before {
  transform: translateX(0);
}

.spec-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.spec-title i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

.spec-list {
  list-style: none;
  padding: 0;
}

.spec-list li {
  padding: 0.75rem 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  padding-left: 1.5rem;
}

.spec-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.spec-list li:last-child {
  border-bottom: none;
}

/* Security Section */
.security {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.security::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(139, 0, 0, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.security-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.security-text {
  flex: 1;
}

.security-features {
  margin-top: 2rem;
}

.security-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--bg-card);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.security-feature:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-red);
}

.security-feature i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-top: 4px;
}

.security-feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.security-feature p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.security-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

/* Review Form Section */
.review-form-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  position: relative;
}

.review-form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(139, 0, 0, 0.05) 50%,
    transparent 100%
  );
  pointer-events: none;
}

.review-form-container {
  max-width: 700px;
  margin: 0 auto;
}

.review-form {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 1rem;
}

.form-group input[type="text"],
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(255, 51, 51, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.rating-input {
  display: flex;
  gap: 0.5rem;
  justify-content: flex-start;
  flex-direction: row-reverse; /* Invertir orden para que CSS ~ funcione correctamente */
}

.rating-input input[type="radio"] {
  display: none;
}

.star-label {
  font-size: 2rem;
  color: #555;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* Estilo base para todas las estrellas */
.star-label {
  color: #666;
  transition: all 0.2s ease;
  cursor: pointer;
}

/* Cuando haces hover sobre una estrella, colorea esa y todas las anteriores (visualmente a la izquierda) */
.star-label:hover,
.star-label:hover ~ .star-label {
  color: var(--primary-color);
}

/* Cuando un radio está seleccionado, colorea esa estrella y todas las anteriores */
.rating-input input[type="radio"]:checked ~ .star-label {
  color: var(--primary-color);
}

/* La estrella asociada al radio seleccionado también debe estar coloreada */
.rating-input input[type="radio"]:checked + .star-label {
  color: var(--primary-color);
}

/* Reviews Display Section */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-primary);
  position: relative;
}

.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 0, 0, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
  border-color: var(--primary-color);
}

.review-card:hover::before {
  transform: translateX(0);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-info {
  flex: 1;
}

.reviewer-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.review-date {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.review-rating {
  display: flex;
  gap: 0.25rem;
}

.review-rating .star {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.review-rating .star.empty {
  color: #555;
  opacity: 0.3;
}

.review-rating .star.filled {
  color: var(--primary-color);
}

.review-text {
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 1rem;
}

.review-message {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  animation: slideIn 0.3s ease;
}

.review-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
}

.review-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.review-message.info {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #3b82f6;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.no-reviews {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  background: var(--bg-card);
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.no-reviews i {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

/* En Desarrollo Section */
.development-section {
  padding: 100px 0;
  background: var(--bg-primary);
  position: relative;
  min-height: 60vh;
}

.development-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(139, 0, 0, 0.08) 0%,
    transparent 60%
  );
  pointer-events: none;
}

.development-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  background: var(--bg-card);
  border-radius: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.development-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  transform: translateX(-100%);
  animation: loadingBar 3s ease-in-out infinite;
}

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

.development-icon {
  font-size: 5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.development-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.development-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 3rem;
}

.development-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 51, 51, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 51, 51, 0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 51, 51, 0.1);
  border-color: rgba(255, 51, 51, 0.3);
  transform: translateY(-3px);
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.feature-item span {
  font-size: 1rem;
  color: var(--text-primary);
  font-weight: 500;
}

.development-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.development-note i {
  color: var(--primary-color);
  animation: rotate 3s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: var(--bg-primary);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: var(--shadow);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu li {
    margin: 1rem 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-highlights {
    justify-content: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .billing-toggle {
    padding: 1.25rem;
  }

  .quote-grid {
    grid-template-columns: 1fr;
  }

  .quote-summary {
    text-align: center;
  }

  .quote-summary .btn {
    align-self: center;
  }

  .support-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .quick-contact-content {
    flex-direction: column;
    text-align: center;
  }

  .quick-contact-actions {
    justify-content: center;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .hours-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hours-stats {
    grid-template-columns: 1fr;
  }

  .methods-grid {
    grid-template-columns: 1fr;
  }

  .channels-grid {
    grid-template-columns: 1fr;
  }

  .specs-grid {
    grid-template-columns: 1fr;
  }

  .security-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .review-form {
    padding: 2rem;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .feature-card,
  .pricing-card,
  .contact-card {
    padding: 1.5rem;
  }

  .development-section {
    padding: 60px 0;
  }

  .development-content {
    padding: 2.5rem 1.5rem;
  }

  .development-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }

  .development-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .development-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .development-features {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }

  .feature-item {
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

.loading {
  animation: pulse 2s infinite;
}
