/* Base styles */
html {
  scroll-behavior: smooth;
}

body {
  background-color: #f8fafc;
  color: #1e293b;
  font-family: "Poppins", sans-serif;
}

/* Text effects */
.bg-gradient-text {
  background: linear-gradient(90deg, #043c64, #04b4e3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

.animate-gradient-x {
  background-size: 200% 100%;
  animation: gradient-x 15s ease infinite;
}

@keyframes gradient-x {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Animation keyframes */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 184, 230, 0.8);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 184, 230, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 184, 230, 0);
  }
}

@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(37, 99, 235, 0.5), 0 0 10px rgba(16, 185, 129, 0.3);
  }
  100% {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.8), 0 0 30px rgba(16, 185, 129, 0.5);
  }
}

@keyframes rotate {
  100% {
    transform: rotate(1turn);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Card effects */
.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Reveal animation for scroll */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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

/* Particles effect */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.1);
  pointer-events: none;
}

/* Mouse trail effect */
.cursor-dot {
  width: 5px;
  height: 5px;
  background-color: rgba(16, 185, 129, 0.8);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

.cursor-outline {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(37, 99, 235, 0.5);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all 0.1s ease-out;
}

.cursor-hover {
  width: 50px;
  height: 50px;
  background-color: rgba(37, 99, 235, 0.1);
}

/* Benefit cards */
.benefit-card {
  position: absolute;
  width: 180px;
  padding: 15px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(37, 99, 235, 0.2);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  z-index: 10;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: rgba(37, 99, 235, 0.5);
}

.benefit-card.top-left {
  top: 15%;
  left: -90px;
}

.benefit-card.top-right {
  top: 15%;
  right: -90px;
}

.benefit-card.bottom-left {
  bottom: 15%;
  left: -90px;
}

.benefit-card.bottom-right {
  bottom: 15%;
  right: -90px;
}

/* Step cards */
.step-card {
  transition: all 0.3s ease;
}

.step-card:hover {
  transform: scale(1.05);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #043c64, #04b4e3);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Decorative elements */
.circle-decoration {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
  z-index: 0;
}

.connection-line {
  position: absolute;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2), rgba(16, 185, 129, 0.2));
  height: 2px;
  z-index: 0;
}

/* Glow effects */
.glow-effect {
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.5), 0 0 20px rgba(16, 185, 129, 0.3);
  animation: glow 2s ease-in-out infinite alternate;
}

.border-glow {
  position: relative;
}

.border-glow::after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  background: linear-gradient(45deg, #043c64, transparent, #04b4e3, transparent, #043c64);
  border-radius: inherit;
  z-index: -1;
  animation: gradient 15s ease infinite;
  background-size: 400% 400%;
}

/* Podcast card effects */
.podcast-card {
  transition: all 0.3s ease;
  overflow: hidden;
}

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

.podcast-image {
  transition: transform 0.5s ease;
}

.podcast-play-button {
  transition: all 0.3s ease;
}

.podcast-card:hover .podcast-play-button {
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.5);
}

/* Navigation styles */
.navbar {
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-link {
  position: relative;
  transition: all 0.3s ease;
}

.navbar-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #043c64, #04b4e3);
  transition: width 0.3s ease;
}

.navbar-link:hover::after {
  width: 100%;
}

/* Button effects */
.button-effect {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.button-effect:hover::before {
  left: 100%;
}

/* App card effect */
.app-card {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.app-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(transparent, rgba(37, 99, 235, 0.1), transparent 30%);
  animation: rotate 4s linear infinite;
}

/* Data flow background */
.data-flow-bg {
  background-color: #f8fafc;
  background-image: linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(16, 185, 129, 0.03) 1px, transparent 1px),
    linear-gradient(to right, rgba(37, 99, 235, 0.05), rgba(16, 185, 129, 0.05), rgba(37, 99, 235, 0.05));
  background-size: 20px 20px, 20px 20px, 100px 100px, 100px 100px, 200% 100%;
  /* background-position: 0 0, 0 0, 0 0, 0 0, 0 0;
  animation: data-flow 20s linear infinite; */
}

@keyframes data-flow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

/* Logo styles */
.logo-text {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: -0.5px;
  position: relative;
}

