:root {
  --primary-color: #39ff14;
  /* Neon Green */
  --secondary-color: #ffffff;
  /* High Contrast White */
  --bg-dark: #050505;
  /* Casi negro */
  --bg-darker: #000000;
  --text-white: #e0e0e0;
  --text-gray: #a0a0a0;
  --glass-bg: rgba(20, 20, 20, 0.4);
  /* Más oscuro */
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
  --font-heading: "Chakra Petch", sans-serif;
  --font-body: "Outfit", sans-serif;
  --section-padding-y: 80px;
}

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

html,
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100%;
  position: relative;
  /* Adding basic margin/padding reset to body specifically just in case */
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
}

/* Noise Texture Overlay */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* Scroll Reveal Animation Classes */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.active {
  opacity: 1;
  transform: translateY(0);
}

/* Utilitarios */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-gradient {
  background: linear-gradient(90deg, var(--primary-color), #00ff88);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Cyber Buttons */
.btn {
  display: inline-block;
  padding: 18px 40px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--font-heading);
  letter-spacing: 2px;
  clip-path: polygon(10px 0,
      100% 0,
      100% calc(100% - 10px),
      calc(100% - 10px) 100%,
      0 100%,
      0 10px);
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
}

.btn:hover {
  background: var(--bg-dark);
  color: var(--primary-color);
  box-shadow: 0 0 30px rgba(57, 255, 20, 0.4);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--secondary-color);
  color: var(--secondary-color);
}

.btn-secondary:hover {
  background: rgba(0, 243, 255, 0.1);
  box-shadow: 0 0 30px rgba(0, 243, 255, 0.3);
  color: #fff;
}

/* Header & Nav */
.glass-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: var(--glass-backdrop);
  border-bottom: 1px solid var(--border-glass);
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  font-family: var(--font-heading);
  text-transform: lowercase;
  letter-spacing: -1px;
}

.logo-icon {
  width: 160px;
  height: auto;
  object-fit: contain;
  transition: width 0.3s ease;
}

@media (max-width: 768px) {
  .logo-icon {
    width: 120px;
  }
}

.nav-menu ul {
  display: flex;
  gap: 30px;
  list-style: none;
  align-items: center;
}

.nav-menu a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

/* Dropdown Menu Styles */
.nav-menu ul li {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-dark);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(15px);
  padding: 15px 0;
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  border-radius: 4px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
}

.nav-menu ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 25px;
  font-size: 0.85rem;
  white-space: nowrap;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dropdown a:hover {
  background: rgba(57, 255, 20, 0.1);
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 140px 0 60px;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(10, 10, 10, 0.4) 50%,
      var(--bg-dark) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.badge {
  background: rgba(0, 255, 255, 0.1);
  color: var(--secondary-color);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 255, 255, 0.2);
  word-wrap: break-word;
  max-width: 100%;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1px;
  word-break: break-word;
  overflow-wrap: break-word;
  display: block;
  width: 100%;
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto 40px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.hero-buttons .btn-secondary {
  margin-left: 0;
}

.trust-slider-container {
  overflow: hidden;
  padding: 20px 0;
  margin-top: 40px;
  width: 100%;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-indicators {
  display: inline-flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  width: max-content !important;
  animation: slide-left 30s linear infinite !important;
  padding: 0 40px !important;
  white-space: nowrap !important;
}

.trust-indicators:hover {
  animation-play-state: paused;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.trust-item {
  display: inline-flex !important;
  align-items: center !important;
  flex: 0 0 auto !important;
  padding-right: 80px !important;
  color: var(--text-gray);
  font-size: 0.95rem;
  white-space: nowrap !important;
  min-width: max-content !important;
}

.trust-item svg {
  margin-right: 15px !important;
  flex-shrink: 0 !important;
  display: block;
}

.trust-item span {
  flex-shrink: 0 !important;
  display: block;
  white-space: nowrap !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Services */
.services {
  padding: var(--section-padding-y) 0;
  background-color: var(--bg-dark);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-gray);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
  margin-top: 50px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 30px;
  transition: transform 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.service-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-card {
  text-align: center;
  transition: transform 0.3s ease;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.link-arrow:hover .arrow {
  transform: translateX(5px);
}

.arrow {
  transition: transform 0.3s;
}

/* Stats Section */
.stats-section {
  background-color: var(--bg-darker);
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.stat-label {
  color: var(--text-gray);
  font-size: 1.1rem;
}

/* Process Section */
.process-section {
  padding: var(--section-padding-y) 0;
  text-align: center;
}

.process-timeline {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 350px;
}

.step-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.process-arrow {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 15px;
  display: none;
}

@media (min-width: 900px) {
  .process-arrow {
    display: block;
  }
}

/* Testimonials Section */
.testimonials-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--bg-dark);
  /* Alternating background */
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #ffd700;
  /* Gold */
  font-size: 1.2rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  color: var(--text-white);
  margin-bottom: 25px;
  font-size: 1.05rem;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: auto;
  border-top: 1px solid var(--border-glass);
  padding-top: 15px;
}

.client-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.client-details {
  display: flex;
  flex-direction: column;
}

.client-name {
  font-weight: 600;
  color: var(--primary-color);
}

.client-type {
  font-size: 0.85rem;
  color: var(--text-gray);
}

/* About Section */
.about-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--bg-darker);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
}

.check-list {
  list-style: none;
  margin-top: 30px;
}

.check-list li {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
  padding: var(--section-padding-y) 0;
}

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  padding: 0;
}

.faq-question {
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.2rem;
  margin: 0;
}

.faq-toggle {
  background: none;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  transition: transform 0.3s;
}

.faq-answer {
  padding: 0 30px 20px;
  display: none;
  color: var(--text-gray);
  border-top: 1px solid var(--border-glass);
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* Contact Section */
.contact-section {
  padding: var(--section-padding-y) 0;
  background-color: var(--bg-darker);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  font-size: 1.2rem;
}

.info-item .icon {
  font-size: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  color: white;
  font-family: var(--font-main);
  font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {

  .about-content,
  .contact-container {
    grid-template-columns: 1fr;
  }

  .stat-item {
    width: 45%;
  }

  /* Services Section - Consolidado arriba */
}

/* CTA Banner Position Update */
.cta-banner {
  padding: 60px 0;
}

.cta-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg,
      rgba(57, 255, 20, 0.1),
      rgba(10, 10, 10, 0.9));
  border: 1px solid rgba(57, 255, 20, 0.3);
}

/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 20px;
  background-color: var(--bg-darker);
}

