/* Colores  */
:root {
  --color-white: #ffffff;
  --color-light-teal: #8ccbd5;
  --color-medium-teal: #5e9f9f;
  --color-dark-teal: #295b62;
  --color-very-dark-teal: #3f797a;
  --color-black: #000000;
  --color-gray: #f5f5f5;
  --color-dark-gray: #333333;
  --color-neon-teal: #8ccbd5;
  --color-dark-blue: #102030;
  --color-darker-blue: #0a1520;
  --font-family: "Poppins", sans-serif;
  --glow-shadow: 0 0 10px rgba(140, 203, 213, 0.7), 0 0 20px rgba(140, 203, 213, 0.4), 0 0 30px rgba(140, 203, 213, 0.1);
  --circuit-color: rgba(140, 203, 213, 0.3);
}

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

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--color-white);
  background-color: var(--color-dark-blue);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}



/* ===== NUEVOS ESTILOS PARA AQUILES A1 REDISEÑADO ===== */

/* Hero Section Nueva */
.a1-hero-new {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--color-darker-blue) 0%,
    var(--color-dark-blue) 50%,
    var(--color-very-dark-teal) 100%
  );
}

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

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(140, 203, 213, 0.3)"/><circle cx="80" cy="40" r="1" fill="rgba(140, 203, 213, 0.2)"/><circle cx="40" cy="80" r="1" fill="rgba(140, 203, 213, 0.4)"/></svg>');
  background-size: 200px 200px;
  animation: particleFloat 20s linear infinite;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
  }
  100% {
    transform: translateY(-100px) translateX(100px);
  }
}

.hero-content-new {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.hero-title-new {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.1;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(50px);
  animation: titleReveal 1s ease forwards;
}

.title-line:nth-child(1) {
  animation-delay: 0.2s;
}

.title-line:nth-child(2) {
  animation-delay: 0.4s;
}

.title-line.highlight {
  background: linear-gradient(45deg, var(--color-neon-teal), var(--color-light-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: none;
  position: relative;
}

.title-line.highlight::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-neon-teal), transparent);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.8);
  animation: glowLine 2s ease infinite alternate;
}

@keyframes titleReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes glowLine {
  0% {
    opacity: 0.5;
    transform: translateX(-50%) scaleX(0.8);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.2);
  }
}

.hero-subtitle-new {
  font-size: 1.5rem;
  color: var(--color-light-teal);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.6s;
}

.hero-description-new {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 1s;
}

.scroll-indicator span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-arrow {
  width: 40px;
  height: 40px;
  border: 2px solid var(--color-neon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.scroll-arrow i {
  color: var(--color-neon-teal);
  font-size: 1.2rem;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Video Scroll Section */
.video-scroll-section {
  min-height: 300vh;
  position: relative;
  background: var(--color-dark-blue);
}

.video-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#scroll-video {
  width: 90%;
  max-width: 1200px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(140, 203, 213, 0.3);
  border: 2px solid rgba(140, 203, 213, 0.2);
  transition: all 0.3s ease;
}

#scroll-video:hover {
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(140, 203, 213, 0.4);
}

/* Video Progress */
.video-progress {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 100;
  background: rgba(16, 32, 48, 0.9);
  padding: 20px;
  border-radius: 15px;
  border: 1px solid rgba(140, 203, 213, 0.3);
  backdrop-filter: blur(10px);
  min-width: 200px;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: rgba(140, 203, 213, 0.2);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 15px;
  position: relative;
}

.progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--color-neon-teal), var(--color-light-teal));
  border-radius: 3px;
  width: var(--progress, 0%);
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(140, 203, 213, 0.6);
}

.progress-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

#progress-percentage {
  font-weight: 600;
  color: var(--color-neon-teal);
  font-size: 1.1rem;
}

.progress-text span:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* Hotspots */
.hotspots-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.video-hotspot {
  position: absolute;
  width: 60px;
  height: 60px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: auto;
  cursor: pointer;
  z-index: 10;
}

.video-hotspot.active {
  opacity: 1;
  transform: scale(1);
}

.hotspot-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--color-neon-teal);
  border-radius: 50%;
  animation: hotspotPulse 2s infinite;
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.8);
}

@keyframes hotspotPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    box-shadow: 0 0 0 0 rgba(140, 203, 213, 0.7);
  }
  70% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 0 20px rgba(140, 203, 213, 0);
  }
  100% {
    transform: translate(-50%, -50%) scale(0.8);
    box-shadow: 0 0 0 0 rgba(140, 203, 213, 0);
  }
}

.hotspot-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(16, 32, 48, 0.95);
  border: 2px solid rgba(140, 203, 213, 0.3);
  border-radius: 15px;
  padding: 25px;
  min-width: 350px;
  max-width: 400px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(140, 203, 213, 0.3);
  z-index: 1000;
}

.video-hotspot:hover .hotspot-content {
  opacity: 1;
  visibility: visible;
}

.hotspot-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid rgba(140, 203, 213, 0.3);
}

.hotspot-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.2), rgba(140, 203, 213, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--color-neon-teal);
  font-size: 1.5rem;
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.4);
}

.hotspot-info h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-neon-teal);
}

.hotspot-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 15px;
  line-height: 1.6;
}

.hotspot-info ul {
  list-style: none;
  padding: 0;
}

.hotspot-info ul li {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 0.9rem;
}

.hotspot-info ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-neon-teal);
  font-weight: bold;
}

/* Technical Specifications Nueva */
.tech-specs-new {
  padding: 120px 0;
  background: linear-gradient(135deg, rgba(16, 32, 48, 0.8) 0%, rgba(41, 91, 98, 0.6) 100%);
  position: relative;
  overflow: hidden;
}

.tech-specs-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60" viewBox="0 0 60 60"><rect width="60" height="60" fill="none"/><path d="M0,30L60,30M30,0L30,60" stroke="rgba(140, 203, 213, 0.1)" stroke-width="1"/></svg>');
  background-size: 60px 60px;
  opacity: 0.3;
}

.specs-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-title-new {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-neon-teal), var(--color-light-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-hidden{
  text-align: center;
  font-size: 1.3rem;
  animation: shake 2s ease-in-out infinite;
  color: var(--color-neon-teal);
  font-weight: 500;
  text-shadow: 0 0 10px rgba(140, 203, 213, 0.6);
  min-height: 2rem;
  display: block;
}

.text-hidden[style*="display: none"] {
  display: block !important;
  visibility: hidden;
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-2px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(2px);
  }
}

.section-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.specs-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.spec-category-new {
  background: rgba(16, 32, 48, 0.7);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(140, 203, 213, 0.2);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.spec-category-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.spec-category-new:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(140, 203, 213, 0.3);
  border-color: rgba(140, 203, 213, 0.4);
}

.spec-category-new:hover::before {
  opacity: 1;
}

.spec-icon-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.2), rgba(140, 203, 213, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--color-neon-teal);
  font-size: 2rem;
  box-shadow: 0 0 30px rgba(140, 203, 213, 0.4);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.spec-category-new:hover .spec-icon-new {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 0 40px rgba(140, 203, 213, 0.6);
}

.spec-category-new h3 {
  font-size: 1.5rem;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.spec-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.spec-item-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  background: rgba(10, 20, 30, 0.5);
  border-radius: 10px;
  border: 1px solid rgba(140, 203, 213, 0.1);
  transition: all 0.3s ease;
}

.spec-item-new:hover {
  background: rgba(10, 20, 30, 0.7);
  border-color: rgba(140, 203, 213, 0.3);
  transform: translateX(5px);
}

.spec-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.spec-value {
  color: var(--color-neon-teal);
  font-weight: 600;
  font-size: 1.1rem;
}

/* Benefits Section Nueva */
.benefits-new {
  padding: 120px 0;
  background: var(--color-dark-blue);
  position: relative;
}

.benefits-header {
  text-align: left;
  margin-bottom: 80px;
}

.benefits-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.benefit-card-new {
  background: rgba(16, 32, 48, 0.6);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(140, 203, 213, 0.2);
  position: relative;
  overflow: hidden;
}

.benefit-card-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.benefit-card-new:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(140, 203, 213, 0.3);
}

.benefit-card-new:hover::before {
  opacity: 1;
}

.benefit-icon-new {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.2), rgba(140, 203, 213, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: var(--color-neon-teal);
  font-size: 2rem;
  box-shadow: 0 0 30px rgba(140, 203, 213, 0.4);
  transition: all 0.5s ease;
  position: relative;
  z-index: 2;
}