.logo-primary {
  color: #043c64;
}

.logo-accent {
  color: #04b4e3;
}

.logo-divider {
  color: rgba(30, 41, 59, 0.7);
  font-weight: 300;
  margin: 0 2px;
}

.logo-underline {
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #043c64, #04b4e3);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.logo-container:hover .logo-underline {
  transform: scaleX(1);
}

/* Header styles */
.app-bar {
  transition: all 0.3s ease;
}

.app-bar-expanded {
  padding-top: .25rem;
}

.app-bar-collapsed {
  padding: 0.75rem 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Plan cards */
.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}

.plan-card {
  background-color: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  position: relative;
  z-index: 1;
  border: 1px solid #e2e8f0;
}

.plan-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border-color: #00c2ff;
}

.plan-card:hover .plan-header {
  background: linear-gradient(135deg, #003366, #00c2ff);
}

.plan-card:hover .plan-header h3,
.plan-card:hover .plan-header .plan-price,
.plan-card:hover .plan-header .plan-description {
  color: white;
}

.plan-card:hover .plan-button {
  background: linear-gradient(135deg, #003366, #00c2ff);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 194, 255, 0.4);
}

.plan-header {
  padding: 2rem 1.5rem;
  text-align: center;
  background-color: #f8fafc;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.plan-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #003366, #00c2ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.plan-card:hover .plan-header::after {
  transform: scaleX(1);
}

.plan-card.popular {
  transform: scale(1.05);
  z-index: 2;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(to right, #003366, #00c2ff);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.plan-card.popular .plan-header {
  background: linear-gradient(135deg, #003366, #00c2ff);
  color: white;
}

.plan-card.popular .plan-header h3,
.plan-card.popular .plan-header .plan-price,
.plan-card.popular .plan-header .plan-description {
  color: white;
}

.popular-tag {
  position: absolute;
  top: 12px;
  right: -30px;
  background: linear-gradient(135deg, #10b981, #00c2ff);
  color: white;
  padding: 0.25rem 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.plan-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #003366;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.plan-price .period {
  font-size: 1rem;
  font-weight: 400;
  color: #64748b;
}

.plan-description {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.plan-features {
  padding: 1.5rem;
}

.plan-feature {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  color: #64748b;
  transition: all 0.3s ease;
}

.plan-card:hover .plan-feature {
  transform: translateX(5px);
}

.plan-feature i {
  color: #10b981;
  margin-right: 0.75rem;
  font-size: 1rem;
}

.plan-feature.disabled {
  opacity: 0.5;
}

.plan-feature.disabled i {
  color: #ef4444;
}

.plan-button {
  display: block;
  margin: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #f8fafc;
  color: #003366;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
}

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

.plan-button:hover::before {
  left: 100%;
}

/* App store buttons */
.app-store-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.app-store-btn {
  display: flex;
  align-items: center;
  background-color: #003366;
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.app-store-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}

.app-store-btn:hover::before {
  left: 100%;
}

.app-store-btn.google-play {
  background-color: #00c2ff;
}

.app-store-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.app-store-icon {
  font-size: 1.5rem;
  margin-right: 0.75rem;
}

.app-store-text {
  display: flex;
  flex-direction: column;
}

.app-store-text-small {
  font-size: 0.75rem;
  opacity: 0.8;
}

.app-store-text-large {
  font-size: 1rem;
  font-weight: 600;
}

/* YouTube container */
.youtube-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}

.youtube-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Video card */
.video-card {
  overflow: hidden;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

.contact-social-icon:hover {
  transform: translateY(-3px);
}

/* Terms and privacy pages */
.terms-container,
.privacy-container {
  max-height: 70vh;
  overflow-y: auto;
  scrollbar-width: thin;
}

.terms-container::-webkit-scrollbar,
.privacy-container::-webkit-scrollbar {
  width: 6px;
}

.terms-container::-webkit-scrollbar-track,
.privacy-container::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.terms-container::-webkit-scrollbar-thumb,
.privacy-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.terms-container::-webkit-scrollbar-thumb:hover,
.privacy-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.section-title {
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background-color: #3b82f6;
}

/* Animation classes */
.animate-fadeInUp {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.animate-fadeInLeft {
  animation: fadeInLeft 0.8s ease forwards;
  opacity: 0;
}

.animate-fadeInRight {
  animation: fadeInRight 0.8s ease forwards;
  opacity: 0;
}

/* Animation delays */
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}
.delay-700 {
  animation-delay: 0.7s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .benefit-card {
    position: static;
    width: 100%;
    margin-bottom: 1rem;
  }

  .app-store-buttons {
    flex-direction: column;
  }

  .plans-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .plan-card.popular {
    transform: scale(1);
  }

  .step-number {
    left: 10px;
  }
}

/* Hero section phone effects */
.phone-effects {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.phone-glow-enhanced {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 184, 230, 0.4) 0%, rgba(0, 51, 102, 0.3) 40%, transparent 70%);
  filter: blur(20px);
  border-radius: 50%;
  opacity: 0.9;
  animation: glow-pulse-enhanced 4s ease-in-out infinite alternate;
}

@keyframes glow-pulse-enhanced {
  0% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(0.9);
    filter: blur(20px);
  }
  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.1);
    filter: blur(25px);
  }
}

/* Dots pattern */
.dots-pattern {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.2;
  background-size: 20px 20px;
  animation: dots-float 15s linear infinite;
}

@keyframes dots-float {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 20px 20px;
  }
}

/* Signature area for privacy policy */
.signature-area {
  border: 1px dashed #ccc;
  position: relative;
}

.signature-area canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.signature-placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #9ca3af;
  text-align: center;
  pointer-events: none;
}

