/* --- Reset y variables globales --- */
@import url('https://fonts.googleapis.com/css2?family=Krona+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Concert+One&display=swap');
:root{
--primary: #0ea7a0; /* color principal (ajusta si es necesario) */
--primary-dark: #068980;
--accent: #00c0b8;
--muted: #6b7a7a;
--bg: #f7fbfb;
--card: #ffffff00;
--radius: 12px;
--fw-bold: 700;
--fw-regular: 400;
--max-width: 100%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #0c0f1a;
  color: #fff;
  line-height: 1.6;
  --colorTitle: #01fce2;
}

html {
  scroll-behavior: smooth;
  /* Desplazamiento suave para todos los anclajes */
}

/* Aplica un margen automático a las secciones ancladas */
section,
div[id] {
  scroll-margin-top: 20vh;
  /* Hace que el elemento quede más centrado en pantalla */
}

/* ======== Navbar =======*/
.body-nav {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  min-height: 200vh;
  /* para hacer scroll y ver el efecto */

}

/* --- NAVBAR BASE --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  transition: background 0.3s ease, color 0.3s ease;
  z-index: 1000;
  background: transparent;
  color: #02e1b2;
}

.navbar.scrolled {
  background: #012b2a;
  color: white;
  box-shadow: 0 0 30px rgba(0, 255, 198, 0.5);
}

/* --- LEFT ICONS --- */
.social-icons {
  display: flex;
  gap: 1rem;
  font-size: 1.2rem;
}

.social-icons a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s;

}

.social-icons a:hover {
  color: white;
}

/* --- LOGO CENTER --- */
.logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: bold;
  font-size: 1.4rem;
  color: inherit;
  text-decoration: none;
  margin-top: 4px;
}

.logo img {
  width: 250px;
}

/* --- HAMBURGER BUTTON --- */
.hamburger {
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hamburger span {
  display: block;
  height: 3px;
  background: currentColor;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-8px);
}

/* --- FULLSCREEN MENU --- */
.menu {
  background-color: rgba(13, 34, 31, 0.89);
  height: 0;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: height 0.4s ease;
  z-index: 999;
  /* subir esto */
}

.menu.open {
  height: 100%;
}

.menu a {
  position: relative;
  color: #01e0df;
  text-decoration: none;
  font-weight: 900;
  font-size: 2rem;
  margin: 1rem 0;
  text-align: center;
  transition: all 0.4s ease;
  text-shadow: 0 0 10px rgba(1, 224, 223, 0.6),
    0 0 20px rgba(1, 224, 223, 0.4);
}

.menu a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: #01e0df;
  box-shadow: 0 0 10px rgba(1, 224, 223, 0.9);
  transition: transform 0.4s ease;
  border-radius: 2px;
}

.menu a:hover {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(1, 224, 223, 1),
    0 0 30px rgba(1, 224, 223, 0.8),
    0 0 45px rgba(1, 224, 223, 0.6);
  transform: translateY(-3px) scale(1.05);
}

.menu a:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.menu ul li {
  padding: 20px 0;
}

/* ===== SECCIÓN REDES ===== */
.menu .social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.menu .social-icons a {
  font-size: 1.4rem;
  color: #01e0df;
  width: 45px;
  height: 45px;
  border: 2px solid #01e0df;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(1, 224, 223, 0.4);
}

.menu .social-icons a:hover {
  background: #01e0df;
  color: #000;
  box-shadow: 0 0 15px rgba(1, 224, 223, 0.9),
    0 0 30px rgba(1, 224, 223, 0.6);
  transform: scale(1.1);
}

@media screen and (max-width: 767px) {
  .menu ul li a {
    font-size: 20px;
  }

  .logo img {
    width: 150px;
  }

  .social-icons {
    gap: 0.8rem;
    font-size: 0.8rem;
  }
}

/* ========== Hero section =============== */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.7)),
    url('../img/backgroundHero.jpg') no-repeat center/cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-size: 3rem;
}