.benefit-card-new:hover .benefit-icon-new {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 0 40px rgba(140, 203, 213, 0.6);
}

.benefit-card-new h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.benefit-card-new p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/* CTA Section Nueva */
.cta-new {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--color-very-dark-teal) 0%, var(--color-dark-blue) 100%);
  position: relative;
  overflow: hidden;
}

.cta-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(140, 203, 213, 0.1) 0%, transparent 70%);
}

.cta-content-new {
  text-align: left;
  position: relative;
  z-index: 2;
}

.cta-content-new h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--color-neon-teal), var(--color-light-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content-new p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.btn-primary-new,
.btn-secondary-new {
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-new {
  background: linear-gradient(45deg, var(--color-neon-teal), var(--color-light-teal));
  color: var(--color-dark-blue);
  border: none;
  box-shadow: 0 10px 30px rgba(140, 203, 213, 0.4);
}

.btn-primary-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(140, 203, 213, 0.6);
  color: var(--color-dark-blue);
}

.btn-secondary-new {
  background: transparent;
  color: var(--color-neon-teal);
  border: 2px solid var(--color-neon-teal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-secondary-new:hover {
  background: rgba(140, 203, 213, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: var(--color-neon-teal);
}

/* Responsive para las nuevas secciones */
@media (max-width: 1024px) {
  .hero-title-new {
    font-size: 4rem;
  }

  .section-title-new {
    font-size: 2.5rem;
  }

  .cta-content-new h2 {
    font-size: 2.5rem;
  }

  #scroll-video {
    width: 95%;
  }

  .video-progress {
    right: 20px;
    min-width: 180px;
  }

  .hotspot-content {
    min-width: 300px;
    max-width: 350px;
  }
}

@media (max-width: 1000px) {
  .hero-title-new {
    font-size: 3rem;
  }

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

  .cta-content-new h2 {
    font-size: 2rem;
  }

  .exo-image-container {
    min-height: 450px; /* Ajustar altura para tablets */
  }

  .video-progress {
    position: fixed;
    bottom: 20px;
    right: 20px;
    top: auto;
    transform: none;
    min-width: 150px;
  }

  .hotspot-content {
    min-width: 250px;
    max-width: 280px;
    padding: 20px;
  }

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

  .btn-primary-new,
  .btn-secondary-new {
    width: 100%;
    max-width: 300px;
  }

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}

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

  .hero-subtitle-new {
    font-size: 1.2rem;
  }

  .hero-description-new {
    font-size: 1rem;
  }

  .section-title-new {
    font-size: 1.8rem;
  }

  .exo-image-container {
    min-height: 350px; /* Ajustar altura para móviles pequeños */
  }

  .cta-content-new h2 {
    font-size: 1.8rem;
  }

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

  .hotspot-content {
    min-width: 200px;
    max-width: 250px;
    padding: 15px;
  }

  .hotspot-info h3 {
    font-size: 1.1rem;
  }

  .hotspot-info p {
    font-size: 0.9rem;
  }
}

@media (max-width: 700px) {
  body .hero-image {
    display: none !important;
  }
  .hero-description {
    display: none !important;
  }
  .exo-image-container {
    width: 100%; /* Asegurar que el contenedor ocupe todo el ancho */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .exo-main-image,
  img[src*='BACK.png'] {
    max-width: 85% !important; /* Reducir un poco para dar espacio a los hotspots */
    width: auto !important; /* Permitir que mantenga proporciones */
  }
  
  /* Posicionamiento específico del botón "Dar la vuelta" en pantallas pequeñas */
  #hotspot-volver {
    left: 75% !important; 
    height: auto !important;
    object-fit: contain; 
  }
}

/* Media query específica para 560px */
@media (max-width: 560px) {
  .exo-image-container {
    min-height: 450px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .exo-main-image,
  img[src*='BACK.png'] {
    max-width: 88% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
}

@media (max-width: 500px) {
  .exo-image-container {
    min-height: 400px; /* Reducir altura mínima en pantallas muy pequeñas */
    width: 100%; /* Asegurar que el contenedor ocupe todo el ancho */
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .exo-main-image,
  img[src*='BACK.png'] {
    max-width: 90% !important; /* Usar casi todo el ancho disponible pero mantener proporciones */
    width: auto !important; /* Permitir que mantenga proporciones */
    height: auto !important;
    object-fit: contain; /* Mantener proporciones */
  }
}

/* Media query específica para 460px */
@media (max-width: 460px) {
  .exo-image-container {
    min-height: 420px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .exo-main-image,
  img[src*='BACK.png'] {
    max-width: 89% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
}

/* Media query específica para 400px */
@media (max-width: 400px) {
  .exo-image-container {
    min-height: 400px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .exo-main-image,
  img[src*='BACK.png'] {
    max-width: 90.5% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
}

/* Media query específica para 360px */
@media (max-width: 360px) {
  .exo-image-container {
    min-height: 380px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .exo-main-image,
  img[src*='BACK.png'] {
    max-width: 92% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
  }
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-dark-blue);
  z-index: -1;
}

/*Sponsors y Aquiles A1 */

/* Page Header (usado en CASI TODAS las páginas) */
.page-header {
  padding: 100px 0 50px;
  text-align: left;
  background: linear-gradient(135deg, var(--color-darker-blue) 0%, var(--color-dark-blue) 100%);
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
  /* DUDA */
  /* color: var(--color-neon-teal);
  border: 1px solid rgba(140, 203, 213, 0.4); */
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Sponsors Section */
.sponsors-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

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

/* Cuando el grid está en modo de 2 columnas (895px a 1335px), centrar el último sponsor */
@media (min-width: 895px) and (max-width: 1335px) {
  .sponsors-grid .sponsor-card:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: 100%;
    max-width: 600px;
  }
}

.sponsor-card {
  background-color: rgba(16, 32, 48, 0.7);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 203, 213, 0.2);
  border: 1px solid rgba(140, 203, 213, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 520px; /* Adjust as needed for your design */
}

.sponsor-card .image-section {
  flex-shrink: 0;
}

.content-section {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  justify-content: space-between;
  height: 100%;
}

.sponsor-description {
  flex-grow: 1;
}

.sponsor-features {
  margin-top: auto;
}

.sponsor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(140, 203, 213, 0.4);
}

.sponsor-logo {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.2), rgba(140, 203, 213, 0.1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: var(--color-neon-teal);
  border: 2px solid rgba(140, 203, 213, 0.3);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.3);
}

.sponsor-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.sponsor-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.sponsor-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: rgba(16, 32, 48, 0.5);
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(140, 203, 213, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background-color: rgba(16, 32, 48, 0.7);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(140, 203, 213, 0.2);
}

.feature-item i {
  color: var(--color-neon-teal);
  font-size: 1.2rem;
}

.feature-item span {
  text-align: center;
  flex: 1;
}

/* Sponsor CTA Section */
.sponsor-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(16, 32, 48, 0.9) 0%, rgba(41, 91, 98, 0.8) 100%);
  position: relative;
  overflow: hidden;
  /* margin-bottom: 60px; DUDA */
}

.sponsor-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="none"/><path d="M0,0L100,100" stroke="rgba(140, 203, 213, 0.1)" stroke-width="1"/><path d="M100,0L0,100" stroke="rgba(140, 203, 213, 0.1)" stroke-width="1"/></svg>');
  background-size: 30px 30px;
  opacity: 0.3;
  z-index: 0;
}

.cta-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Mover la sección ¡Contáctanos! hacia abajo cuando la pantalla sea menor a 895px */
@media (max-width: 894px) {
  .cta-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  
  .cta-text {
    order: 1;
  }
  
  .cta-action {
    order: 2;
  }
}


.cta-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 30px;
}

/* Hacer que benefit-item sea una sola columna cuando la pantalla sea menor a 440px */
@media (max-width: 439px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-item {
  background-color: rgba(16, 32, 48, 0.6);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(140, 203, 213, 0.2);
  text-align: left;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(140, 203, 213, 0.3);
}

.benefit-item i {
  font-size: 2rem;
  color: var(--color-neon-teal);
  margin-bottom: 15px;
  display: block;
}

.benefit-item h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.cta-action {
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-card {
  background-color: rgba(16, 32, 48, 0.8);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 203, 213, 0.2);
  border: 1px solid rgba(140, 203, 213, 0.3);
  text-align: left;
  width: 100%;
}

.cta-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cta-card p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
}

.instagram-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  font-weight: 600;
  margin-bottom: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.instagram-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  color: white;
  text-shadow: none;
}

.instagram-btn i {
  font-size: 1.5rem;
}

.contact-info {
  text-align: left;
  margin-top: 20px;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-info i {
  color: var(--color-neon-teal);
}

/* Partnership Types Section */
.partnership-types {
  padding: 80px 0;
}

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

.partnership-card {
  background-color: rgba(16, 32, 48, 0.5);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.partnership-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(140, 203, 213, 0.3);
}

.partnership-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(140, 203, 213, 0.1);
  color: var(--color-neon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.3);
}

.partnership-card:hover .partnership-icon {
  transform: rotateY(360deg);
  background-color: rgba(140, 203, 213, 0.2);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.5);
}

.partnership-card h3 {
  margin-bottom: 15px;
}

.partnership-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Imagen Mobile Hero - Solo visible en dispositivos móviles */
.mobile-hero-image {
  display: none;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: linear-gradient(135deg, var(--color-darker-blue) 0%, var(--color-dark-blue) 100%);
}

.mobile-hero-image img {
  max-width: 80%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(140, 203, 213, 0.6));
}