/* Codido Faltanter */
/* Indicadores */
.stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem;
}

.stats-card {
  background-color: white;
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 320px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.stats-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.stats-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.stats-icon i {
  font-size: 1.25rem;
}

.stats-content {
  flex: 1;
}

.stats-number {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

.stats-text {
  font-size: 0.875rem;
  color: #64748b;
  margin: 0;
}

@media (max-width: 768px) {
  .stats-container {
    flex-direction: column;
    align-items: center;
  }
  
  .stats-card {
    max-width: 100%;
  }
}

.benefit-icon-container {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 10px;
  background: rgba(0, 51, 102, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  position: relative;
  overflow: hidden;
}

.benefit-icon-container::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
}

.benefit-icon-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s infinite;
}

.benefit-icon-container.accent {
  background: rgba(0, 184, 230, 0.1);
}

.benefit-icon {
  width: 20px;
  height: 20px;
  color: var(--buro-primary);
  z-index: 1;
}

.benefit-icon-container.accent .benefit-icon {
  color: var(--buro-accent);
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--buro-dark);
  margin-bottom: 4px;
}

.benefit-text {
  font-size: 12px;
  color: var(--buro-gray);
  line-height: 1.3;
}

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

  20%,
  100% {
    transform: translateX(100%);
  }
}


/* DESDE AQUI */
.energy-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 400px;
  background: conic-gradient(from 0deg,
      transparent,
      var(--buro-accent),
      var(--buro-primary),
      transparent);
  opacity: 0.3;
  filter: blur(15px);
  animation: energy-rotate 10s linear infinite;
}

@keyframes energy-rotate {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.phone-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.phone-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  opacity: 0;
}

.ring-1 {
  width: 280px;
  height: 280px;
  border-color: rgba(0, 51, 102, 0.5);
  animation: ring-pulse 3s ease-in-out infinite;
}

.ring-2 {
  width: 320px;
  height: 320px;
  border-color: rgba(0, 184, 230, 0.5);
  animation: ring-pulse 3s ease-in-out infinite 1s;
}

.ring-3 {
  width: 360px;
  height: 360px;
  border-color: rgba(0, 51, 102, 0.3);
  animation: ring-pulse 3s ease-in-out infinite 2s;
}

@keyframes ring-pulse {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.radial-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
}

.radial-line {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--buro-primary), var(--buro-accent));
  transform-origin: left center;
  opacity: 0.3;
  box-shadow: 0 0 10px rgba(0, 184, 230, 0.5);
}

.line-1 {
  width: 200px;
  transform: translate(0, -50%) rotate(0deg);
}