.hero h1 span {
  color: var(--colorTitle);
}

.hero p {
  margin: 1rem 0;
  font-size: 1.2rem;
}

.btn {
  padding: 0.8rem 2rem;
  background: var(--colorTitle);
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

/* =============btn Whatsapp flotante =========== */

.whatsapp-float {
  position: fixed;
  width: 80px;
  height: 80px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1.2s infinite;
  transition: transform 0.3s ease;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(102%) contrast(102%);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* --- Branding section --- */
.branding {
  padding: 5rem 2rem;
  text-align: center;
}

.branding h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--colorTitle);
}

.branding-img {
  max-width: 800px;
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 255, 198, 0.5);
}

/* --============- Contacto ---================== */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  background: #0d0d0d;
  color: #fff;
  padding: 60px 20px;
  gap: 40px;
  justify-content: center;
}

.contact-info {
  flex: 1 1 300px;
  max-width: 500px;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-info h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.contact-btn {
  background: var(--colorTitle);
  width: 100%;
  border: none;
  padding: 0.8rem;
  font-weight: bold;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
}

.contact-info p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #ccc;
}

.info-block p {
  margin-bottom: 8px;
}

.social-buttons {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  font-size: 20px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

#facebook {
  background-color: #3b5998;
}

#instagram {
  background: radial-gradient(circle at 30% 30%, #feda75, #d62976, #962fbf);
}

#whatsapp {
  background-color: #25d366;
}

#youtube {
  background-color: #FF0000; /* Rojo YouTube */
}

.contact-form {
  flex: 1 1 300px;
  max-width: 600px;
  background: #1a1a1a;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 28px;
  color: #fff;
}

.form-group-contact {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.form-group-contact.full {
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  flex: 1;
  padding: 12px 16px;
  background: #262626;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #aaa;
}

.contact-form textarea {
  resize: vertical;
}
.contact-btn:hover {
  background: #e14e48;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .form-group-contact{
    flex-direction: column;
    gap: 12px;
  }

  .contact-form,
  .contact-info {
    padding: 20px;
  }
}

.empresa-mapa {
  margin-top: 30px;
  width: 100%;
  max-width: 100%;
}

.company-logo {
  max-width: 180px;
  margin-bottom: 20px;
  border-radius: 12px; /* Opcional si quieres bordes redondeados */
}

/* ========= Footer ================= */
.footer {
  background: #151414;
  color: #878787;
  font-family: 'Poppins', sans-serif;
}

.footer a {
  color: #878787;
  text-decoration: none;
}