/* A1 Hero Section */
.a1-hero {
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
  position: relative;
  overflow: hidden;
}

.a1-hero-content {
  display: flex;
  align-items: center;
 
}

.a1-hero-text {
  flex: 1;
}

.a1-hero-text h2 {
  font-size: 2.8rem;
  margin-bottom: 0px;
}

.a1-subtitle {
  font-size: 1.4rem;
  color: var(--color-light-teal);
  margin-bottom: 20px;
}

.a1-description {
  font-size: 1.5rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
}

.a1-specs {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}

.spec-item {
  text-align: center;
  background-color: rgba(16, 32, 48, 0.6);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(140, 203, 213, 0.2);
  transition: all 0.3s ease;
  flex: 1;
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.3);
}

.spec-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(140, 203, 213, 0.3);
}

.spec-item i {
  font-size: 2rem;
  color: var(--color-neon-teal);
  margin-bottom: 10px;
  display: block;
}

.spec-item span {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-neon-teal);
  display: block;
  margin-bottom: 5px;
}

.spec-item small {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.a1-hero-image {
  flex: 1;
  text-align: center;
}

.a1-hero-image-hidden {
  display: none;
  height: 70vh;
  filter: drop-shadow(0 0 30px rgba(140, 203, 213, 0.6));
  margin: auto;
  border-top:  2px solid var(--color-neon-teal);
  border-bottom: 2px solid var(--color-neon-teal);
  margin-top: 60px;
  margin-bottom: 60px;
}


.a1-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(140, 203, 213, 0.6));
  display: block;
  margin: 0 auto;
}

.a1-img-wrapper {
  overflow: hidden;
  display: inline-block;
  max-width: 100%;
}

/* Funcionamiento Section */
.funcionamiento {
  /* padding: 20px 0; */
  position: relative;
  overflow: hidden;
  background-color: rgba(16, 32, 48, 0.5);
  /* border-radius: 20px; */
  /* margin-top: 40px; */
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.funcionamiento-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.funcionamiento-step {
  display: flex;
  gap: 30px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: rgba(140, 203, 213, 0.1);
  color: var(--color-neon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.3);
  border: 2px solid rgba(140, 203, 213, 0.3);
  position: relative;
  z-index: 2;
}

.funcionamiento-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 60px;
  left: 30px;
  width: 2px;
  height: 151.5px;
  /* height: calc(100% + 40px); */
  background: linear-gradient(to bottom, rgba(140, 203, 213, 0.5), rgba(140, 203, 213, 0.1));
  z-index: 1;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.step-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
  line-height: 1.8;
}

.step-features {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.step-features span {
  background-color: rgba(16, 32, 48, 0.6);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(140, 203, 213, 0.2);
  transition: all 0.3s ease;
}

.step-features span:hover {
  background-color: rgba(16, 32, 48, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 10px rgba(140, 203, 213, 0.2);
}

.step-features span i {
  color: var(--color-neon-teal);
}

/* Componentes Técnicos Section */
.componentes-tecnicos {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.componente-image {
  position: relative;
}

.componente-img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(140, 203, 213, 0.6));
}

.componente-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.marker {
  position: absolute;
  cursor: pointer;
}

.marker-dot {
  width: 20px;
  height: 20px;
  background-color: var(--color-neon-teal);
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.7);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(140, 203, 213, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(140, 203, 213, 0);
  }
  100% {
    transform: scale(0.8);
    box-shadow: 0 0 0 0 rgba(140, 203, 213, 0);
  }
}

.marker-label {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(16, 32, 48, 0.8);
  color: var(--color-neon-teal);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  border: 1px solid rgba(140, 203, 213, 0.3);
}

.marker:hover .marker-label {
  opacity: 1;
  transform: translateX(-50%) translateY(-5px);
}

.componente-details {
  position: relative;
}

.componente-panel {
  display: none;
  animation: fadeIn 0.5s ease;
}

.componente-panel.active {
  display: block;
}

.componente-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.componente-panel h3 i {
  color: var(--color-neon-teal);
}

.componente-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.8;
}

.componente-panel ul {
  background-color: rgba(16, 32, 48, 0.5);
  padding: 20px 20px 20px 40px;
  border-radius: 10px;
  border: 1px solid rgba(140, 203, 213, 0.2);
  list-style-type: disc;
}

.componente-panel ul li {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  line-height: 1.6;
}

.componente-panel ul li::marker {
  color: var(--color-neon-teal);
}

/* Beneficios A1 Section */
.beneficios-a1 {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.beneficios-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.beneficio-card {
  background-color: rgba(16, 32, 48, 0.5);
  padding: 40px 30px;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.beneficio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(140, 203, 213, 0.3);
}

.beneficio-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(140, 203, 213, 0.1);
  color: var(--color-neon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.3);
}

.beneficio-card:hover .beneficio-icon {
  transform: rotateY(360deg);
  background-color: rgba(140, 203, 213, 0.2);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.5);
}

.beneficio-card h3 {
  margin-bottom: 15px;
}

.beneficio-card p {
  color: rgba(255, 255, 255, 0.8);
}

/* Especificaciones Section */
.especificaciones {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(16, 32, 48, 0.5);
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.specs-category {
  background-color: rgba(16, 32, 48, 0.7);
  padding: 30px;
  border-radius: 10px;
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.specs-category h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.specs-category h3 i {
  color: var(--color-neon-teal);
}

.specs-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(140, 203, 213, 0.2);
}

.spec-label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.spec-value {
  color: var(--color-neon-teal);
  font-weight: 600;
}



/* Media query específica para menores a 600px - una sola columna */
@media (max-width: 599px) {
  .specs-grid {
    grid-template-columns: 1fr; /* Una sola columna en pantallas pequeñas */
  }
  .sponsors-grid {
    grid-template-columns: 1fr; /* Una sola columna en pantallas pequeñas */
  }
  
  /* Hacer que el último sponsor tenga el mismo tamaño que los otros en una sola columna */
  .sponsor-card:last-child {
    grid-column: 1 !important;
    justify-self: stretch !important;
    width: auto !important;
    max-width: none !important;
  }
  
  /* Mover la sección "Contáctanos" al final en mobile */
  .sponsors-section {
    display: flex;
    flex-direction: column;
  }
  
  .sponsors-grid {
    order: 1;
  }
  
  .cta-action {
    order: 2;
  }


  .partnership-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .a1-specs {
    gap: 15px;
  }

  .a1-hero-image {
    display: none;
  }

  .a1-hero-image-hidden {
    display: block;
  }

  .funcionamiento-step {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }
  
  .step-number {
    margin-top: 5px;
  }
  
  .step-content {
    text-align: left;
  }

  .funcionamiento-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 63px;
    left: 30px;
    width: 2px;
    height: calc(100% - 15px);
    background: linear-gradient(to bottom, rgba(140, 203, 213, 0.5), rgba(140, 203, 213, 0.1));
    z-index: 1;
  }

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

  /* .specs-grid {
    grid-template-columns: 1fr; /* Una sola columna en mobile muy pequeño */
  /* } */

  .hero-cta {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
}

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

  .a1-hero-text h2 {
    font-size: 2.2rem;
    margin-top: 10px;
  }
  
  /* Ocultar imagen mobile en mobile view */
  .mobile-hero-image {
    display: none;
  }
  
  /* Ocultar imagen del hero section en mobile */
  .a1-hero-image {
    display: none;
  }
  
  /* Ajustar el hero content para mobile */
  .a1-hero-content {
    flex-direction: column;
    text-align: center;
  }
}