.line-2 {
  width: 200px;
  transform: translate(0, -50%) rotate(45deg);
}

.line-3 {
  width: 200px;
  transform: translate(0, -50%) rotate(90deg);
}

.line-4 {
  width: 200px;
  transform: translate(0, -50%) rotate(135deg);
}

.line-5 {
  width: 200px;
  transform: translate(0, -50%) rotate(180deg);
}

.line-6 {
  width: 200px;
  transform: translate(0, -50%) rotate(225deg);
}

.line-7 {
  width: 200px;
  transform: translate(0, -50%) rotate(270deg);
}

.line-8 {
  width: 200px;
  transform: translate(0, -50%) rotate(315deg);
}

.floating-particles {
  position: absolute;
  inset: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--buro-primary), var(--buro-accent));
  filter: blur(1px);
  opacity: 0.7;
  box-shadow: 0 0 10px rgba(0, 184, 230, 0.5);
  animation: float 6s ease-in-out infinite;
}

.p1 {
  top: 20%;
  left: 20%;
  width: 10px;
  height: 10px;
}

.p2 {
  top: 30%;
  right: 25%;
  width: 15px;
  height: 15px;
  animation-delay: 1s;
}

.p3 {
  bottom: 25%;
  left: 30%;
  width: 12px;
  height: 12px;
  animation-delay: 2s;
}

.p4 {
  bottom: 30%;
  right: 20%;
  width: 8px;
  height: 8px;
  animation-delay: 3s;
}

.p5 {
  top: 50%;
  left: 15%;
  width: 12px;
  height: 12px;
  animation-delay: 1.5s;
}

.p6 {
  top: 60%;
  right: 15%;
  width: 10px;
  height: 10px;
  animation-delay: 2.5s;
}

.p7 {
  top: 15%;
  left: 40%;
  width: 8px;
  height: 8px;
  animation-delay: 0.5s;
}

.p8 {
  bottom: 15%;
  right: 40%;
  width: 9px;
  height: 9px;
  animation-delay: 3.5s;
}

.p9 {
  top: 70%;
  left: 25%;
  width: 7px;
  height: 7px;
  animation-delay: 2.2s;
}

.p10 {
  top: 40%;
  right: 30%;
  width: 11px;
  height: 11px;
  animation-delay: 1.8s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

.tech-hexagons {
  position: absolute;
  inset: 0;
}

.tech-hexagon {
  position: absolute;
  width: 40px;
  height: 35px;
  background: linear-gradient(135deg, var(--buro-primary), var(--buro-accent));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  opacity: 0.2;
  animation: hexagon-pulse 4s ease-in-out infinite;
}

.hex-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hex-2 {
  bottom: 30%;
  right: 15%;
  animation-delay: 1.5s;
}

.hex-3 {
  top: 60%;
  left: 15%;
  animation-delay: 3s;
}

@keyframes hexagon-pulse {

  0%,
  100% {
    opacity: 0.1;
    transform: scale(0.8);
  }

  50% {
    opacity: 0.3;
    transform: scale(1.2);
  }
}

/* Efecto de texto con resplandor */
.text-glow {
  text-shadow: 0 0 10px rgba(6, 182, 212, 0.5);
}

/* Efecto de subrayado animado */
.animated-underline {
  position: relative;
  display: inline-block;
}

.animated-underline::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  bottom: -4px;
  left: 0;
  background-color: #06b6d4;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.animated-underline:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

/* Estilo para el botón con efecto de brillo */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

/* Estilo para el botón con efecto de brillo */
.btn-glow {
  position: relative;
  overflow: hidden;
}

.btn-glow::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(30deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
    top: -100%;
  }
  100% {
    left: 100%;
    top: 100%;
  }
}