.footer a:hover {
  color: #01e0df;
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  padding: 50px 20px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.footer-logo img {
  max-width: 180px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 22px;
}

.footer-contact h4,
.footer-links h4,
.footer-newsletter h4 {
  color: #fff;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-contact ul,
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact ul li,
.footer-links ul li {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-contact ul li i {
  color: #01e0df;
  margin-right: 8px;
}

.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-newsletter form {
  display: flex;
  border: 1px solid #2e2e2e;
  background: #2e2e2e;
  border-radius: 5px;
  overflow: hidden;
}

.footer-newsletter input {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: #fff;
  font-size: 14px;
}

.footer-newsletter button {
  background: #01e0df;
  border: none;
  padding: 12px 15px;
  cursor: pointer;
}

.footer-newsletter button i {
  color: #fff;
  font-size: 18px;
}

.footer-social {
  margin-top: 15px;
}

.footer-social a {
  display: inline-block;
  background: #2e2e2e;
  color: #fff;
  width: 36px;
  height: 36px;
  text-align: center;
  line-height: 36px;
  border-radius: 50%;
  margin-right: 8px;
  transition: background 0.3s;
}

.footer-social a:hover {
  background: #01e0df;
  color: #020202;
}

.footer-bottom {
  background: #202020;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}

.footer-bottom a {
  color: #01e0df;
}



/* --- MEDIA QUERIES PARA RESPONSIVE --- */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
  }

  nav li {
    margin: 0.5rem 0;
  }

  .hero {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .btn {
    padding: 0.6rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .logo {
    height: 45px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.9rem;
  }

  .branding h2 {
    font-size: 1.6rem;
  }
}

/* ======== SECCION SERVICIOS ESTILOS GENERALES ======== */
.servicios-carousel {
  padding: 60px 20px;
  background:
    linear-gradient(90deg, #012b2a62, rgba(49, 119, 110, 0.377)),
    url("../img/backgrpund_services.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  text-align: center;
  box-shadow: 0 0 30px rgba(0, 255, 198, 0.5);
  min-height: 100vh;
  position: relative;
}

.servicios-wrapper {
  position: static;
  top: 50%;
  left: 50%;

  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.servicios-carousel h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  line-height: 1em;
  color: #01fce2;
  font-size: 4.5rem;
  font-family: "Concert One", sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.swiper-content {
  width: 80%;
  text-align: center;
}


@keyframes moveGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.servicios-descripcion {
  max-width: 1000px;
  margin: 0 auto 30px auto;
  padding: 0 20px;
  text-align: center;
  font-size: 2.5rem;
  color: #faf8f8;
  line-height: 1.6;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  font-family: "Concert One", sans-serif;
}

.servicios i {
  color: #01fce2;
  font-weight: 800;
  font-size: 3.5rem;
}

.servicios-card {
  background: linear-gradient(90deg, #003a3a73, #0a0f0f83);  
  border-radius: 20px;
  padding: 30px 40px;
  backdrop-filter: blur(5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  font-weight: bold;
  min-height: 500px !important;
}

.swiper-content hr {
  border: none;
  height: 3px;
  width: 80%;
  background-color: rgb(255, 255, 255);
  margin: 0 auto;
  margin-top: 2px;
  margin-bottom: 4px;
}


.servicios-card h3 {
  font-size: 2rem;
  color: #01e0df;
  margin-bottom: 10px;
  font-family: "Concert One", sans-serif;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.servicios-card p {
  font-size: 1.4rem;
  line-height: 1.5;
  flex: initial;
}

.card-btn {
  display: inline-block;
  padding: 10px 18px;
  background: linear-gradient(90deg, #00ffd5, #008cd9);
  color: white;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.6);
  margin-top: auto;
}

.card-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 255, 213, 0.9);
}

.servicios-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 20px 0;
  text-align: left;
}

.servicios-list li {
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  color: white;
}

.servicios-list li i {
  color: #00ffd5;
  margin-right: 8px;
  font-size: 1rem;
}

/* ===== Botones Swiper generales ===== */
/* Ocultar las flechas por defecto de Swiper */
.swiper-button-next::after,
.swiper-button-prev::after {
  content: none;
  /* esto elimina las flechas por defecto */
}

/* Estilo de tus botones */
.swiper-button-prev,
.swiper-button-next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(1, 224, 223, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 15px rgba(0, 255, 213, 0.7);
  cursor: pointer;
  z-index: 999;
  transition: transform 0.3s ease, background 0.3s ease;
}

/* Hover */
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: rgba(1, 224, 223, 1);
  transform: scale(1.2);
  box-shadow: 0 5px 20px rgba(0, 255, 213, 0.8);
}

/* Iconos dentro */
.swiper-button-prev i,
.swiper-button-next i {
  color: white;
  font-size: 1.2rem;
}

/* Posición */
.swiper-button-prev {
  left: 50px;
  top: 70%;
  transform: translateY(-50%);
}

.swiper-button-next {
  right: 50px;
  top: 70%;
  transform: translateY(-50%);
}

@media (max-width: 768px) {
  .servicios-wrapper {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .servicios-carousel h2 {
    font-size: 2.5rem;
  }

  .servicios-descripcion p {
    font-size: 1.5rem;
  }

  .swiper-content {
    width: 100%;
  }

  .servicios-card {
    min-height: 600px !important;
  }

  .swiper-button-prev {
    left: 5px;
  }

  .swiper-button-next {
    right: 5px;
  }
}

/* Móvil */
@media (max-width: 768px) {

  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
  }

  .swiper-button-prev i,
  .swiper-button-next i {
    font-size: 1rem;
  }
}

/* ========Seccion Facturacion Electronica =========*/
.facturacion-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0b3d2e 0%, #0f5c3b 100%);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facturacion-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  width: 100%;
  gap: 40px;
  align-items: center;
}

.facturacion-logo img {
  max-width: 400px;
  height: auto;
  filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.3));
}

.facturacion-content {
  flex: 1;
  min-width: 300px;
}

.facturacion-content h2 {
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 700;
}

.facturacion-content h2 span {
  color: #00ff88;
  /* color llamativo de acento */
}

.facturacion-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.facturacion-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #00ff88;
  color: #0b3d2e;
  padding: 12px 28px;
  font-weight: bold;
  font-size: 1rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.facturacion-btn:hover {
  background: #fff;
  color: #0b3d2e;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .facturacion-container {
    flex-direction: column;
    text-align: center;
  }

  .facturacion-logo img {
    margin-bottom: 20px;
    max-width: 90%;
  }

}

.web-pages {
  position: relative;
  background: url("../img/img_webpages.jpeg") no-repeat center/cover;
  background-attachment: fixed;
  height: 100vh;
  overflow: hidden;
  bottom: 0;
  padding-top: 70px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.web-pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0.2), rgba(22, 58, 53, 0.89));
  z-index: 1;
}