.container {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}


.container1 {
  /* width: 100%;
  max-width: 1700px; */
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
  margin-left: 50px;
}
@media (max-width: 1000px) {
  .container1 {
    margin-left: 0px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-neon-teal);
  margin-bottom: 1rem;
  font-weight: 600;
  text-shadow: var(--glow-shadow);
}

a {
  text-decoration: none;
  color: var(--color-light-teal);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

a:hover {
  color: var(--color-neon-teal);
  text-shadow: var(--glow-shadow);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.btn {
  display: inline-block;
  background-color: transparent;
  color: var(--color-neon-teal);
  padding: 12px 24px;
  border: 1px solid var(--color-neon-teal);
  border-radius: 4px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-shadow: 0 0 5px rgba(140, 203, 213, 0.7);
  box-shadow: 0 0 10px rgba(140, 203, 213, 0.3);
}

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

.btn:hover {
  background-color: rgba(140, 203, 213, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.5);
}

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

.btn:active {
  transform: translateY(-1px);
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(16, 32, 48, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(140, 203, 213, 0.2);
  transition: all 0.4s ease;
}

.header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.logo {
  padding-top: 11.085px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
  margin-left: -80px; /* Adjust this value to move logo left */
}
@media(max-width:1000px){
  .logo{
    margin-left: 0px;
  }
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 0 8px rgba(140, 203, 213, 0.7));
}

.nav-left,
.nav-right {
  display: flex;
}

.nav-left ul,
.nav-right ul {
  display: flex;
  gap: 30px;
}

.nav-left a,
.nav-right a {
  font-weight: 500;
  position: relative;
  color: var(--color-light-teal);
  transition: all 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover,
.nav-left a.active,
.nav-right a.active {
  color: var(--color-neon-teal);
  text-shadow: var(--glow-shadow);
}

.nav-left a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-neon-teal);
  transition: width 0.3s ease;
  box-shadow: var(--glow-shadow);
}

.nav-left a:hover::after,
.nav-right a:hover::after,
.nav-left a.active::after,
.nav-right a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  font-size: 24px;
  color: var(--color-neon-teal);
  transition: transform 0.3s ease, text-shadow 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
  text-shadow: var(--glow-shadow);
}

.mobile-menu {
  display: none;
  background-color: rgba(16, 32, 48, 0.95);
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  position: absolute;
  left: 0;
  top: 100%;
  width: 50%;
  height: auto;
  z-index: 99;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateX(-100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  border: 1px solid rgba(140, 203, 213, 0.2);
  border-top: none;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  color: var(--color-light-teal);
  transition: all 0.3s ease;
  transform: translateX(-20px);
  opacity: 0;
  animation: slideIn 0.5s forwards;
}

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

.mobile-menu a:nth-child(1) {
  animation-delay: 0.1s;
}
.mobile-menu a:nth-child(2) {
  animation-delay: 0.2s;
}
.mobile-menu a:nth-child(3) {
  animation-delay: 0.3s;
}
.mobile-menu a:nth-child(4) {
  animation-delay: 0.4s;
}

.mobile-menu a:hover {
  color: var(--color-neon-teal);
  padding-left: 10px;
  text-shadow: var(--glow-shadow);
}

.mobile-menu a.active {
  color: var(--color-neon-teal);
  font-weight: 700;
  text-shadow: var(--glow-shadow);
}

/* Hero Section */
.hero {
  padding-top: 48px;
  position: relative;
  min-height: 140vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: var(--color-dark-blue);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("public/images/network-bg.png");
  background-size: cover;
  opacity: 0.2;
  z-index: 0;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.hero-text {
  /* Remove global flex for desktop */
  padding-right: 40px;
}

.hero-title {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
  position: relative;
  display: inline-block;
}

.hero-title span {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.hero-title span:nth-child(1) {
  animation-delay: 0.2s;
}
.hero-title span:nth-child(2) {
  animation-delay: 0.4s;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: var(--color-light-teal);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.6s;
}

.hero-description {
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards 0.8s;
}

.hero-cta {
  display: flex;
  flex-direction: row;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  order: 0;
}

.hero-image {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exo-image {
  max-width: 80%;
  height: 80%;
  filter: drop-shadow(0 0 15px rgba(140, 203, 213, 0.3));
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s forwards 0.5s;
  background-blend-mode: screen;
  mix-blend-mode: screen;
}


/* Features Section */
.features {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-neon-teal), transparent);
  box-shadow: var(--glow-shadow);
}

.carousel-section {
  padding: 30px 0px 70px;
  position: relative;
  text-align: center;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.video-wrapper {
  position: relative;
  width: calc(100% - 40px);
  max-width: 1400px;
  margin: 40px auto 0;
  padding-bottom: 56.25%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35), 0 0 20px rgba(140, 203, 213, 0.25);
  border: 1px solid rgba(140, 203, 213, 0.2);
  background: rgba(16, 32, 48, 0.6);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Responsive adjustments for video */
@media (max-width: 768px) {
  .carousel-section {
    padding: 40px 0;
  }
  
  .video-wrapper {
    width: calc(100% - 30px);
    margin: 20px auto 0;
    border-radius: 12px;
  }
}
@media (max-width: 700px) {
  .video-wrapper {
    padding-bottom: 50%;
  }
}
@media (min-width: 700px) and (max-width: 1000px) {
  .video-wrapper {
    padding-bottom: 60%;
  }
}
@media (min-width: 1000px) {
  .video-wrapper {
    padding-bottom: 35%;
  }
}



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

.feature-card {
  background-color: rgba(16, 32, 48, 0.5);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(140, 203, 213, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.05) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
}

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

.feature-card h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.feature-card h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-neon-teal), transparent);
  transition: width 0.3s ease;
  box-shadow: var(--glow-shadow);
}

.feature-card:hover h2::after {
  width: 100px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

/* Exoskeleton Showcase Section - Nueva versión interactiva */
.exo-showcase {
  padding: 75px 0;
  position: relative;
  overflow: hidden;
  background-color: rgba(16, 32, 48, 0.8);
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.exo-showcase::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("public/images/network-bg.png");
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);

}

.showcase-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.exo-model {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
}

.exo-image-container {
  flex: 1;
  position: relative;
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.exo-main-image {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(140, 203, 213, 0.4));
  mix-blend-mode: normal;
}

.hotspot {
  position: absolute;
  width: 30px;
  height: 30px;
  cursor: pointer;
  z-index: 10;
}

.hotspot-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-neon-teal);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(140, 203, 213, 0.8);
  z-index: 2;
}

.hotspot-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 30px;
  border: 2px solid var(--color-neon-teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: 1;
}

.hotspot-label {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(16, 32, 48, 0.9);
  color: var(--color-neon-teal);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 1px solid rgba(140, 203, 213, 0.3);
  box-shadow: 0 0 10px rgba(140, 203, 213, 0.3);
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
}

.hotspot:hover .hotspot-label {
  opacity: 1;
}

/* Estilo específico para el hotspot del botón "Dar la vuelta" */
#hotspot-volver .hotspot-label {
  position: relative;
  top: 0;
  left: 0;
  transform: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  white-space: nowrap;
  opacity: 1;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  box-shadow: 
    inset 0 0px 50px rgba(140, 203, 213, 0.1),
    0 0px 100px rgba(140, 203, 213, 0.5),
    0 0 0 2px rgba(140, 203, 213, 0.3),
    0 0 25px rgba(140, 203, 213, 0.8),
    0 0 50px rgba(140, 203, 213, 0.4);
   padding: 6px 6px;
   border-radius: 6px;
  width: 100%;
  min-width: fit-content;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: auto;
}

#hotspot-volver .hotspot-label:hover {
  transform: scale(1.05);
  transform-origin: right center;
  background-color: rgba(140, 203, 213, 0.1);
  padding: 8px 8px;
  border-radius: 6px;
  box-shadow: 
    0 0 0 2px rgba(140, 203, 213, 0.3),
    0 0 25px rgba(140, 203, 213, 0.8),
    0 0 50px rgba(140, 203, 213, 0.4);
}

#hotspot-volver .hotspot-label i {
  font-size: 1.1rem;
  order: 2; /* La flecha va después del texto */
}