/* Estilo para las características */
.feature-item {
  display: flex;
  margin-bottom: 20px;
  position: relative;
  padding-left: 24px;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item::before {
  content: '';
  position: absolute;
  left: 3px;
  top: 10px;
  width: 8px;
  height: 8px;
  background-color: #06b6d4;
  border-radius: 50%;
}

.feature-item::after {
  content: '';
  position: absolute;
  left: -1px;
  top: 6px;
  width: 16px;
  height: 16px;
  border: 1px solid #06b6d4;
  border-radius: 50%;
  opacity: 0.5;
}


/* Dotos */
.dots-pattern.top-left {
  top: 0;
  left: 0;
  background-image: radial-gradient(circle, var(--buro-primary) 2px, transparent 2px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.dots-pattern.top-right {
  top: 0;
  right: 0;
  background-image: radial-gradient(circle, var(--buro-accent) 2px, transparent 2px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.dots-pattern.bottom-left {
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle, var(--buro-accent) 2px, transparent 2px);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.dots-pattern.bottom-right {
  bottom: 0;
  right: 0;
  background-image: radial-gradient(circle, var(--buro-primary) 2px, transparent 2px);
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

/* EFECTO NUEVO */
/* 
Efecto con rings pulsantes, que se vea tecnologico detras de la imagen. 
NO quiero un efecto sobra sobre la imagen. 
*/

/* Fondo tecnológico */
/* .tech-bg {
  background: radial-gradient(circle, rgba(5, 80, 176, 0.08) 0%, rgba(4, 60, 136, 0.05) 70%, rgba(255, 255, 255, 0) 100%);
} */

/* Anillos pulsantes mejorados */
.pulse-ring {
  opacity: 0;
  transform: scale(0.8);
  animation: ringPulse 4s infinite;
  border-width: 3px !important; /* Bordes más gruesos */
}

.ring1 {
  animation-delay: 0s;
}

.ring2 {
  animation-delay: 0.8s;
}

.ring3 {
  animation-delay: 1.6s;
}

.ring4 {
  animation-delay: 2.4s;
}

.ring5 {
  animation-delay: 3.2s;
}

@keyframes ringPulse {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  20% {
    opacity: 0.8; /* Mayor opacidad */
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Puntos tecnológicos en los anillos */
.tech-dots {
  position: relative;
}

.tech-dots::before,
.tech-dots::after {
  content: '';
  position: absolute;
  width: 10px; /* Puntos más grandes */
  height: 10px;
  border-radius: 50%;
  background-color: #0550b0;
  animation: dotPulse 3s infinite;
}

.dot-ring1::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0.5s;
}

.dot-ring1::after {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 2s;
}

.dot-ring2::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.dot-ring2::after {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 2.5s;
}

.dot-ring3::before {
  top: 30%;
  left: 30%;
  animation-delay: 1.5s;
}

.dot-ring3::after {
  bottom: 30%;
  right: 30%;
  animation-delay: 3s;
}

@keyframes dotPulse {
  0%, 100% {
    opacity: 0.5; /* Mayor opacidad base */
    box-shadow: 0 0 0 0 rgba(5, 80, 176, 0.6);
  }
  50% {
    opacity: 1;
    box-shadow: 0 0 0 8px rgba(5, 80, 176, 0.2); /* Resplandor más grande */
  }
}

/* Líneas de conexión tecnológicas mejoradas */
.tech-lines {
  position: relative;
}

.tech-lines::before,
.tech-lines::after,
.tech-lines .line1,
.tech-lines .line2 {
  content: '';
  position: absolute;
  background: linear-gradient(90deg, rgba(4, 60, 136, 0) 0%, rgba(5, 80, 176, 0.5) 50%, rgba(4, 60, 136, 0) 100%);
  height: 2px; /* Líneas más gruesas */
  width: 50%; /* Líneas más largas */
  animation: linePulse 4s infinite;
}

.tech-lines::before {
  top: 40%;
  left: 25%;
  transform: rotate(30deg);
  animation-delay: 0.5s;
}

.tech-lines::after {
  bottom: 40%;
  right: 25%;
  transform: rotate(-30deg);
  animation-delay: 2s;
}

/* Líneas adicionales */
.tech-lines::before {
  content: '';
  top: 30%;
  left: 30%;
  transform: rotate(45deg);
  animation-delay: 1s;
}

.tech-lines::after {
  content: '';
  bottom: 30%;
  right: 30%;
  transform: rotate(-45deg);
  animation-delay: 2.5s;
}

@keyframes linePulse {
  0% {
    opacity: 0;
    transform: scaleX(0) rotate(var(--rotation, 30deg));
  }
  50% {
    opacity: 0.8; /* Mayor opacidad */
    transform: scaleX(1) rotate(var(--rotation, 30deg));
  }
  100% {
    opacity: 0;
    transform: scaleX(0) rotate(var(--rotation, 30deg));
  }
}

/* Círculos de resplandor */
.glow-circle {
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 80, 176, 0.3) 0%, rgba(5, 80, 176, 0.1) 50%, rgba(5, 80, 176, 0) 70%);
  animation: glowPulse 5s infinite;
}

.circle1 {
  animation-delay: 0s;
}

.circle2 {
  animation-delay: 2.5s;
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.3;
    transform: scale(0.9);
  }
  50% {
    opacity: 0.7;
    transform: scale(1.1);
  }
}

/* Efecto general del contenedor */
.tech-effect-container {
  overflow: visible; /* Permitir que los anillos se extiendan más allá del contenedor */
}

/* Añadir un resplandor sutil a todo el contenedor */
.tech-effect-container::after {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(5, 80, 176, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}


/* Si eres dist */
/* Estilos para los anillos tecnológicos */
.tech-rings {
position: absolute;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
z-index: 1;
}

.ring {
position: absolute;
border-radius: 50%;
border: 3px solid rgba(6, 182, 212, 0.3); /* buro-cyan con opacidad */
opacity: 0;
animation: ringPulse 6s infinite;
}

.ring1 {
width: 90%;
height: 90%;
animation-delay: 0s;
}

.ring2 {
width: 75%;
height: 75%;
animation-delay: 2s;
}

.ring3 {
width: 60%;
height: 60%;
animation-delay: 4s;
}

@keyframes ringPulse {
0% {
  opacity: 0;
  transform: scale(0.8);
}
20% {
  opacity: 0.6;
  transform: scale(1);
}
50% {
  opacity: 0.3;
}
100% {
  opacity: 0;
  transform: scale(1.2);
}
}

/* Resplandor detrás de la imagen */
.phone-glow {
position: absolute;
width: 80%;
height: 80%;
top: 10%;
left: 10%;
background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(6, 182, 212, 0.1) 40%, rgba(6, 182, 212, 0) 70%);
border-radius: 50%;
z-index: 1;
animation: glowPulse 5s infinite alternate;
}

@keyframes glowPulse {
0% {
  opacity: 0.3;
  transform: scale(0.95);
}
100% {
  opacity: 0.6;
  transform: scale(1.05);
}
}

/* Iconos flotantes */
.floating-icons {
position: absolute;
width: 100%;
height: 100%;
z-index: 5;
}

.floating-icon {
position: absolute;
display: flex;
align-items: center;
justify-content: center;
z-index: 5;
}

.icon-bg {
width: 40px;
height: 40px;
background-color: rgba(255, 255, 255, 0.9);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
z-index: 2;
}

.icon-bg i {
font-size: 18px;
}

.pulse-circle {
position: absolute;
width: 100%;
height: 100%;
border-radius: 50%;
background-color: rgba(6, 182, 212, 0.2);
animation: iconPulse 2s infinite;
z-index: 1;
}

@keyframes iconPulse {
0% {
  transform: scale(1);
  opacity: 0.5;
}
100% {
  transform: scale(1.5);
  opacity: 0;
}
}

/* Posiciones de los iconos */
.icon-sms {
top: 15%;
left: 10%;
animation: floatAnimation 4s infinite ease-in-out;
}

.icon-call {
top: 20%;
right: 15%;
animation: floatAnimation 5s infinite ease-in-out 1s;
}

.icon-alert {
bottom: 20%;
left: 15%;
animation: floatAnimation 4.5s infinite ease-in-out 0.5s;
}

.icon-notification {
bottom: 25%;
right: 10%;
animation: floatAnimation 5.5s infinite ease-in-out 1.5s;
}

.icon-data {
top: 50%;
right: 5%;
animation: floatAnimation 4s infinite ease-in-out 2s;
}

@keyframes floatAnimation {
0%, 100% {
  transform: translateY(0);
}
50% {
  transform: translateY(-15px);
}
}

/* Líneas de conexión */
.connection-lines {
position: absolute;
width: 100%;
height: 100%;
z-index: 2;
}

.line {
position: absolute;
background: linear-gradient(90deg, rgba(6, 182, 212, 0) 0%, rgba(6, 182, 212, 0.5) 50%, rgba(6, 182, 212, 0) 100%);
height: 2px;
animation: linePulse 4s infinite;
}

.line1 {
top: 25%;
left: 20%;
width: 30%;
transform: rotate(30deg);
animation-delay: 0.5s;
}

.line2 {
top: 30%;
right: 20%;
width: 25%;
transform: rotate(-45deg);
animation-delay: 1.5s;
}

.line3 {
bottom: 30%;
left: 25%;
width: 20%;
transform: rotate(-20deg);
animation-delay: 1s;
}

.line4 {
bottom: 35%;
right: 15%;
width: 30%;
transform: rotate(15deg);
animation-delay: 2s;
}

@keyframes linePulse {
0% {
  opacity: 0;
  transform: scaleX(0) rotate(var(--rotation, 0deg));
}
50% {
  opacity: 0.7;
  transform: scaleX(1) rotate(var(--rotation, 0deg));
}
100% {
  opacity: 0;
  transform: scaleX(0) rotate(var(--rotation, 0deg));
}
}

/* Establecer rotaciones para las líneas */
.line1 { --rotation: 30deg; }
.line2 { --rotation: -45deg; }
.line3 { --rotation: -20deg; }
.line4 { --rotation: 15deg; }

/* Ajustes responsivos */
@media (max-width: 768px) {
.icon-bg {
  width: 30px;
  height: 30px;
}

.icon-bg i {
  font-size: 14px;
}

.floating-icon {
  /* Ajustar posiciones en móvil */
  &.icon-sms { left: 5%; }
  &.icon-call { right: 5%; }
  &.icon-alert { left: 8%; }
  &.icon-notification { right: 8%; }
  &.icon-data { right: 3%; }
}

.line {
  width: 20%; /* Líneas más cortas en móvil */
}
}

/* HERO EFFECTOS */

/* Variables de colores */
:root {
  --buro-primary: #003366;
  --buro-primary-light: #0a4da2;
  --buro-accent: #00b8e6;
  --buro-accent-light: #33d6ff;
  --buro-dark: #0A0F1E;
  --buro-gray: #6B7280;
  --buro-light: #F3F4F6;
}



@keyframes dots-float {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 20px 20px;
  }
}

.dots-pattern.top-left {
  top: 0;
  left: 0;
  background-image: radial-gradient(circle, var(--buro-primary) 2px, transparent 2px);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.dots-pattern.top-right {
  top: 0;
  right: 0;
  background-image: radial-gradient(circle, var(--buro-accent) 2px, transparent 2px);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.dots-pattern.bottom-left {
  bottom: 0;
  left: 0;
  background-image: radial-gradient(circle, var(--buro-accent) 2px, transparent 2px);
  clip-path: polygon(0 100%, 100% 100%, 0 0);
}

.dots-pattern.bottom-right {
  bottom: 0;
  right: 0;
  background-image: radial-gradient(circle, var(--buro-primary) 2px, transparent 2px);
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
}

.top-left {
  top: 10%;
  left: -60px;
  animation: slide-in-left 0.6s ease-out forwards 0.2s;
  opacity: 0;
}

.top-right {
  top: 10%;
  right: -60px;
  animation: slide-in-right 0.6s ease-out forwards 0.4s;
  opacity: 0;
}

.bottom-left {
  bottom: 10%;
  left: -60px;
  animation: slide-in-left 0.6s ease-out forwards 0.6s;
  opacity: 0;
}

.bottom-right {
  bottom: 10%;
  right: -60px;
  animation: slide-in-right 0.6s ease-out forwards 0.8s;
  opacity: 0;
}

@keyframes slide-in-left {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .phone-container {
    transform: perspective(1000px) rotateY(0) rotateX(0);
  }

  .phone-glow-enhanced {
    opacity: 0.6;
  }

  .radial-lines {
    opacity: 0.5;
  }

  .dots-pattern {
    opacity: 0.1;
    width: 200px;
    height: 200px;
  }

  .energy-effect {
    width: 150px;
    height: 300px;
  }

  .phone-frame {
    width: 220px;
    height: 460px;
  }
}

@media (max-width: 480px) {
  .dots-pattern {
    width: 150px;
    height: 150px;
    opacity: 0.08;
  }

  .phone-glow-enhanced {
    width: 200px;
    height: 400px;
  }

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

  .app-store-btn {
    width: 100%;
    justify-content: center;
  }
}

/* EFECTO COBRANZA */
/* Estilos para las tarjetas en grid */
.card-grid {
  position: relative;
  background: linear-gradient(145deg, rgba(75, 85, 99, 0.3), rgba(55, 65, 81, 0.1));
  border-left: 2px solid rgba(6, 182, 212, 0.3);
  box-shadow: 
    -5px 5px 10px rgba(0, 0, 0, 0.2),
    5px -5px 10px rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-grid:hover {
  background: linear-gradient(145deg, rgba(75, 85, 99, 0.4), rgba(55, 65, 81, 0.2));
  border-left: 2px solid rgba(6, 182, 212, 0.8);
  box-shadow: 
    0 10px 15px rgba(0, 0, 0, 0.3),
    0 -5px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.card-grid::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 20px 0;
  border-color: transparent rgba(6, 182, 212, 0.3) transparent transparent;
  transition: all 0.3s ease;
}

.card-grid:hover::before {
  border-color: transparent rgba(6, 182, 212, 0.8) transparent transparent;
  border-width: 0 25px 25px 0;
}

/* Animación para la entrada de las tarjetas */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.grid > div {
  animation: fadeInScale 0.5s ease-out forwards;
  opacity: 0;
}

.grid > div:nth-child(1) {
  animation-delay: 0.1s;
}

.grid > div:nth-child(2) {
  animation-delay: 0.2s;
}

.grid > div:nth-child(3) {
  animation-delay: 0.3s;
}

.grid > div:nth-child(4) {
  animation-delay: 0.4s;
}

/* Malla tecnológica de fondo */
.tech-grid {
  background-image: 
    linear-gradient(to right, rgba(6, 182, 212, 0.15) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(6, 182, 212, 0.15) 1px, transparent 1px);
  background-size: 30px 30px;
  transform: perspective(500px) rotateX(60deg);
  transform-origin: center top;
}

/* Partículas de datos */
.data-particles {
  background-image: radial-gradient(rgba(6, 182, 212, 0.5) 1px, transparent 1px);
  background-size: 20px 20px;
}

/* Líneas de conexión */
/* .connection-lines {
  background-image: 
    linear-gradient(45deg, rgba(6, 182, 212, 0.15) 25%, transparent 25%, transparent 50%, rgba(6, 182, 212, 0.15) 50%, rgba(6, 182, 212, 0.15) 75%, transparent 75%, transparent);
  background-size: 40px 40px;
  animation: move-lines 20s linear infinite;
} */

@keyframes move-lines {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 40px 40px;
  }
}

/* Círculo tecnológico */
.tech-circle {
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(6, 182, 212, 0.3);
  background: 
    radial-gradient(circle at center, rgba(6, 182, 212, 0.15) 0%, transparent 70%),
    linear-gradient(rgba(156, 163, 175, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(156, 163, 175, 0.15) 1px, transparent 1px);
  background-size: 100% 100%, 10px 10px, 10px 10px;
  animation: rotate-tech 30s linear infinite;
}

@keyframes rotate-tech {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Anillo de datos */
.data-ring {
  border: 2px dashed rgba(6, 182, 212, 0.4);
  border-radius: 50%;
  animation: rotate-data-ring 60s linear infinite;
}

@keyframes rotate-data-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}

/* Puntos de datos alrededor del teléfono */
.data-points {
  overflow: hidden;
}

.data-point {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: rgba(6, 182, 212, 0.8);
  border-radius: 50%;
  filter: blur(1px);
  box-shadow: 0 0 5px rgba(6, 182, 212, 0.8);
}

/* Animación flotante para el dispositivo */
.device-float {
  animation: device-float 6s ease-in-out infinite;
}

@keyframes device-float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Animaciones para el contenido */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.8s ease-out forwards;
}

.delay-200 {
  animation-delay: 0.2s;
}

