/* hero.css - VERSIÓN COMPLETA Y CORREGIDA */
:root {
  --color-primary: #050237;
  --color-secondary: #0a0548;
  --color-alt: #234c8e;
  --color-accent: #27e6f6;
  --color-light: #f9f9f9;
  --color-dark: #222;
}

/* ===== HERO DESKTOP ===== */
.hero-banner {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 600px;
  overflow: hidden;
  background: linear-gradient(135deg,
      var(--color-primary) 0%,
      var(--color-secondary) 100%);
  padding: 2rem 0;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  height: 100%;
  padding: 1rem 0;
}

.hero-text h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--color-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--color-accent);
  font-weight: 500;
}

.hero-features {
  margin-bottom: 1.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  color: var(--color-light);
  font-size: 0.9rem;
}

.feature-item i {
  color: var(--color-accent);
  margin-right: 1rem;
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.product-specs {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(39, 230, 246, 0.2);
}

.spec-item {
  color: var(--color-light);
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

.spec-item strong {
  color: var(--color-accent);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: transparent;
  color: var(--color-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(39, 230, 246, 0.3);
}

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

.btn-secondary:hover {
  background: var(--color-light);
  color: var(--color-primary);
  transform: translateY(-2px);
}

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

.media-container {
  width: 100%;
  max-width: 550px;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
}

.auto-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 5px;
  max-height: 300px;
  object-fit: cover;
}

.workflow-visual {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}

.product-image {
  width: 100%;
  height: auto;
  max-height: 300px;
  border-radius: 15px;
  display: block;
  object-fit: cover;
}

.video-features {
  margin-bottom: 1.5rem;
}

.video-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: var(--color-light);
}

.video-feature i {
  color: var(--color-accent);
  font-size: 1.2rem;
  margin-right: 0.75rem;
  margin-top: 0.1rem;
}

.video-feature h4 {
  margin-bottom: 0.25rem;
  color: var(--color-light);
  font-size: 1rem;
}

.video-feature p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.85rem;
}

.applications-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.application-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  border: 1px solid rgba(39, 230, 246, 0.2);
  transition: transform 0.3s ease;
}

.application-item:hover {
  transform: translateY(-3px);
}

.application-item i {
  font-size: 1.5rem;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.application-item h4 {
  color: var(--color-light);
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.application-item p {
  color: var(--color-light);
  opacity: 0.9;
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.3;
}

.workflow-steps {
  margin-bottom: 1.5rem;
}

.workflow-steps h4 {
  color: var(--color-light);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.steps {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}

.step {
  flex: 1;
  background: rgba(39, 230, 246, 0.1);
  color: var(--color-accent);
  padding: 0.75rem 0.5rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  border: 1px solid rgba(39, 230, 246, 0.3);
}

.carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--color-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-control:hover {
  background: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
  left: 1rem;
}

.carousel-control.next {
  right: 1rem;
}

.carousel-indicators {
  display: none !important;
}

/* Videos verticales desktop */
.media-container.video-vertical {
  max-width: 300px;
  aspect-ratio: 9/16;
}

.media-container.video-vertical .auto-video {
  max-height: none;
  height: 100%;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.05);
}

.media-container.video-vertical.larger {
  max-width: 350px;
  aspect-ratio: 2/3;
}

/* Tooltips */
.workflow-point {
  position: absolute;
  transform: translate(-50%, -50%);
}

.point {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-light);
  cursor: pointer;
  animation: pulse 2s infinite;
  position: relative;
  transition: all 0.3s ease;
}

.tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-dark);
  color: var(--color-light);
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  border: 1px solid var(--color-accent);
  z-index: 20;
  pointer-events: none;
}