.exo-specs {
  flex: 1;
  position: relative;
  min-height: 550px; /* Adjusted height to prevent overlap */
}

.spec-panel {
  display: none;
  background-color: rgba(16, 32, 48, 0.7);
  border-radius: 10px;
  padding: 30px;
  border: 1px solid rgba(140, 203, 213, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(140, 203, 213, 0.2);
  animation: fadeIn 0.5s ease forwards;
  height: 100%;
  transition: transform 0.4s ease;
  box-shadow: inset 0 0 25px rgba(140, 203, 213, 0.05);
}

.spec-panel.active {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

/* Hover effect only for desktop */
@media (min-width: 768px) {
  .spec-panel.active:hover {
    transform: translateY(10%) scale(1.01) !important;
    transform-origin: bottom left;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 25px rgba(140, 203, 213, 0.4);
    box-shadow: inset 0 0 25px rgba(140, 203, 213, 0.05);
  }
}

.spec-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(140, 203, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-neon-teal);
  font-size: 24px;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.3);
  flex-shrink: 0;
}

.spec-content {
  flex: 1;
}

.spec-content h3 {
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.spec-content p {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.spec-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.spec-features li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.spec-features li i {
  color: var(--color-neon-teal);
  font-size: 1rem;
}

.tech-specs {
  background-color: rgba(16, 32, 48, 0.7);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(140, 203, 213, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(140, 203, 213, 0.2);
}

.spec-tabs {
  display: flex;
  border-bottom: 1px solid rgba(140, 203, 213, 0.2);
  background-color: rgba(10, 20, 30, 0.5);
  
}

.spec-tab {
  padding: 15px 20px;
  background: none;
  border: none;
  color: var(--color-light-teal);
  font-family: var(--font-family);
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex: 1;
  text-align: center;
}

.spec-tab:hover {
  color: var(--color-neon-teal);
  background-color: rgba(140, 203, 213, 0.05);
}

.spec-tab.active {
  color: var(--color-neon-teal);
  text-shadow: var(--glow-shadow);
}

.spec-tab.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-neon-teal);
  box-shadow: var(--glow-shadow);
}

.spec-content-wrapper {
  padding: 30px;
}

.spec-content-panel {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.spec-content-panel.active {
  display: block;
}

.spec-data {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.spec-item {
  background-color: rgba(10, 20, 30, 0.5);
  padding: 15px;
  border-radius: 8px;
  border: 1px solid rgba(140, 203, 213, 0.1);
}

.spec-label {
  color: var(--color-light-teal);
  font-size: 0.9rem;
  margin-bottom: 5px;
}

.spec-value {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 500;
}

/* App Showcase Section */
.app-showcase {
  padding: 75px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.app-bg-wrapper {
  position: relative;
  background: rgba(16, 32, 48, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 203, 213, 0.2);
  border: 1px solid rgba(140, 203, 213, 0.2);
  margin: 0 60px;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);

}

@media (max-width: 1000px) {
  .app-bg-wrapper {
    margin: 0 10px;
  }
}
.app-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0;
  position: relative;
  z-index: 2;
}

.app-info {
  flex: 1;
  padding-right: 40px;
}

.app-title {
  font-size: 2.5rem;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.app-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: var(--color-neon-teal);
  box-shadow: var(--glow-shadow);
}

.app-subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--color-light-teal);
  opacity: 0.9;
}

.app-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.8);
}

.app-features {
  margin-bottom: 30px;
}

.app-features li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
}

.app-features li i {
  color: var(--color-neon-teal);
  margin-right: 10px;
  font-size: 1.2rem;
  text-shadow: 0 0 10px rgba(140, 203, 213, 0.5);
}

.app-buttons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.app-buttons-mobile {
  display: none;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 25px;
}

.google-play-button {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 203, 213, 0.4);
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.google-play-button:hover {
  transform: scale(1.05);
  box-shadow: 
  0 10px 25px rgba(0, 0, 0, 0.4),
  0 0 15px rgba(140, 203, 213, 0.3);
  background-color: rgba(0, 0, 0, 0.8);
}

.play-button-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.play-logo {
  font-size: 2rem;
  color: white;
}

.play-text {
  display: flex;
  flex-direction: column;
}

.small-text {
  font-size: 0.7rem;
  opacity: 0.8;
}

.big-text {
  font-size: 1.2rem;
  font-weight: 600;
}

.app-mockup {
  flex: 1;
  display: flex;
  justify-content: right;
  margin-right: 100px;
  align-items: center;
  position: relative;
}
@media (max-width: 1000px) {
  .app-mockup {
    margin-right: 0;
  }
}
/* Iphone Viejo */

/* .phone-frame {
  width: 280px;
  height: 590px;
  background-color: #000;
  border-radius: 40px;
  padding: 13px;
  padding-top: 60px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(140, 203, 213, 0.3);
  border: 5px solid #444;
  overflow: hidden;
  transform: perspective(800px) rotateY(0deg);
  transition: all 0.5s ease;
}

.phone-frame:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(140, 203, 213, 0.5);
}

.phone-screen {
  width: 100%;
  height: calc(100% - 60px);
  background-color: #000;
  overflow: hidden;
  position: relative;
}

.phone-button {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #222;
  border: 1px solid #444;
  box-shadow: inset 0 0 2px rgba(255, 255, 255, 0.2);
}

.phone-button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #333;
  box-sizing: border-box;
}

.app-screen {
  width: 100%;
  height: 100%;
  background-color: var(--color-dark-blue);
  overflow: hidden;
  position: relative;
}

.app-screenshot {
  object-fit: fill;
  object-fit: cover;
}
*/
/* .app-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}  */

/* Iphone 16 */
.iphone-container {
  position: relative;
  width: 400px;
  height: 820px;
  background: linear-gradient(145deg, #000, #232323);
  border-radius: 55px;
  padding: 12px;
  margin-right: 70px;
  box-shadow: 
      0 30px 60px rgba(0, 0, 0, 0.5),
      0 0 0 6px rgba(255, 255, 255, 0.1),
      inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
@media (max-width: 1000px) {
  .app-content {
    flex-direction: column;
    text-align: center;
  }
  
  .app-info {
    order: 1;
    margin-bottom: 30px;
    margin-top: 25px;
    padding-right: 0;
  }
  
  .iphone-container {
    order: 2;
    margin-right: 0;
  }
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 37px;
  background: #000;
  border-radius: 25px;
  z-index: 10;
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8); */
}

/* Botones laterales */
.side-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

.volume-up {
  left: -8px;
  top: 120px;
  width: 3px;
  height: 80px;
}

.volume-down {
  left: -8px;
  top: 230px;
  width: 3px;
  height: 80px;
}

.power-button {
  right: -8px;
  top: 150px;
  width: 3px;
  height: 80px;
}

/* Pantalla */
.screen {
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 45px;
  overflow: hidden;
  position: relative;
}

.screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 480px) {
  .iphone-container {
      width: 320px;
      height: 656px;
      border-radius: 44px;
      padding: 10px;
  }

  .dynamic-island {
      width: 104px;
      height: 30px;
      top: 18px;
  }

  .screen {
      border-radius: 36px;
  }
}

/* Services Section */

.services {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background-color: rgba(16, 32, 48, 0.5);
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(140, 203, 213, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.05) 0%, transparent 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
}

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

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(140, 203, 213, 0.1);
  color: var(--color-neon-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.3);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
  background-color: rgba(140, 203, 213, 0.2);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.5);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
  transition: color 0.3s ease;
}

.service-card:hover h3 {
  color: var(--color-neon-teal);
}

.service-card p {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  transition: color 0.3s ease;
}

/* Stats Section */
.stats-section {
  width: 100%;
  overflow-x: hidden;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 30px;
  text-align: center;
  width: 100%;
  min-width: 320px;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.stat-item {
  padding: 30px 10px;
  border-radius: 10px;
  background-color: rgba(16, 32, 48, 0.5);
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.stat-number {
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--color-neon-teal);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 500;
}

@media (max-width: 700px) {
  .stats-section {
    padding-left: 0;
    padding-right: 0;
  }
  .stats-grid {
    gap: 20px;
  }
  .stat-item {
    padding: 12px 2px;
  }
  .stat-number {
    font-size: 1.1rem;
  }
  .stat-label {
    font-size: 0.75rem;
  }
}

/* Footer */
.footer {
  background-color: rgba(16, 32, 48, 0.95);
  color: var(--color-white);
  padding: 80px 0 20px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(140, 203, 213, 0.2);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--color-neon-teal), transparent);
  animation: gradient 3s ease infinite;
  background-size: 200% 200%;
}

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

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