.web-content {
  margin-left: 5%;
  width: 50%;
  display: flex;
  align-items: start;
  justify-content: center;
  flex-direction: column;
}

.web-content h1 {
  font-family: "Concert One", sans-serif;
  font-weight: 400;
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.web-content span {
  color: #01fce2;
  font-size: 4.5rem;

}

.web-content i {
  color: #01fce2;
  font-size: 4;
}


.web-content p {
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.btn-web {
  display: inline-block;
  padding: 12px 24px;
  background-color: #16a085;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.btn-web:hover {
  background-color: #138d75;
}

/* Responsive */
@media (max-width: 768px) {
  .web-content {
    width: 80%;
  }

  .web-content h1 {
    font-size: 2rem;
  }

  .web-content p {
    font-size: 1rem;
  }
}


/* Contenido dentro de .web-pages debe tener z-index mayor */
.web-pages>* {
  position: relative;
  z-index: 2;
}


/*=========Loader ==========*/
.loader {

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 99999;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 24px;
}

.glitch {
  position: relative;
  font-size: 30px;
  /* Puedes ajustar el tamaño según lo necesites */
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  letter-spacing: 5px;
  z-index: 1;
  animation: shift 1s ease-in-out infinite alternate;
}

.glitch:before,
.glitch:after {
  display: block;
  content: attr(data-glitch);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
}

.glitch:before {
  animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) both infinite;
  color: #8b00ff;
  z-index: -1;
}

.glitch:after {
  animation: glitch 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) reverse both infinite;
  color: #00e571;
  z-index: -2;
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }

  20% {
    transform: translate(-3px, 3px);
  }

  40% {
    transform: translate(-3px, -3px);
  }

  60% {
    transform: translate(3px, 3px);
  }

  80% {
    transform: translate(3px, -3px);
  }

  to {
    transform: translate(0);
  }
}