.workflow-point:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.workflow-point:hover .point {
  transform: scale(1.2);
  background: var(--color-light);
  border-color: var(--color-accent);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(39, 230, 246, 0.7);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(39, 230, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(39, 230, 246, 0);
  }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablets (968px - 769px) */
@media (max-width: 968px) {
  .hero-banner {
    min-height: 500px;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
    padding: 1.5rem 0;
  }

  .hero-text {
    order: 2;
  }

  .hero-media {
    order: 1;
    margin-bottom: 0;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .media-container {
    max-width: 400px;
    margin: 0 auto;
  }

  .applications-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .media-container.video-vertical {
    max-width: 250px;
  }

  .media-container.video-vertical.larger {
    max-width: 280px;
  }
}

/* Tablets pequeñas y móviles grandes (768px - 481px) */
@media (max-width: 768px) {
  .desktop-hero {
    display: none !important;
  }

  .mobile-hero {
    display: block;
  }

  .hero-banner {
    min-height: auto;
    padding: 1.5rem 0;
  }

  .hero-content {
    padding: 1rem 0;
    gap: 1.5rem;
  }

  .hero-text h1 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .feature-item {
    justify-content: center;
    font-size: 0.85rem;
  }

  .media-container {
    max-width: 350px;
  }

  .auto-video,
  .product-image {
    max-height: 250px;
  }

  .carousel-control {
    width: 40px;
    height: 40px;
  }

  .carousel-control.prev {
    left: 0.5rem;
  }

  .carousel-control.next {
    right: 0.5rem;
  }

  .media-container.video-vertical {
    max-width: 200px;
  }

  .media-container.video-vertical.larger {
    max-width: 220px;
  }

  .workflow-point {
    transform: translate(-50%, -50%) scale(0.8);
  }

  .point {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .tooltip {
    font-size: 0.7rem;
    padding: 0.4rem 0.8rem;
    top: -35px;
  }

  .workflow-point:hover .tooltip {
    top: -40px;
  }

  .workflow-point[style*="top: 20%"][style*="left: 30%"] .tooltip {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
  }

  .workflow-point[style*="top: 60%"][style*="left: 70%"] .tooltip {
    right: 100%;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
  }
}

/* ===== HERO MÓVIL ===== */
.mobile-hero {
  display: none;
  position: relative;
  width: 100%;
  background: linear-gradient(135deg,
      var(--color-primary) 0%,
      var(--color-secondary) 100%);
}

/* Tablets y móviles grandes (768px - 481px) */
@media (max-width: 768px) {
  .mobile-hero {
    display: block;
    height: 100vh;
    min-height: 600px;
    padding: 1rem 0;
  }

  .hero-carousel-mobile {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
  }

  .hero-slide-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease;
  }

  .hero-slide-mobile.active {
    opacity: 1;
    visibility: visible;
  }

  .hero-content-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1rem 0;
    height: 100%;
    justify-content: center;
  }

  .hero-media-mobile {
    order: 1;
  }

  .hero-text-mobile {
    order: 2;
    text-align: center;
  }

  .hero-text-mobile h1 {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 0.75rem;
    color: var(--color-light);
  }

  .hero-subtitle-mobile {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--color-accent);
  }

  .media-container-mobile {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  }

  .auto-video-mobile,
  .product-image-mobile {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
  }

  .hero-features-mobile {
    margin-bottom: 1rem;
  }

  .feature-item-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .feature-item-mobile i {
    color: var(--color-accent);
    font-size: 1rem;
    min-width: 20px;
  }

  .product-specs-mobile {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(39, 230, 246, 0.2);
  }

  .spec-item-mobile {
    color: var(--color-light);
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }

  .spec-item-mobile strong {
    color: var(--color-accent);
  }

  .video-features-mobile {
    margin-bottom: 1rem;
  }

  .video-feature-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--color-light);
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .video-feature-mobile i {
    color: var(--color-accent);
    font-size: 1.1rem;
    min-width: 20px;
  }

  .applications-grid-mobile {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  .application-item-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    border: 1px solid rgba(39, 230, 246, 0.2);
  }

  .application-item-mobile i {
    font-size: 1.2rem;
    color: var(--color-accent);
    margin-bottom: 0.25rem;
  }

  .application-item-mobile span {
    color: var(--color-light);
    font-size: 0.75rem;
    text-align: center;
    line-height: 1.2;
  }

  .workflow-steps-mobile {
    margin-bottom: 1rem;
  }

  .workflow-steps-mobile h4 {
    color: var(--color-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }

  .steps-mobile {
    display: flex;
    justify-content: space-between;
    gap: 0.25rem;
  }

  .step-mobile {
    flex: 1;
    background: rgba(39, 230, 246, 0.1);
    color: var(--color-accent);
    padding: 0.5rem;
    border-radius: 6px;
    text-align: center;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(39, 230, 246, 0.3);
  }

  .hero-actions-mobile {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .hero-actions-mobile .btn {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }

  .carousel-control-mobile {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--color-light);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .carousel-control-mobile:hover {
    background: var(--color-accent);
    color: var(--color-primary);
  }

  .carousel-control-mobile.prev-mobile {
    left: 0.5rem;
  }

  .carousel-control-mobile.next-mobile {
    right: 0.5rem;
  }
}

/* Móviles pequeños (480px y menos) */
@media (max-width: 480px) {
  .hero-banner {
    padding: 1rem 0;
  }

  .hero-text h1 {
    font-size: 1.4rem;
  }

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

  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .media-container {
    max-width: 300px;
  }

  .auto-video,
  .product-image {
    max-height: 200px;
  }

  .applications-grid {
    gap: 0.5rem;
  }

  .application-item {
    padding: 0.75rem;
  }

  .steps {
    flex-direction: column;
    gap: 0.25rem;
  }

  .step {
    padding: 0.5rem;
    font-size: 0.8rem;
  }

  .media-container.video-vertical {
    max-width: 180px;
    aspect-ratio: 3/4;
  }

  /* Hero móvil para pantallas pequeñas */
  .mobile-hero {
    height: auto;
    min-height: 100vh;
    padding: 0.5rem 0;
  }

  .hero-carousel-mobile {
    height: auto;
    min-height: 100vh;
    overflow: visible;
  }

  .hero-slide-mobile {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: none;
  }

  .hero-slide-mobile:not(.active) {
    display: none;
  }

  .hero-content-mobile {
    min-height: 90vh;
    justify-content: center;
    padding: 1rem 0;
    gap: 1rem;
  }

  .hero-text-mobile h1 {
    font-size: 1.3rem;
  }

  .hero-subtitle-mobile {
    font-size: 0.9rem;
  }

  .media-container-mobile {
    width: 95%;
    max-width: 350px;
  }

  .applications-grid-mobile {
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
  }

  .application-item-mobile {
    padding: 0.5rem 0.25rem;
  }

  .application-item-mobile span {
    font-size: 0.7rem;
  }

  .carousel-control-mobile {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }

  .feature-item-mobile,
  .video-feature-mobile {
    font-size: 0.8rem;
  }

  .hero-features-mobile,
  .video-features-mobile {
    margin-bottom: 0.75rem;
  }

  .product-specs-mobile,
  .workflow-steps-mobile {
    margin-bottom: 0.75rem;
  }
}

/* Móviles muy pequeños (375px y menos) */
@media (max-width: 375px) {
  .mobile-hero {
    min-height: 90vh;
  }

  .hero-carousel-mobile {
    min-height: 90vh;
  }

  .hero-slide-mobile {
    min-height: 90vh;
  }

  .hero-content-mobile {
    min-height: 85vh;
    gap: 0.75rem;
  }

  .hero-text-mobile h1 {
    font-size: 1.2rem;
  }

  .hero-subtitle-mobile {
    font-size: 0.85rem;
  }

  .media-container-mobile {
    width: 98%;
    max-width: 320px;
  }

  .applications-grid-mobile {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .application-item-mobile {
    padding: 0.75rem 0.5rem;
  }

  .application-item-mobile span {
    font-size: 0.75rem;
  }

  .feature-item-mobile,
  .video-feature-mobile {
    font-size: 0.75rem;
  }
}

/* Especificaciones técnicas - Slide 2 */
.tech-specs {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(39, 230, 246, 0.2);
}

.tech-specs h4 {
  color: var(--color-accent);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-align: center;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.spec-row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.spec-label {
  color: var(--color-accent);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

/* Para móvil */
.tech-specs-mobile {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(39, 230, 246, 0.2);
}

.tech-specs-mobile h4 {
  color: var(--color-accent);
  margin-bottom: 0.75rem;
  font-size: 1rem;
  text-align: center;
}

.specs-grid-mobile {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}

.spec-row-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(39, 230, 246, 0.1);
}

.spec-row-mobile:last-child {
  border-bottom: none;
}

.spec-label-mobile {
  color: var(--color-accent);
  font-size: 0.75rem;
  font-weight: 600;
  flex: 1;
}

.spec-value-mobile {
  color: var(--color-light);
  font-size: 0.8rem;
  font-weight: 500;
  flex: 1;
  text-align: right;
}

/* Responsive para la tabla */
@media (max-width: 768px) {
  .tech-specs {
    padding: 1rem;
  }

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

  .spec-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(39, 230, 246, 0.1);
  }

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

  .spec-label {
    font-size: 0.75rem;
    flex: 1;
  }

  .spec-value {
    font-size: 0.8rem;
    flex: 1;
    text-align: right;
  }
}

/* Botón de WhatsApp */
.btn-whatsapp {
  background: #25d366 !important;
  color: white !important;
  border-color: #25d366 !important;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-whatsapp:hover {
  background: #128c7e !important;
  border-color: #128c7e !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
  color: white !important;
}

.btn-whatsapp i {
  font-size: 1.1rem;
}

/* .hero-media {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.media-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
} */

.product-showcase {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  background: white;
}

.product-image-large {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.feature-highlights {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-point {
  position: absolute;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.feature-point:hover {
  transform: scale(1.1);
}

.feature-marker {
  width: 24px;
  height: 24px;
  background: var(--color-accent);
  border: 3px solid white;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

.feature-tooltip {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-tooltip h4 {
  color: var(--color-primary);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.feature-tooltip p {
  color: var(--color-dark);
  font-size: 0.8rem;
  margin: 0;
  line-height: 1.4;
}

.feature-point:hover .feature-tooltip {
  opacity: 1;
  visibility: visible;
  bottom: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  .product-image-large {
    height: 300px;
  }

  .feature-tooltip {
    min-width: 150px;
    padding: 10px;
  }

  .feature-tooltip h4 {
    font-size: 0.8rem;
  }

  .feature-tooltip p {
    font-size: 0.7rem;
  }
}

/* Badges Distribuidores Flotantes - Uno arriba y otro abajo */
.floating-distributor-badge {
  position: absolute;
  right: 30px;
  z-index: 100;
  animation: float 3s ease-in-out infinite;
}

/* Badge RECI (Arriba) */
.floating-distributor-badge.reci-badge {
  top: 30px;
}

/* Badge WOON (Abajo) */
.floating-distributor-badge.woon-badge {
  bottom: 30px;
  top: auto;
}

.distributor-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #0055a4 0%, #003d7a 100%);
  color: white;
  padding: 12px 18px;
  border-radius: 12px;
  gap: 12px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Estilo específico para Woon - Más redondo y diferente color */
.distributor-badge.woon {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-alt) 100%);
  border-radius: 15px;
  padding: 15px 20px;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.distributor-badge.woon .logo {
  width: 45px;
  height: 45px;
  border-radius: 10%;
  object-fit: contain;

  padding: 2px;
  /* Espacio interno */
}

.distributor-badge.woon .badge-text {
  text-align: center;
}

.distributor-badge.woon .title {
  font-size: 13px;
  font-weight: 700;
}

.distributor-badge.woon .country {
  font-size: 11px;
  opacity: 0.95;
}

/* Efectos hover para ambos badges */
.distributor-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s ease;
}

.distributor-badge:hover::before {
  left: 100%;
}

.distributor-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.5);
}

.distributor-badge .logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.distributor-badge .badge-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.distributor-badge .title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.distributor-badge .country {
  font-size: 11px;
  opacity: 0.9;
  font-weight: 500;
}

/* Animación flotante con desfase para que no se muevan igual */
@keyframes float {

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

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

/* Desfasar la animación del badge de abajo */
.floating-distributor-badge.woon-badge {
  animation-delay: 1.5s;
  /* Desfase de la animación */
}

/* Responsive */
@media (max-width: 968px) {
  .floating-distributor-badge {
    right: 25px;
  }

  .floating-distributor-badge.reci-badge {
    top: 25px;
  }

  .floating-distributor-badge.woon-badge {
    bottom: 25px;
  }
}

@media (max-width: 768px) {
  .floating-distributor-badge {
    right: 20px;
  }

  .floating-distributor-badge.reci-badge {
    top: 20px;
  }

  .floating-distributor-badge.woon-badge {
    bottom: 20px;
  }

  .distributor-badge {
    padding: 10px 14px;
    gap: 10px;
  }

  .distributor-badge.woon {
    padding: 12px 16px;
    border-radius: 20px;
  }

  .distributor-badge .logo {
    width: 28px;
    height: 28px;
  }

  .distributor-badge.woon .logo {
    width: 32px;
    height: 32px;
  }

  .distributor-badge .title {
    font-size: 12px;
  }

  .distributor-badge.woon .title {
    font-size: 11px;
  }

  .distributor-badge .country {
    font-size: 10px;
  }

  .distributor-badge.woon .country {
    font-size: 9px;
  }
}

@media (max-width: 480px) {
  .floating-distributor-badge {
    right: 15px;
  }

  .floating-distributor-badge.reci-badge {
    top: 15px;
  }

  .floating-distributor-badge.woon-badge {
    bottom: 15px;
  }

  .distributor-badge {
    padding: 8px 12px;
    gap: 8px;
  }

  .distributor-badge.woon {
    padding: 10px 14px;
    border-radius: 18px;
  }

  .distributor-badge .logo {
    width: 24px;
    height: 24px;
  }

  .distributor-badge.woon .logo {
    width: 28px;
    height: 28px;
  }

  .distributor-badge .title {
    font-size: 11px;
  }

  .distributor-badge.woon .title {
    font-size: 10px;
  }

  .distributor-badge .country {
    font-size: 9px;
  }

  .distributor-badge.woon .country {
    font-size: 8px;
  }
}

/* Para pantallas muy pequeñas, ajustar posiciones */
@media (max-width: 360px) {
  .floating-distributor-badge.reci-badge {
    top: 10px;
  }

  .floating-distributor-badge.woon-badge {
    bottom: 10px;
  }
}