/* Services Section Grid - Consolidado arriba */

.service-card {
  text-align: center;
  transition: transform 0.3s ease;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Centrar horizontalmente todo el contenido */
  height: 100%;
  /* Altura completa del grid cell */
}

.service-card h3 {
  font-size: 1.2rem;
  margin: 15px 0;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  width: 100%;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 25px;
  line-height: 1.4;
  flex-grow: 1;
  /* Empujar botón hacia abajo */
}

.icon-wrapper {
  margin-bottom: 15px;
  height: 60px;
  width: 60px;
  /* Ancho fijo para centrado */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--primary-color);
}

.icon-wrapper svg {
  filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.5));
  /* Glow verde neón suave */
}

.btn-sm {
  padding: 10px 20px;
  font-size: 0.9rem;
  width: 100%;
  margin-top: 10px;
}

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

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

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

.footer-links a {
  color: var(--text-gray);
  text-decoration: none;
}

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

.copyright {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(57, 255, 20, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(57, 255, 20, 0);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --section-padding-y: 40px;
  }

  .header-content {
    padding: 0 20px;
  }

  .header-content .btn {
    display: none !important;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.98);
    border-bottom: 1px solid var(--primary-color);
    padding: 40px 20px;
    backdrop-filter: blur(20px);
    z-index: 1000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }

  .mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
  }

  .mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: 0.3s;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero {
    padding-top: 140px;
    /* Increased offset for mobile header symmetry */
  }

  .hero {
    padding-top: 140px;
    /* Increased offset for mobile header symmetry */
  }

  .hero-buttons .btn {
    width: 100%;
    margin-left: 0 !important;
  }

  .trust-indicators {
    display: flex !important;
    white-space: nowrap !important;
    width: max-content !important;
    animation: slide-left 30s linear infinite !important;
    padding: 0 40px !important;
    margin-top: 30px !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    align-items: center !important;
  }

  .trust-item {
    display: inline-flex !important;
    width: auto !important;
    flex-shrink: 0 !important;
    padding-right: 80px !important;
    margin-right: 0 !important;
    flex: 0 0 auto !important;
    align-items: center !important;
  }

  .services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    width: 100%;
  }

  .service-card {
    width: 100%;
    max-width: 340px;
    margin: 0 auto !important;
  }

  .cta-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
}

/* Product Pages Styles */
.product-page {
  padding-top: 100px;
}

.product-hero {
  margin-bottom: 60px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-image-container {
    max-width: 100%;
    overflow: hidden;
  }

  .hero {
    padding-top: 120px;
    /* Extra offset for mobile */
  }
}

.product-image-container {
  position: relative;
  padding: 2px;
  background: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}

.product-img {
  width: 100%;
  height: auto;
  display: block;
  clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
  background: var(--bg-dark);
}

.product-info h1 {
  font-size: 4rem;
  margin: 10px 0 20px;
}

@media (max-width: 768px) {
  .product-info {
    text-align: center;
  }

  .product-info h1 {
    font-size: 2rem;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }

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

  .product-cta .btn {
    width: 100%;
    max-width: 300px;
  }
}

.badge {
  background: var(--primary-color);
  color: white;
  padding: 5px 12px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 30px 0;
}

.spec-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 15px;
  text-align: center;
}

.spec-icon {
  font-size: 1.5rem;
  margin-bottom: 5px;
  display: block;
}

.product-details {
  padding: 40px;
  margin-bottom: 80px;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.detail-item {
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 10px;
  display: flex;
  justify-content: space-between;
}

.detail-item strong {
  color: var(--primary-color);
  font-family: var(--font-heading);
}

/* New Product Expansion Styles */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 80px;
}