.footer-info {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
  filter: drop-shadow(0 0 8px rgba(140, 203, 213, 0.7));
}

.footer-logo span {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-neon-teal);
}

.footer-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer h3 {
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(140, 203, 213, 0.3);
  position: relative;
}

.footer h3::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--color-neon-teal);
  transition: width 0.3s ease;
  box-shadow: var(--glow-shadow);
}

.footer-links:hover h3::after,
.footer-contact:hover h3::after,
.footer-social:hover h3::after {
  width: 100%;
}

.footer-links ul li {
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.footer-links ul li:hover {
  transform: translateX(5px);
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  position: relative;
  padding-left: 15px;
}

.footer-links ul li a::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--color-neon-teal);
  padding-left: 20px;
  text-shadow: var(--glow-shadow);
}

.footer-links ul li a:hover::before {
  opacity: 1;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.footer-contact ul li:hover {
  transform: translateX(5px);
  color: var(--color-white);
}

.footer-contact ul li i {
  color: var(--color-neon-teal);
  margin-right: 10px;
  margin-top: 5px;
  transition: transform 0.3s ease;
  text-shadow: var(--glow-shadow);
}

.footer-contact ul li:hover i {
  transform: scale(1.2);
}

.social-icons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(140, 203, 213, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icons a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-neon-teal);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}

.social-icons a:hover {
  color: var(--color-white);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.5);
}

.social-icons a:hover::before {
  transform: scale(1);
}

.social-icons a i {
  position: relative;
  z-index: 1;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

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

@keyframes pulse {
  0% {
    opacity: 0.3;
  }
  100% {
    opacity: 0.7;
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px rgba(140, 203, 213, 0.3);
    background-color: rgba(140, 203, 213, 0.2);
  }
  100% {
    box-shadow: 0 0 15px rgba(140, 203, 213, 0.7);
    background-color: rgba(140, 203, 213, 0.4);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-content,
  .showcase-content,
  .app-content {
    flex-direction: column;
  }

  .hero-text,
  .showcase-text,
  .app-info {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }

  .hero-title::after,
  .app-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

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

  .showcase-text {
    padding-left: 0;
    order: 1;
  }

  .showcase-images {
    order: 2;
    margin-top: 40px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .app-features li {
    justify-content: center;
  }

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

  .showcase-feature-item {
    justify-content: center;
  }

  .feature-text {
    text-align: center;
  }

  .exo-model {
    flex-direction: column;
  }
  
  .exo-image-container {
    margin-bottom: 30px;
  }
  
  .spec-data {
    grid-template-columns: 1fr;
  }

  .exo-specs {
    min-height: auto; /* Reset height for mobile */
  }

  .spec-panel.active {
    transform: translateY(0) !important; /* Reset position for mobile */
  }
}

@media (max-width: 1000px) {
  .header-content {
    height: 70px;
    position: relative;
    justify-content: center;
  }

  .logo {
    position: absolute;
    transition: transform 0.5s ease;
    justify-content: center;
    /* padding-left: 30px; */
  }

  .logo:hover {
    transform: scale(1.1);
  }

  .logo img {
    height: 55px;
    justify-content: center;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    left: 20px;
  }

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

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

  .hero-subtitle {
    font-size: 1.3rem;
  }

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

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

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

  .app-subtitle {
    font-size: 1.5rem;
  }
  /* @media (min-width:1000px){
    .hero-image {
      display: block !important;
      
      width: 200px;
      margin-top: 20px;
    }
  } */
  @media (min-width:700px) and (max-width:1000px){
    .hero-image {
      display: block !important;
      width: 100%;
      max-width: 300px;
      /* margin-top: 20px; */
    }
  }

  .app-showcase {
    padding: 100px 20px;
  }
  
  .app-content {
    flex-direction: column;
    text-align: center;
  }
  
  .app-info {
    order: 1;
    margin-bottom: 30px;
  }
  
  .app-mockup {
    order: 2;
  }
  
  .iphone-container {
    order: 2;
  }
  
  .app-buttons {
    display: none;
  }
  
  .app-buttons-mobile {
    display: flex;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 15px;
  }

  .hero-cta {
    flex-direction: row !important;
    gap: 10px;
    justify-content: center;
    align-items: center;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .footer-logo {
    justify-content: center;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links ul li a::before {
    display: none;
  }

  .app-showcase {
    padding: 100px 0px;
  }

  .footer-contact ul li {
    justify-content: left;
  }

  .app-content {
    padding: 40px 20px;
  }

  .phone-frame {
    width: 240px;
    height: 500px;
  }
}

/* Estilos para las páginas de navegación */
/* Página Acerca de */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.about-history {
  padding: 60px 0;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.about-card {
  background-color: rgba(16, 32, 48, 0.5);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 40px;
}

.about-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 15px rgba(140, 203, 213, 0.5));
}

.about-text {
  flex: 2;
  min-width: 300px;
  padding: 20px;
}

.about-text h2 {
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.about-text h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-neon-teal), transparent);
  box-shadow: var(--glow-shadow);
}

.about-text p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

/* Equipo */
.team {
  padding: 60px 0;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.team h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.team h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-neon-teal), transparent);
  box-shadow: var(--glow-shadow);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-member {
  background-color: rgba(16, 32, 48, 0.5);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
}

.member-avatar {
  width: 120px;
  height: 120px;
  background-color: rgba(140, 203, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--color-neon-teal);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.3);
  border: 2px solid rgba(140, 203, 213, 0.3);
}

.team-member h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.member-position {
  color: var(--color-light-teal);
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.member-bio {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.member-social {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.member-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: rgba(140, 203, 213, 0.1);
  color: var(--color-white);
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.member-social a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-neon-teal);
  transform: scale(0);
  transition: transform 0.5s ease;
  border-radius: 50%;
  z-index: -1;
}

.member-social a:hover {
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.5);
}

.member-social a:hover::before {
  transform: scale(1);
}

.member-social a i {
  position: relative;
  z-index: 1;
}

/* Valores */
.values {
  padding: 60px 0;
}

.values-card {
  background-color: rgba(16, 32, 48, 0.5);
  border-radius: 15px;
  overflow: hidden;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.values-card h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.values-card h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-neon-teal), transparent);
  box-shadow: var(--glow-shadow);
}

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

.value-item {
  display: flex;
  align-items: flex-start;
  background-color: rgba(16, 32, 48, 0.7);
  padding: 25px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(140, 203, 213, 0.1);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
  border-color: rgba(140, 203, 213, 0.3);
}

.value-icon {
  width: 50px;
  height: 50px;
  background-color: rgba(140, 203, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--color-neon-teal);
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.3);
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background-color: rgba(140, 203, 213, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.5);
}

.value-content h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.value-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Página de Reconocimientos */
.awards {
  padding: 60px 0;
  box-shadow: inset 0 0 100px rgba(140, 203, 213, 0.1);

}

.awards-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.awards-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 101%;
  background-color: rgba(140, 203, 213, 0.6); /* más vívido */
  z-index: 1;
}

.year-block {
  position: relative;
}

.year {
  background-color: var(--color-dark-blue);
  color: var(--color-neon-teal);
  font-size: 1.8rem;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 30px;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  border: 2px solid rgba(140, 203, 213, 0.3);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.3);
  text-shadow: var(--glow-shadow);
}

.awards-list {
  position: relative;
}

.award-item {
  display: flex;
  align-items: flex-start;
  background-color: rgba(16, 32, 48, 0.5);
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(140, 203, 213, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  width: 45%;
  z-index: 2;
}

.award-item:nth-child(odd) {
  margin-right: auto;
}

.award-item:nth-child(even) {
  margin-left: auto;
}

.award-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
}

.award-icon {
  position: absolute;
  /* AJUSTADOR de ICONO */
  top: 17px;
  left: 15px;
  width: 60px;
  height: 60px;
  /* background-color: rgba(140, 203, 213, 0.1); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: var(--color-neon-teal);
  font-size: 20px;
  flex-shrink: 0;
  /* box-shadow: 0 0 15px rgba(140, 203, 213, 0.3); */
  transition: all 0.3s ease;
  z-index: 1;
}
.award-iconimpa {
  position: absolute;
  /* AJUSTADOR de ICONO */
  top: 17px;
  left: 15px;
  width: 60px;
  height: 60px;
  /* background-color: rgba(140, 203, 213, 0.09); */
  border-radius: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  /* color: var(--color-neon-teal); */
  font-size: 20px;
  flex-shrink: 0;
  /* box-shadow:  0px 0px 15px rgba(140, 203, 213, 0.4); */
  /* filter: drop-shadow(0 0 1px rgba(140, 203, 213, 0.3)); */
  transition: all 0.3s ease;
  z-index: 1;
}