@keyframes shift {

  0%,
  40%,
  44%,
  58%,
  61%,
  65%,
  69%,
  73%,
  100% {
    transform: skewX(0deg);
  }

  41% {
    transform: skewX(10deg);
  }

  42% {
    transform: skewX(-10deg);
  }

  59% {
    transform: skewX(40deg) skewY(10deg);
  }

  60% {
    transform: skewX(-40deg) skewY(-10deg);
  }

  63% {
    transform: skewX(10deg) skewY(-5deg);
  }

  70% {
    transform: skewX(-50deg) skewY(-20deg);
  }

  71% {
    transform: skewX(10deg) skewY(-10deg);
  }
}

/*=============clientes===============*/
.clientes-slider-section {
  background: #002c2b;
  padding: 20px 20px;
  text-align: center;

}

.clientes-slider-title {
  font-size: 2rem;
  color: var(--colorTitle);
  font-family: "Concert One", sans-serif;
  margin-bottom: 20px;
}

.cliente-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.cliente-logo img {
  max-width: 200px;
  max-height: 200px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.cliente-logo img:hover {
  filter: grayscale(0%);
}

.clientes-swiper {
  width: 100%;
  padding: 10px 0;
}

.swiper-slide.cliente-logo {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 150px;
  /* altura consistente del carrusel */
}

.cliente-logo img {
  max-width: 200px;
  max-height: 100px;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.cliente-logo img:hover {
  filter: grayscale(0%);
}


.imagen-flotante {
  position: fixed;
  /* flota en toda la pantalla */
  top: -150px;
  /* arranca arriba */
  right: -150px;
  /* arranca a la derecha */
  width: 150px;
  opacity: 0;
  /* oculta al inicio */
  z-index: 9999;
  transition: opacity 0.4s ease;
  /* solo para fade in/out */
  transform: rotate(-15deg);
}

.ecom-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 28px;  
  display:flex;
  align-items: center;
  justify-content: center;
  min-height:100vh ;
  background: #012B1D; 
}
.content-ecom{
  max-width: 80%;
  display: grid;  
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

/* tarjeta izquierda */
.ecom-card {
  background: linear-gradient(180deg, rgba(14, 167, 159, 0.219), rgba(14, 167, 159, 0.356));
  border-radius: var(--radius);
  padding: 36px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: rgba(14, 167, 160, 0.08);
  padding: 6px 10px;
  border-radius: 8px;
}

.ecom-card h2 {
  font-size: 2.1rem;
  margin: 18px 0 12px;
  line-height: 1.03;
  color: #59AB90
}

p.lead {
  color: var(--muted);
  margin-bottom: 18px;
  font-size: 1rem
}


.features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 18px 0 26px
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #063d3a
}

.feature .dot {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  font-weight: 700
}


.cta-row {
  display: flex;
  gap: 12px;
  align-items: center
}

.btn-primary {
  background: linear-gradient(90deg, var(--primary), var(--accent));
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(10, 167, 160, 0.12)
}

.btn-ghost {
  background: transparent;
  color: var(--primary-dark);
  padding: 10px 14px;
  border-radius: 10px;
  border: 1px solid rgba(6, 137, 128, 0.08);
  text-decoration: none;
  font-weight: 600
}


.trust {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem
}

.logo-small {
  width: 86px;
  height: auto;
  opacity: 0.95
}


/* tarjeta derecha - mockup */
.mockup {
  background: var(--card);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 30px rgba(3, 23, 23, 0.06);
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start
}

.mockup .screen {
  width: 100%;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafb, #ffffff);
  border: 1px solid rgba(8, 38, 37, 0.03);
  display: flex;
  align-items: center;
  justify-content: center
}

.mockup .meta {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
  justify-content: space-between
}

.badge {
  background: var(--primary);
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700
}


/* responsive */
@media (max-width:1100px) {
  .ecom-section {
    grid-template-columns: 1fr;
    padding: 18px
  }

  .mockup {
    order: -1
  }
  .content-ecom{
    max-width: 95%;
    grid-template-columns: 1fr;
  }
}


@media (max-width:560px) {
  h2 {
    font-size: 1.6rem
  }

  .mockup .screen {
    height: 220px
  }

}