.benefit-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 30px;
  border-radius: 4px;
  transition: transform 0.3s ease;
  border-left: 4px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-left-color: var(--secondary-color);
}

.benefit-card h3 {
  font-family: var(--font-heading);
  color: var(--text-white);
  margin-bottom: 15px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.benefit-card p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 0.95rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 15px;
}

@media (max-width: 768px) {
  .section-header {
    text-align: center;
    justify-content: center;
  }
}

.usage-badge {
  background: rgba(0, 243, 255, 0.1);
  color: var(--secondary-color);
  padding: 6px 15px;
  border: 1px solid var(--secondary-color);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.cta-note {
  margin-top: 15px;
  font-size: 0.8rem;
  color: var(--text-gray);
  font-style: italic;
}

.product-cta .btn {
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .section-header {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* AIDA Framework Styles */
.aida-section {
  padding: 60px 0;
  margin-bottom: 40px;
}

.pain-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.pain-box {
  background: rgba(57, 255, 20, 0.05);
  border: 1px dashed var(--primary-color);
  padding: 30px;
  border-radius: 4px;
}

.pain-box h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.2rem;
}

.solution-box {
  background: rgba(0, 243, 255, 0.05);
  border: 1px solid var(--secondary-color);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.solution-box h3 {
  color: var(--secondary-color);
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 1.2rem;
}

.trust-elements {
  display: flex;
  white-space: nowrap;
  width: max-content;
  animation: slide-left 40s linear infinite;
  /* Slower for more content */
  gap: 50px;
  padding: 0 40px;
  margin: 80px 0;
  background: var(--glass-bg);
  border-top: 2px solid var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
}

.trust-elements:hover {
  animation-play-state: paused;
}

.trust-elements .trust-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.trust-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
  filter: drop-shadow(0 0 5px var(--primary-color));
}

.trust-elements .trust-item h4 {
  font-family: var(--font-heading);
  color: var(--text-light);
  margin-bottom: 5px;
}

.trust-elements .trust-item p {
  font-size: 0.85rem;
  color: var(--text-gray);
}

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

.aida-list li {
  margin-bottom: 12px;
  padding-left: 25px;
  position: relative;
}

.aida-list li::before {
  content: "▶";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 0.8rem;
  top: 3px;
}

.solution-box .aida-list li::before {
  color: var(--secondary-color);
}

@media (max-width: 768px) {
  .pain-solution-grid {
    grid-template-columns: 1fr;
  }

  .trust-elements {
    gap: 20px;
  }
}

/* ============================================
   CRO: Mobile Sticky CTA Bar
   Visible ONLY on mobile — always-on call + WhatsApp
   ============================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9990;
    height: 60px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
  }

  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    gap: 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: filter 0.2s ease;
  }

  .mobile-cta-btn:active {
    filter: brightness(0.85);
  }

  .mobile-cta-call {
    background: var(--primary-color);
    color: #000;
    border-right: 1px solid rgba(0, 0, 0, 0.2);
  }

  .mobile-cta-whatsapp {
    background: #25d366;
    color: #fff;
  }

  /* Body padding so footer content isn't hidden behind the bar */
  body {
    padding-bottom: 60px;
  }
}

/* ============================================
   CATALOGO PAGE STYLES
   ============================================ */
.catalog-hero {
  padding: 140px 0 60px;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.9) 0%,
      var(--bg-dark) 100%);
}

@media (max-width: 768px) {
  .catalog-hero {
    padding: 100px 0 40px;
  }
}

.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 80px 0;
}

.product-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(57, 255, 20, 0.1);
}

.card-image {
  padding: 30px;
  background: rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-image img {
  max-width: 100%;
  height: 250px;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
  transform: scale(1.05);
}

.card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-badge {
  color: var(--primary-color);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.card-content h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #fff;
}

.card-content p {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
  flex-grow: 1;
}

@media (max-width: 768px) {
  .product-cards-grid {
    grid-template-columns: 1fr;
    padding: 40px 0;
    gap: 25px;
  }

  .card-image img {
    height: 200px;
  }
}

/* ============================================
   CRO: WhatsApp Floating Button (Desktop)
   Hidden on mobile — covered by the sticky bar
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 62px;
  height: 62px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.5);
  z-index: 9980;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: pulse-wa 2.5s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    display: none;
    /* replaced by mobile-cta-bar */
  }
}

/* ============================================
   CRO: Urgency / Availability Badge
   Used on product pages below main CTA
   ============================================ */
.urgency-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 80, 0, 0.12);
  border: 1px solid rgba(255, 120, 0, 0.4);
  color: #ff9240;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  animation: urgency-pulse 3s ease-in-out infinite;
}

@keyframes urgency-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

.response-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-gray);
  font-size: 0.82rem;
  font-family: var(--font-heading);
}

@media (max-width: 768px) {
  .urgency-row {
    justify-content: center;
  }
}

/* ============================================
   CRO: Hero Mobile — CTAs above the fold
   ============================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 100svh;
    padding-top: 90px;
    padding-bottom: 40px;
  }

  .hero h1 {
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: 14px;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }

  .hero-buttons {
    margin-bottom: 30px;
  }
}