/* Estilos específicos para la imagen dentro del contenedor rectangular */
.award-iconimpa img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8%;
  filter: drop-shadow(0 0 10px rgba(140, 203, 213, 0.6));
  transition: all 0.3s ease;
}

/* Hover effect para la imagen rectangular */
.award-item:hover .award-iconimpa img{
  /* background-color: rgba(140, 203, 213, 0.1); */
  transform: scale(1.05);
  /* box-shadow: 0 0 20px rgba(140, 203, 213, 0.3); */
}

.award-item:hover .award-iconimpa img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 7px rgba(140, 203, 213, 1.2));
}


.award-item:hover .award-icon {
  background-color: rgba(140, 203, 213, 0.2);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.5);
}

.award-title-indent {
  text-indent: 60px; /* SANGRIA*/
  margin-right: -30px; 
  margin-bottom: 10px;
  line-height: 2.6;
}

.award-header {
  position: relative;
  margin-bottom: 10px;
}

.award-header h3 {
  margin-bottom: 5px;
  font-size: 1.3rem;
  margin-right: 30px; /* Espacio para la fecha */
}

.award-date {
  position: absolute;
  top: 0;
  right: -10px;
  font-size: 0.9em;
  color: var(--color-neon-teal);
  font-weight: 600;
  text-align: right;
}

.award-desc {
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.award-org {
  color: var(--color-light-teal);
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.award-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Award image (always visible) */
.award-image {
  display: flex;
  justify-content: center;
  /* margin-top: 16px; */
}

.award-image.open {
  display: block;
}

.award-image {
  margin-top: 20px; /* margin real */
}

.award-image img {
  width: auto;
  max-width: 380px;
  max-height: 300px;
  height: auto;
  border-radius: 10px;
  filter: drop-shadow(0 0px 8px rgba(140, 203, 213, 0.2));
  box-shadow: 0 0px 25px rgba(140, 203, 213, 0.3);
  border: 1px solid rgba(140, 203, 213, 0.2);
  cursor: pointer;
  border-radius: 2rem 2rem 2rem 2rem;
  object-fit: contain;
}

/* Clase específica para imágenes sin border-radius */
.award-image-no-radius img {
  border-radius: 0px !important;
}

.award-image-toggle {
  margin-top: 12px;
  padding: 8px 12px;
  background: rgba(140, 203, 213, 0.2);
  color: var(--color-neon-teal);
  border: 1px solid rgba(140, 203, 213, 0.4);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.2s ease;
}

.award-image-toggle:hover {
  background: rgba(140, 203, 213, 0.3);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}



/* MOBILE VIEW de awards */


@media (max-width: 1000px) {
  .award-item {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    background-color: rgba(16, 32, 48, 1); /* opaco en mobile para tapar la línea */
    position: relative;
    margin-bottom: 60px; /* más espacio entre items en mobile */
  }
  .award-content {
    flex: 1 1 auto;
    min-width: 0; /* permite que el texto haga wrap y no desborde */
  }

  /* Centrar imagen en mobile */
  .award-image {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  /* Flecha hacia abajo centrada arriba de cada award-item */
  .award-item::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(140, 203, 213, 1); /* más vívido y punta hacia abajo */
    z-index: 3;
  }

  /* Más separación bajo la línea vertical en mobile */
  .awards-timeline {
    margin-bottom: 48px;
  }
}

@media (max-width: 480px) {
  .award-item {
    padding: 16px;
  }
  
  
  .award-icon {
    top: 15px; /* AJUSTADOR de ICONO en MOBILE */
    left: 15px; /* AJUSTADOR de ICONO en MOBILE */
    
  }
  
  /* Estilos responsive para award-iconimpa en mobile */
  .award-iconimpa {
    top: 12px; /* AJUSTADOR de ICONO en MOBILE */
    left: 10px; /* AJUSTADOR de ICONO en MOBILE */
    width: 55px; /* Más pequeño en mobile */
    height: 55px;
  }
  
  /* Asegurar que la imagen se vea bien en mobile */
  .award-iconimpa img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(140, 203, 213, 0.7));
  }

  /* Estilos para award-image en mobile */
  .award-image img {
    max-width: 100%;
    max-height: 250px; /* Ligeramente más pequeño en mobile */
    width: auto;
    height: auto;
    filter: drop-shadow(0 0px 8px rgba(140, 203, 213, 0.2));
  }

  .award-title-indent {
    line-height: 2.8;
  }
  
  .award-content h3 {
    font-size: 1.1rem;
  }
  .award-org {
    font-size: 0.85rem;
  }
  .award-desc {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}

/* FIN DE AWARDS */



.certifications {
  padding: 60px 0;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);

}

.cert-card {
  background-color: rgba(16, 32, 48, 0.5);
  border-radius: 15px;
  overflow: hidden;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
  border: 1px solid rgba(140, 203, 213, 0.2);
}

.cert-card h2 {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.cert-card h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-neon-teal), transparent);
  box-shadow: var(--glow-shadow);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  /* padding-right: 100px;
  padding-left: 100px; */
}
.cert-item {
  background-color: rgba(16, 32, 48, 0.7);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(140, 203, 213, 0.1);
}

.cert-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
  border-color: rgba(140, 203, 213, 0.3);
}

.cert-icon {
  width: 100px;
  height: 100px;
  /* background-color: rgba(140, 203, 213, 0.1); */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-neon-teal);
  font-size: 24px;
  /* box-shadow: 0 0 15px rgba(140, 203, 213, 0.3); */
  transition: all 0.3s ease;
}

.cert-item:hover .cert-icon {
  background-color: rgba(140, 203, 213, 0.2);
  transform: rotateY(360deg);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.5);
}

.cert-icon1 {
  width: 100px;
  height: 100px;
  background-color: rgba(140, 203, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-neon-teal);
  font-size: 24px;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.3);
  transition: all 0.3s ease;
}

/* Estilos para la imagen dentro del cert-icon */
.cert-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8%;
  filter: drop-shadow(0 0 20px rgba(140, 203, 213, 0.4));
  transition: all 0.3s ease;
}

.cert-item:hover .cert-image {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px rgba(140, 203, 213, 0.6));
}

.cert-item h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.cert-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

@media (max-width: 1000px) {
  .cert-grid {
    grid-template-columns: repeat(1, 1fr);
  }
 
}
/* Página de Galería */
.gallery {
  padding: 60px 0;
  box-shadow: inset 0 0 100px rgba(140, 203, 213, 0.1);

}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

.gallery-item {
  background-color: rgba(16, 32, 48, 0.5);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(140, 203, 213, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
}

.gallery-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}

.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
  transform: scale(1.05);
}

.gallery-item h3 {
  padding: 15px;
  text-align: center;
  font-size: 1.1rem;
}

/* Página de Contacto */
.contact-form {
  padding: 60px 0;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
}

.form-container {
  background-color: rgba(16, 32, 48, 0.5);
  border-radius: 15px;
  overflow: hidden;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
  border: 1px solid rgba(140, 203, 213, 0.2);
  max-width: 800px;
  margin: 0 auto;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--color-light-teal);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(140, 203, 213, 0.2);
  border-radius: 5px;
  color: var(--color-white);
  font-family: var(--font-family);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-neon-teal);
  box-shadow: 0 0 10px rgba(140, 203, 213, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
}

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

.contact-info {
  padding: 15px 0;
  margin-bottom: 20px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.info-card {
  background-color: rgba(16, 32, 48, 0.5);
  border-radius: 10px;
  overflow: hidden;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(140, 203, 213, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(140, 203, 213, 0.3);
}

.info-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(140, 203, 213, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--color-neon-teal);
  font-size: 24px;
  box-shadow: 0 0 15px rgba(140, 203, 213, 0.3);
  transition: all 0.3s ease;
}

.info-card:hover .info-icon {
  background-color: rgba(140, 203, 213, 0.2);
  transform: rotateY(360deg);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.5);
}

.info-card h3 {
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.info-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.caxcax {
  max-width: 800px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

/* Tooltip para copiar email */
.copy-tooltip {
  position: fixed;
  background-color: var(--color-dark-teal);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 14px;
  z-index: 1000;
  pointer-events: none;
}

/* Media queries para responsive */
@media (max-width: 992px) {
  .exo-model {
    flex-direction: column;
  }
  
  .exo-image-container {
    margin-bottom: 30px;
  }
  
  .spec-data {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1000px) {
  .spec-tabs {
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }
  
  .spec-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .spec-tab {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    font-size: 0.9rem;
    padding: 12px 8px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 576px) {
  .spec-tab {
    font-size: 0.8rem;
    padding: 10px 6px;
  }
}

/* Media query específica para el rango problemático 360px-500px */
@media (max-width: 500px) and (min-width: 361px) {
  .spec-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px;
    min-height: 100px;
  }
  
  .spec-tab {
    font-size: 0.9rem;
    padding: 8px 4px;
    line-height: 1.2;
    flex: 0 0 calc(50% - 1px);
    min-width: auto;
    white-space: normal;
    text-align: center;
  }
}

/* Media query para pantallas muy pequeñas (360px y menos) */
@media (max-width: 360px) {
  .spec-tabs {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1px;
    min-height: 100px;
  }
  
  .spec-tab {
    font-size: 0.8rem;
    padding: 6px 2px;
    line-height: 1.1;
    flex: 0 0 calc(50% - 0.5px);
    min-width: auto;
    white-space: normal;
    text-align: center;
  }
}

/* ===== Lightbox de Imagenes ===== */

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 20px;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  background: rgba(16, 32, 48, 0.5);
  min-width: 200px;
  min-height: 200px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(16, 32, 48, 0.8);
  color: var(--color-neon-teal, #8ccbd5);
  border: 2px solid rgba(140, 203, 213, 0.3);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  backdrop-filter: blur(10px);
  z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(140, 203, 213, 0.2);
  border-color: rgba(140, 203, 213, 0.6);
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.4);
  transition: all 0.3s ease;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  z-index: 10002;
}

.lightbox-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
} 

.lightbox-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-prev:hover,
.lightbox-next:hover {
  transform: translateY(-50%) scale(1.1);
}

.lightbox-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(16, 32, 48, 0.8);
  color: var(--color-neon-teal, #8ccbd5);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid rgba(140, 203, 213, 0.3);
  backdrop-filter: blur(10px);
  z-index: 10002;
}

/* Gallery item hover effect */
.gallery-image {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.02);
}

.gallery-image::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: var(--color-neon-teal, #8ccbd5);
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.7);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(5px);
}

.gallery-image:hover::after {
  opacity: 1;
}

/* Desktop specific styles for tall images */
@media (min-width: 1001px) {
  .lightbox-content {
    max-width: 95vw;
    max-height: 95vh;
    padding: 30px;
  }
  
  .lightbox-content img {
    max-width: 100%;
    max-height: calc(95vh - 60px); /* Resta el padding */
    width: auto;
    height: auto;
  }
}

/* Mobile responsive */
@media (max-width: 1000px) {
  .lightbox-content {
    max-width: 98vw;
    max-height: 98vh;
    padding: 10px;
  }

  .lightbox-close,
  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-counter {
    bottom: 10px;
    font-size: 0.8rem;
    padding: 6px 12px;
  }
}

/* Animation for lightbox opening - removed to prevent positioning delays */

/* Prevent text selection in lightbox */
.lightbox * {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

/* ===== SPONSORS CAROUSEL ===== */
.sponsors-carousel-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 100px rgba(140, 203, 213, 0.1);
}

.sponsors-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  position: relative;
}

.sponsors-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--color-neon-teal), transparent);
  box-shadow: var(--glow-shadow);
}

.sponsors-carousel {
  position: relative;
  overflow: visible;
  padding: 40px 0;
  
}

.sponsors-track {
  display: flex;
  align-items: center;
  gap: 120px;
  animation: scrollSponsors 30s linear infinite;
  width: max-content;
}

.sponsor-img {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(140, 203, 213, 0.7));
  border-width: 2px 4px;
  border-radius: 32%;
}

.sponsor-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(140, 203, 213, 0.9));
}

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

/* Pause animation on hover */
.sponsors-carousel:hover .sponsors-track {
  animation-play-state: paused;
}

/* Mobile responsive */
@media (max-width: 1000px) {
  .sponsors-title {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .sponsor-logo {
    width: 120px;
    height: 80px;
  }
  
  .sponsors-track {
    gap: 60px;
  }
}

@media (max-width: 480px) {
  .sponsors-carousel-section {
    padding: 40px 0;

  }
  
  .sponsors-title {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
  
  .sponsor-logo {
    width: 100px;
    height: 70px;
  }
  
  .sponsors-track {
    gap: 40px;
  }
}

/* ===== THE VISUAL CUE SYSTEM ===== */
.mobile-cue {
  position: fixed;
  top: 85%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.mobile-cue.show {
  opacity: 1;
}

.mobile-cue-arrow {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-light-teal), var(--color-medium-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.6);
  animation: cuePulse 2s ease-in-out infinite;
}

.mobile-cue-arrow i {
  color: var(--color-white);
  font-size: 24px;
  animation: cueBounce 1.5s ease-in-out infinite;
}

.mobile-cue-text {
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: var(--color-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(140, 203, 213, 0.3);
}

.mobile-cue-text::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(0, 0, 0, 0.8);
}

@keyframes cuePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(140, 203, 213, 0.6);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(140, 203, 213, 0.8);
  }
}

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

/* Hide cue on desktop */
@media (min-width: 1001px) {
  .mobile-cue {
    display: none;
  }
}

/* Adjust cue position for different screen sizes */
@media (max-width: 480px) {
  .mobile-cue-arrow {
    width: 50px;
    height: 50px;
  }
  
  .mobile-cue-arrow i {
    font-size: 20px;
  }
  
  .mobile-cue-text {
    font-size: 12px;
    padding: 6px 12px;
  }
}

/* Mapa impa */

.map-container {
  position: relative;
  padding: 0 70px;
  box-shadow: inset 0 0 50px rgba(140, 203, 213, 0.1);
  
}

.map-header {
  text-align: center;
  margin-bottom: 30px;
}

.map-header h2 {
  color: var(--color-neon-teal);
  font-size: 2.2rem;
  margin-bottom: 10px;
  text-shadow: var(--glow-shadow);
}

.map-header h2 i {
  margin-right: 10px;
  color: var(--color-neon-teal);
}

.map-header p {
  color: var(--color-light-teal);
  font-size: 1.1rem;
  opacity: 0.9;
}

.custom-map {
  background: rgba(16, 32, 48, 0.7);
  border-radius: 20px;
  border: 1px solid rgba(140, 203, 213, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 203, 213, 0.2);
  overflow: hidden;
  position: relative;
  padding: 20px;
}

.map-placeholder {
  /* padding: 20px; */
  margin-top: 20px;
  text-align: center;
  position: relative;
}

.map-icon {
  margin-bottom: 0;
  display: inline-block;
  margin-right: 15px;
}

.map-icon i {
  font-size: 4rem;
  color: var(--color-neon-teal);
  text-shadow: 0 0 20px rgba(140, 203, 213, 0.6);
  animation: mapPulse 2s infinite;
}

@keyframes mapPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.location-info {
  /* margin-bottom: 10px; */
  display: inline-block;
}

.location-info h3 {
  color: var(--color-neon-teal);
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-shadow: var(--glow-shadow);
  margin-top: 0;
  display: inline-block;
  vertical-align: top;
}

.location-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.location-info p i {
  color: var(--color-neon-teal);
  width: 20px;
  text-align: center;
}

.map-iframe-container {
  margin: 30px auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(140, 203, 213, 0.4);
  width: 100%;
  max-width: 800px;
  border: 1px solid rgba(140, 203, 213, 0.3);
}

.map-iframe-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-cta {
  margin-top: 30px;
  text-align: center;
  margin-bottom: 20px;
}

.map-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.1), rgba(140, 203, 213, 0.2));
  color: var(--color-neon-teal);
  padding: 15px 30px;
  border-radius: 25px;
  border: 1px solid rgba(140, 203, 213, 0.3);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(140, 203, 213, 0.2);
}

.map-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(140, 203, 213, 0.4);
  background: linear-gradient(135deg, rgba(140, 203, 213, 0.2), rgba(140, 203, 213, 0.3));
}

.map-button i {
  font-size: 1.1rem;
}
