/* ===================== */
/* PALETA Y RESET GLOBAL */
/* ===================== */
:root {
  --color-primary-dark: #1f0057;   /* Fondo oscuro, acentos serios */
  --color-primary: #7d0cef;        /* Color principal, llamadas a la acción */
  --color-secondary: #af11d5;      /* Color secundario, destacados */
  --color-accent-1: #df2fa8;       /* Acento cálido, elementos interactivos */
  --color-accent-2: #e94d91;       /* Acento suave, hover states */
  --color-light: #e5eefc;          /* Fondo claro, tarjetas, secciones */
  --color-white: #ffffff;          /* Fondo, texto sobre oscuro */
  --color-text: #1f0057;           /* Texto principal */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-light);
  max-width: 100%;
  overflow-x: hidden;
  padding-top: 100px;
}

/* ===================== */
/* HEADER Y NAVEGACIÓN   */
/* ===================== */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 8px var(--color-light);
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-mar-technology {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  margin: auto;
  padding: 0 20px;
  position: relative;
}

.logo-mar-technology {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.logo-mar-technology-img {
  height: 104px;
  width: auto;
  display: block;
}

.nombre-empresa {
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 1.5px;
  white-space: nowrap;
  display: block;
  max-width: 350px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nombre-empresa .mar {
  color: var(--color-primary-dark);
}

.nombre-empresa .technology {
  color: var(--color-primary);
}

.menu-movil-mar {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  cursor: pointer;
  margin-left: 24px;
  z-index: 1200;
  background: transparent;
  border: none;
}

.menu-movil-mar span {
  display: block;
  width: 30px;
  height: 4px;
  background: var(--color-primary-dark);
  margin: 5px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

.enlaces-nav-mar {
  list-style: none;
  display: flex;
  gap: 18px;
}

.enlaces-nav-mar li a {
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.2s;
  padding: 6px 12px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.enlaces-nav-mar li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  background: var(--color-accent-1);
  transition: width 0.3s;
  border-radius: 2px;
}

.enlaces-nav-mar li a:hover {
  color: var(--color-secondary);
}

.enlaces-nav-mar li a:hover::after {
  width: 100%;
}

/* ===================== */
/* RESPONSIVE HEADER/BODY*/
/* ===================== */
@media (max-width: 1450px) {
  .menu-movil-mar {
    display: flex;
  }
  .enlaces-nav-mar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 220px;
    height: 100vh;
    background: var(--color-white);
    box-shadow: -2px 0 12px var(--color-primary-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 24px 0 24px;
    gap: 18px;
    transition: right 0.3s;
    z-index: 1100;
  }
  .enlaces-nav-mar.open {
    right: 0;
    padding-top: 100px;
  }
  .logo-mar-technology {
    gap: 10px;
  }
}

@media (max-width: 600px) {
  .nav-mar-technology {
    width: 98%;
    padding: 0 8px;
  }
  .logo-mar-technology-img {
    height: 48px;
  }
  .nombre-empresa {
    font-size: 1.1rem;
    max-width: auto;
  }
  .logo-mar-technology {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
}

/* ===================== */
/* FOOTER                */
/* ===================== */
footer {
    width: 100%;
  background: var(--color-primary-dark);
  color: var(--color-white);
  padding: 60px 0 0 0;
  margin-top: 60px;
  font-size: 1.08rem;
}

.footer-mar-technology-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin: auto;
  gap: 48px;
  padding: 0 12px 40px 32px;
}

.footer-mar-technology-logo-info {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.footer-mar-technology-logo {
  width: 180px;
}

.footer-mar-technology-nombre {
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.footer-mar-technology-nombre .mar {
  color: var(--color-white);
}

.footer-mar-technology-nombre .technology {
  color: var(--color-primary);
}

.footer-mar-technology-desc {
  color: var(--color-white);
  font-size: 1rem;
  margin-top: 8px;
  text-align: center;
}

.footer-mar-technology-links {
  flex: 1 1 180px;
}

.footer-mar-technology-links h4 {
  color: var(--color-accent-2);
  font-size: 1.18rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-mar-technology-links ul {
  list-style: none;
  padding: 0;
}

.footer-mar-technology-links ul li {
  margin-bottom: 8px;
}

.footer-mar-technology-links ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  padding: 4px 0;
  display: inline-block;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.footer-mar-technology-links ul li a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 0;
  height: 3px;
  background: var(--color-primary);
  transition: width 0.3s;
  border-radius: 2px;
}

.footer-mar-technology-links ul li a:hover {
  color: var(--color-secondary);
  background: transparent;
}

.footer-mar-technology-links ul li a:hover::after {
  width: 100%;
}

.footer-mar-technology-contacto {
  flex: 1 1 220px;
}

.footer-mar-technology-contacto h4 {
  color: var(--color-accent-2);
  font-size: 1.18rem;
  margin-bottom: 12px;
  font-weight: bold;
}

.footer-mar-technology-contacto p {
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-mar-technology-contacto i {
  color: var(--color-white);
  font-size: 1.1rem;
}

.footer-mar-technology-redes {
  margin-top: 10px;
}

.footer-mar-technology-redes a {
  color: var(--color-white);
  font-size: 1.4rem;
  margin-right: 12px;
  transition: color 0.2s;
}

.footer-mar-technology-redes a:hover {
  color: var(--color-primary);
}

.footer-mar-technology-redes a i {
  color: var(--color-white);
  transition: color 0.2s;
}

.footer-mar-technology-redes a:hover i {
  color: var(--color-primary);
}

.footer-mar-technology-bottom {
  text-align: center;
  padding: 18px 0 10px 0;
  font-size: 1rem;
  margin-top: 0;
}

/* ===================== */
/* RESPONSIVE FOOTER     */
/* ===================== */
@media (max-width: 900px) {
  .footer-mar-technology-container {
    flex-direction: column;
    align-items: center;
    gap: 28px;
    width: 100%;
    padding: 0 8px 32px 8px;
  }
  .footer-mar-technology-logo-info {
    align-items: center;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-mar-technology-links {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
    text-align: center;
  }
  .footer-mar-technology-links h4 {
    grid-column: 1 / span 2;
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-mar-technology-links ul {
    padding: 0;
    margin: 0;
    display: contents;
  }
  .footer-mar-technology-links ul li {
    margin-bottom: 8px;
    width: 100%;
  }
  .footer-mar-technology-contacto {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }
  .footer-mar-technology-contacto h4 {
    text-align: center;
    margin-bottom: 10px;
  }
  .footer-mar-technology-contacto p {
    justify-content: center;
    flex-wrap: wrap;
  }
  .footer-mar-technology-bottom {
    font-size: 0.98rem;
  }
}

@media (max-width: 600px) {
  .footer-mar-technology-container {
    width: 100%;
    padding: 0 4px 24px 4px;
  }
  .footer-mar-technology-logo-info {
    gap: 10px;
  }
  .footer-mar-technology-links,
  .footer-mar-technology-contacto {
    max-width: 98vw;
  }
  .footer-mar-technology-contacto p {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ===================== */
/* WHATSAPP BUBBLE       */
/* ===================== */
.mar-technology-whatsapp-bubble {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 2000;
  background: var(--color-secondary);
  border-radius: 50%;
  box-shadow: 0 4px 16px var(--color-primary);
  width: 76px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.mar-technology-whatsapp-bubble a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  transition: filter 0.2s;
}

.mar-technology-whatsapp-icon {
  width: 48px;
  height: 48px;
  transition: filter 0.2s;
  filter: brightness(0) invert(1);
}

.mar-technology-whatsapp-bubble:hover {
  background: var(--color-accent-1);
  transform: scale(1.12);
  box-shadow: 0 8px 24px var(--color-primary);
}

.mar-technology-whatsapp-bubble:hover .mar-technology-whatsapp-icon {
  filter: brightness(0) invert(1);
}





/* === DASHBOARD SECTION LAYOUT === */
.dashboard-section {
  width: 100%;
  min-height: 700px;
  position: relative;
  display: flex;
  padding: 10px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('/servicios/photos/dashboard-section/9.svg') center/cover no-repeat;
}
.dashboard-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  z-index: 1;
}
.dashboard-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
  justify-items: center;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.dashboard-info {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 20px;
  background-color: var(--color-white);
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.dashboard-title {
  color: var(--color-primary);
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px #b15ef5cc;
  letter-spacing: 2px;
}
.dashboard-desc {
  color: var(--color-accent-2);
  font-size: 1.25rem;
  text-align: left;
  max-width: 600px;
  margin-bottom: 0;
  line-height: 1.7;
  text-shadow: 0 2px 8px #1f005755;
}

/* === BENEFICIOS Y DEMO === */
.dashboard-beneficios-demo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.dashboard-beneficios-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.beneficio-card {
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.09);
  padding: 38px 22px 28px 22px;
  border-radius: 22px;
  width: 270px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.22s, box-shadow 0.22s;
  gap: 10px;
}
.beneficio-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0px 8px 32px rgba(125,12,239,0.18);
}
.beneficio-card-circle {
  width: 70px;
  height: 70px;
  background: var(--color-accent-2);
  border-radius: 50%;
  position: absolute;
  top: -22px;
  right: -22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.beneficio-card-circle p {
  color: var(--color-light);
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-right: 10px;
  display: block;
}
.beneficio-card-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  margin-top: 8px;
}
.beneficio-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.beneficio-card h3 {
  font-size: 1.12rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: var(--color-primary-dark);
}
.beneficio-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* === DEMO Y BOTÓN === */
.dashboard-demo-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
}
.dashboard-card {
  position: relative;
  width: 350px;
  max-width: 95vw;
  margin: 0;
  border-radius: 18px;
  overflow: visible;
  z-index: 3;
  margin-top: 0;
}
.dashboard-cotizar {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-left: 12px;
}
.btn-cotizar {
  background: linear-gradient(90deg, #7d0cef 0%, #af11d5 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 18px 38px;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px #7d0cef44;
  transition: background 0.2s, transform 0.18s;
  margin-bottom: 10px;
}
.btn-cotizar:hover {
  background: linear-gradient(90deg, #af11d5 0%, #e94d91 100%);
  transform: scale(1.04);
}

/* === RESPONSIVE === */
@media (max-width: 1100px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 4vw;
  }
  .dashboard-info {
    align-items: center;
    text-align: center;
  }
  .dashboard-title, .dashboard-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .dashboard-beneficios-demo {
    align-items: center;
  }
  .dashboard-beneficios-row {
    justify-content: center;
  }
  .dashboard-demo-row {
    justify-content: center;
    align-items: center;
    gap: 18px;
  }
  .dashboard-cotizar {
    margin-left: 0;
    justify-content: center;
  }
}
@media (max-width: 700px) {
  .dashboard-section { min-height: 0; }
  .dashboard-grid { padding: 20px 2vw; }
  .dashboard-title { font-size: 1.5rem; }
  .dashboard-desc { font-size: 1rem; }
  .beneficio-card { width: 98vw; max-width: 350px; min-height: 0; }
  .dashboard-card { width: 98vw; }
  .btn-cotizar { width: 100%; padding: 14px 0; font-size: 1rem; }
}





/* === DASHBOARD DEMO CARD FIX === */
.dashboard-card {
  background: var(--color-primary);
  box-shadow: 0 8px 32px #7d0cef33;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  width: 350px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0;
}

.dashboard-card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #fff2 0%, #7d0cef22 100%);
  z-index: 1;
  pointer-events: none;
}

.dashboard-card-bg {
  position: absolute;
  inset: 0;
  background: none;
  z-index: 2;
}

.dashboard-card-inner {
  position: relative;
  z-index: 3;
  padding: 28px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 500px;
  min-height: 320px;
}

.dashboard-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dashboard-card-icon-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dashboard-card-icon {
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  box-shadow: 0 2px 8px #7d0cef22;
}

.dashboard-card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.dashboard-card-header h3 {
  color: var(--color-light);
  font-size: 1.18rem;
  font-weight: bold;
  margin: 0;
}

.dashboard-card-live {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1rem;
}

.dashboard-card-dot {
  width: 10px;
  height: 10px;
  background: #e94d91;
  border-radius: 50%;
  display: inline-block;
  margin-right: 2px;
  box-shadow: 0 0 8px #e94d91aa;
}

.dashboard-card-stats {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 8px;
}

.dashboard-card-stats > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  color: #fff;
}

.dashboard-card-stats p:first-child {
  font-size: 0.98rem;
  color: #f3eaff;
  margin: 0;
}

.dashboard-card-stats p:nth-child(2) {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 0;
}

.dashboard-card-stats span {
  font-size: 0.95rem;
  color: #baffc9;
  font-weight: 600;
}

.dashboard-card-bars {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 48px;
  margin: 10px 0 0 0;
}

.dashboard-card-bars > div {
  width: 12px;
  background: #fff3;
  border-radius: 6px 6px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.dashboard-card-bars > div > div {
  width: 100%;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #e94d91 0%, #7d0cef 100%);
  box-shadow: 0 2px 8px #7d0cef33;
}

.dashboard-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  gap: 12px;
}

.dashboard-card-footer > div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: 0.98rem;
}

.dashboard-card-footer svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

.dashboard-card-footer button {
  background: #fff;
  color: var(--color-primary);
  border: none;
  border-radius: 8px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px #7d0cef22;
  transition: background 0.2s, color 0.2s;
}

.dashboard-card-footer button:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
}


.beneficio-card-icon i {
  font-size: 2.2rem;
  color: var(--color-primary);
  display: block;
  margin: 0 auto;
}

.dashboard-card-bars {
  height: 90%; /* antes era 48px */
}



/* Card Cotizar adaptada de Uiverse.io */
.dashboard-card-cotizar.card {
  margin: 0;
  width: 320px;
  min-width: 260px;
  max-width: 100%;
  border-radius: 18px;
  background: var(--color-secondary);
  box-shadow: 0 8px 32px #7d0cef33;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.dashboard-card-cotizar .header {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.5rem;
}

.dashboard-card-cotizar .title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.dashboard-card-cotizar .price {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.dashboard-card-cotizar .desc {
  margin: 0.75rem 0;
  line-height: 1.625;
  color: var(--color-white);
}

.dashboard-card-cotizar .lists {
  margin-bottom: 1.5rem;
  flex: 1 1 0%;
  color: var(--color-white);
  list-style: none;
  padding: 0;
}

.dashboard-card-cotizar .list {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  margin-left: 0.5rem;
}

.dashboard-card-cotizar .list svg {
  height: 1.5rem;
  width: 1.5rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
  color: var(--color-primary-dark);
}

.dashboard-card-cotizar .action {
  border: none;
  outline: none;
  display: inline-block;
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 0.75rem 1.25rem;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #1a1333;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.dashboard-card-cotizar .action:hover {
  background: #7d0cef;
  color: #fff;
}

/* Responsive para la card cotizar */
@media (max-width: 700px) {
  .dashboard-card-cotizar.card {
    width: 98vw;
    min-width: 0;
    padding: 1rem;
  }
}









/* CRM Section: invierte el orden de columnas */
.crm-section {
  width: 100%;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('/servicios/photos/crm-section/10.svg') center/cover no-repeat;
}
.crm-section .dashboard-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  z-index: 1;
}
.crm-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1.3fr 1fr; /* Cards a la izquierda, info a la derecha */
  gap: 48px;
  align-items: center;
}
.crm-info {
  align-items: flex-end;
  text-align: right;
}
.crm-info .dashboard-title,
.crm-info .dashboard-desc {
  text-align: right;
  margin-left: auto;
  margin-right: 0;
}

/* Responsive: igual que dashboard-section */
@media (max-width: 1100px) {
  .crm-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 4vw;
  }
  .crm-info {
    align-items: center;
    text-align: center;
  }
  .crm-info .dashboard-title,
  .crm-info .dashboard-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 700px) {
  .crm-section { min-height: 0; }
  .crm-grid { padding: 20px 2vw; }
}


/* CRM Chat Card Adaptada */
.crm-chat-card {
  width: 320px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px #7d0cef33;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  margin-bottom: 0;
}

.crm-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px 8px 18px;
  border-bottom: 1px solid #f0f0f0;
  background: #fafaff;
}

.crm-chat-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--color-primary-dark);
  font-size: 1.1rem;
}

.crm-chat-icon {
  width: 28px;
  height: 28px;
  color: var(--color-primary);
}

.crm-chat-settings {
  background: none;
  border: none;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.crm-chat-settings:hover {
  background: #f0f0f0;
}
.crm-chat-settings-icon {
  width: 22px;
  height: 22px;
  color: #7d0cef;
}

.crm-chat-messages {
  list-style: none;
  margin: 0;
  padding: 18px 18px 0 18px;
  border-bottom: 1px solid #f0f0f0;
  min-height: 180px;
}

.crm-chat-msg {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}
.crm-chat-msg.right {
  align-items: flex-end;
}
.crm-chat-msg.left {
  align-items: flex-start;
}
.crm-chat-time {
  font-size: 0.85rem;
  color: #bdb7d3;
  margin-bottom: 2px;
  text-align: right;
}
.crm-chat-bubble {
  border-radius: 12px;
  padding: 8px 12px;
  font-size: 0.98rem;
  background: #f3f3f7;
  color: #1f0057;
  max-width: 180px;
  word-break: break-word;
}
.crm-chat-bubble.blue {
  background: linear-gradient(90deg, #7d0cef 0%, #af11d5 100%);
  color: #fff;
}
.crm-chat-bubble.typing {
  display: flex;
  gap: 3px;
  background: #f3f3f7;
  padding: 8px 12px;
}
.crm-chat-bubble.typing .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bdb7d3;
  animation: crm-chat-dot 1s infinite alternate;
}
.crm-chat-bubble.typing .dot:nth-child(2) {
  background: #7d0cef;
  animation-delay: 0.2s;
}
.crm-chat-bubble.typing .dot:nth-child(3) {
  background: #af11d5;
  animation-delay: 0.4s;
}
@keyframes crm-chat-dot {
  to { opacity: 0.3; transform: scale(0.8);}
}

.crm-chat-input-wrap {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  background: #fafaff;
  border-top: 1px solid #f0f0f0;
}
.crm-chat-input {
  flex: 1;
  border: none;
  border-radius: 12px;
  background: #f3f3f7;
  padding: 8px 12px;
  font-size: 1rem;
  color: #1f0057;
  outline: none;
}
.crm-chat-send {
  background: none;
  border: none;
  margin-left: 8px;
  padding: 6px;
  border-radius: 50%;
  cursor: pointer;
  color: #7d0cef;
  transition: background 0.2s;
}
.crm-chat-send:hover {
  background: #f0f0f0;
}
.crm-chat-send-icon {
  width: 18px;
  height: 18px;
  color: #7d0cef;
}

/* Responsive */
@media (max-width: 700px) {
  .crm-chat-card {
    width: 98vw;
    min-width: 0;
    padding: 1rem;
  }
}


/* From Uiverse.io by lucas_5777 */
.card.crm-sales-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff, #f9f9f9);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  width: 100%;
  border-radius: 28px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Helvetica Neue", Arial, sans-serif;
  transform: translateY(20px);
  opacity: 0;
  animation: cardFadeUp 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  margin-bottom: 1.2rem;
}

.card.crm-sales-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.12);
  transition:
    transform 0.45s ease,
    box-shadow 0.45s ease;
}

.card.crm-sales-card .title {
  display: flex;
  align-items: center;
}

.card.crm-sales-card .title span {
  position: relative;
  padding: 0.6rem;
  background: linear-gradient(135deg, #34d399, #10b981);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  box-shadow: 0 3px 8px rgba(16, 185, 129, 0.35);
  animation: pulse 2.4s ease-in-out infinite;
}

.card.crm-sales-card .title span svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  height: 1rem;
}

.card.crm-sales-card .title-text {
  margin-left: 0.75rem;
  color: #1c1c1e;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.card.crm-sales-card .percent {
  margin-left: 0.5rem;
  color: #0a7c36;
  font-weight: 600;
  display: flex;
  font-size: 15px;
}

.card.crm-sales-card .data {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.card.crm-sales-card .data p {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  color: #111827;
  font-size: 2.4rem;
  line-height: 2.7rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.03em;
  opacity: 0;
  animation: fadeIn 0.8s ease forwards 0.3s;
}

.card.crm-sales-card .data .range {
  position: relative;
  background-color: #e5e5ea;
  width: 100%;
  height: 0.55rem;
  border-radius: 9999px;
  overflow: hidden;
}

.card.crm-sales-card .data .range .fill {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #34d399, #10b981);
  width: 0%;
  height: 100%;
  border-radius: inherit;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.15);
  animation:
    fillBar 1.6s ease forwards 0.5s,
    pulseFill 4s ease-in-out infinite 2.2s;
}

/* ✨ Animations */
@keyframes cardFadeUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fillBar {
  from {
    width: 0%;
  }
  to {
    width: 76%;
  }
}

@keyframes pulseFill {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.2);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 3px 8px rgba(16, 185, 129, 0.35);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 0 6px 14px rgba(16, 185, 129, 0.45);
  }
}


.crm-demo-column {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
}

.crm-demo-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

/* Responsive */
@media (max-width: 900px) {
  .crm-demo-column {
    gap: 24px;
  }
  .crm-demo-cards {
    width: 100%;
    align-items: stretch;
  }
  .card.crm-sales-card{
    width: 100%;
  }
  .crm-chat-card{
    width: 100%;
  }
}




/* ...código existente... */

/* Fondo para automation-section */
.automation-section {
  position: relative;
  width: 100%;
  background:url('/servicios/photos/sistemas-empresariales-section/12.svg') center/cover no-repeat;
  z-index: 1;
  overflow: hidden;
}

.automation-section .dashboard-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Asegúrate que el contenido esté por encima del overlay */
.automation-section .dashboard-grid {
  position: relative;
  z-index: 3;
}



/* Fondo para paginas-web-section */
.paginas-web-section {
  position: relative;
  width: 100%;
  background: url('/servicios/photos/sitio-web-section/12.svg') center/cover no-repeat;
  z-index: 1;
  overflow: hidden;
}

.paginas-web-section .dashboard-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.paginas-web-section .dashboard-grid {
  position: relative;
  z-index: 3;
}








/* ===================== */
/* E-COMMERCE MAR SECTION */
/* ===================== */
.ecommerce-mar-section {
  width: 100%;
  min-height: 700px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: url('/servicios/photos/e-commerce-section/13.svg') center/cover no-repeat;
  padding: 0;
}
.ecommerce-mar-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  z-index: 1;
}
.ecommerce-mar-grid {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  padding: 60px 24px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  align-items: center;
}
.ecommerce-mar-info {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: 20px;
  background-color: #fff;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
}
.ecommerce-mar-title {
  color: #7d0cef;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: left;
  margin-bottom: 18px;
  text-shadow: 0 4px 24px #b15ef5cc;
  letter-spacing: 2px;
}
.ecommerce-mar-desc {
  color: #e94d91;
  font-size: 1.25rem;
  text-align: left;
  max-width: 600px;
  margin-bottom: 0;
  line-height: 1.7;
  text-shadow: 0 2px 8px #1f005755;
}

/* Beneficios */
.ecommerce-mar-beneficios-demo {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ecommerce-mar-beneficios-row {
  display: flex;
  flex-direction: row;
  gap: 28px;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.ecommerce-mar-beneficio-card {
  background: #fff;
  box-shadow: 0px 0px 15px rgba(0,0,0,0.09);
  padding: 38px 22px 28px 22px;
  border-radius: 22px;
  width: 270px;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.22s, box-shadow 0.22s;
  gap: 10px;
}
.ecommerce-mar-beneficio-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0px 8px 32px rgba(125,12,239,0.18);
}
.ecommerce-mar-beneficio-circle {
  width: 70px;
  height: 70px;
  background: #e94d91;
  border-radius: 50%;
  position: absolute;
  top: -22px;
  right: -22px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ecommerce-mar-beneficio-circle p {
  color: #e5eefc;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 16px;
  margin-right: 10px;
  display: block;
}
.ecommerce-mar-beneficio-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  margin-top: 8px;
  font-size: 2.2rem;
  color: #7d0cef;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecommerce-mar-beneficio-card h3 {
  font-size: 1.12rem;
  font-weight: bold;
  margin-bottom: 6px;
  color: #1f0057;
}
.ecommerce-mar-beneficio-card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Demos */
.ecommerce-mar-demo-row {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: flex-start;
}
.ecommerce-mar-demo1 {
  flex: 1 1 320px;
  max-width: 350px;
}
.ecommerce-mar-demo-columna {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 320px;
  max-width: 350px;
}

/* Receipt */
.ecommerce-mar-receipt {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px #7d0cef33;
  padding: 28px 18px;
  font-family: 'Segoe UI', Arial, sans-serif;
  margin-bottom: 0;
}
.ecommerce-mar-receipt .shop-name {
  font-weight: bold;
  font-size: 1.2rem;
  color: #7d0cef;
  margin-bottom: 8px;
}
.ecommerce-mar-receipt .info {
  font-size: 0.98rem;
  color: #1f0057;
  margin-bottom: 12px;
}
.ecommerce-mar-receipt table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 12px;
}
.ecommerce-mar-receipt th,
.ecommerce-mar-receipt td {
  font-size: 1rem;
  padding: 4px 6px;
  text-align: left;
  border-bottom: 1px solid #e5eefc;
}
.ecommerce-mar-receipt .total {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  color: #af11d5;
  margin-top: 10px;
}
.ecommerce-mar-receipt .thanks {
  text-align: center;
  color: #e94d91;
  margin-top: 18px;
  font-weight: 600;
}

/* Transaction Card */
.ecommerce-mar-transaction-card {
  background: #fafaff;
  border-radius: 16px;
  box-shadow: 0 4px 16px #af11d522;
  padding: 18px 20px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.transaction-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  color: #7d0cef;
  font-size: 1.1rem;
}
.transaction-status {
  color: #34d399;
  font-size: 1rem;
  font-weight: 600;
}
.transaction-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #1f0057;
}
.transaction-amount {
  font-size: 1.5rem;
  font-weight: bold;
  color: #af11d5;
}
.transaction-detail {
  font-size: 1rem;
}
.transaction-date {
  font-size: 0.95rem;
  color: #bdb7d3;
}

/* Added to cart Card */
.ecommerce-mar-added-cart-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px #af11d522;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.added-cart-icon {
  font-size: 2.2rem;
  color: #7d0cef;
  margin-top: 4px;
}
.added-cart-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.added-cart-title {
  font-weight: bold;
  color: #1f0057;
  font-size: 1.08rem;
}
.added-cart-product {
  color: #af11d5;
  font-size: 1rem;
}
.added-cart-price {
  color: #e94d91;
  font-weight: bold;
  font-size: 1.1rem;
}
.added-cart-btn {
  margin-top: 8px;
  background: linear-gradient(90deg, #7d0cef 0%, #af11d5 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 10px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 4px 24px #7d0cef44;
  transition: background 0.2s, transform 0.18s;
}
.added-cart-btn:hover {
  background: linear-gradient(90deg, #af11d5 0%, #e94d91 100%);
  transform: scale(1.04);
}

/* Botón Cotizar */
.ecommerce-mar-cotizar {
  margin-top: 18px;
  display: flex;
  justify-content: flex-end;
}
.ecommerce-mar-btn-cotizar {
  background: linear-gradient(90deg, #7d0cef 0%, #af11d5 100%);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 18px 38px;
  font-size: 1.18rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px #7d0cef44;
  transition: background 0.2s, transform 0.18s;
}
.ecommerce-mar-btn-cotizar:hover {
  background: linear-gradient(90deg, #af11d5 0%, #e94d91 100%);
  transform: scale(1.04);
}

/* Responsive */
@media (max-width: 1100px) {
  .ecommerce-mar-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 2vw;
  }
  .ecommerce-mar-demo-row {
    gap: 24px;
  }
  .ecommerce-mar-demo1,
  .ecommerce-mar-demo-columna {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .ecommerce-mar-title { font-size: 1.5rem; }
  .ecommerce-mar-desc { font-size: 1rem; }
  .ecommerce-mar-beneficio-card { width: 98vw; max-width: 350px; min-height: 0; }
  .ecommerce-mar-demo1,
  .ecommerce-mar-demo-columna { width: 98vw; }
  .ecommerce-mar-btn-cotizar { width: 100%; padding: 14px 0; font-size: 1rem; }
}









/* ===== PLANES MAR SECTION ===== */
.planes-mar-section {
  width: 100%;
  padding: 60px 0 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.planes-mar-header {
  max-width: 700px;
  margin: 0 auto 32px auto;
  text-align: center;
}

.planes-mar-title {
  font-weight: 600;
  font-size: 4.25em;
  margin-bottom: 0.75em;
  color: var(--color-accent-1);
}

.planes-mar-desc {
  color: var(--color-primary);
  font-size: 2.15em;
  margin-bottom: 1.5em;
}

.planes-mar-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  width: 100%;
}

.planes-mar-card {
  flex: 1 1 14rem;
  padding: 1.5em 2em;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-items: start;
  gap: 1.25em;
  color: #eceff1;
  background-color: var(--color-primary);
  border: 1px solid #eceff133;
  border-radius: 15px;
  min-width: 260px;
  max-width: 340px;
  box-sizing: border-box;
  transition: all ease-in-out 0.3s;
}

.planes-mar-card-heading {
  font-size: 1.05em;
  font-weight: 600;
}

.planes-mar-card-price {
  font-size: 1.75em;
  font-weight: 700;
}

.planes-mar-card-bullets {
  line-height: 1.4;
  margin: 0;
  padding: 0 0 0 18px;
}

.planes-mar-card-bullets li {
  margin-bottom: 0.5em;
}

.planes-mar-card-cta {
  display: block;
  align-self: end;
  margin: 1em 0 0.5em 0;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: transparent;
  outline: 1px solid white;
  padding: 0.7em;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.planes-mar-card:hover {
  background: #ffffff80;
  color: #000;
  outline: 1px solid rgb(255, 255, 255);
  box-shadow: inset 0 0 80px whitesmoke, inset 20px 0 80px rgba(255, 0, 255, 0.747),
    inset -20px 0 80px #0ff, inset 20px 0 300px #f0f, inset -20px 0 300px #0ff,
    0 0 50px #fff, -10px 0 80px #f0f, 10px 0 80px #0ff;
}

.planes-mar-card:hover > .planes-mar-card-cta {
  outline: none;
  background-color: #0d0d0d;
  color: #fff;
}

/* Responsive */
@media (max-width: 900px) {
  .planes-mar-cards {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }
  .planes-mar-card {
    max-width: 98vw;
    min-width: 0;
  }
}



/* Quita el subrayado y hereda el color del texto para el enlace tipo botón */
a.action {
  text-decoration: none;
  color: inherit;
}

a.action:hover {
  text-decoration: none;
  color: inherit;
}















/* Responsive: Secciones en columna para <1350px */
@media (max-width: 1350px) {
  .dashboard-grid,
  .crm-grid,
  .ecommerce-mar-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 4vw;
  }
  .dashboard-info,
  .crm-info,
  .ecommerce-mar-info {
    align-items: center;
    text-align: center;
  }
  .dashboard-title, .dashboard-desc,
  .crm-info .dashboard-title, .crm-info .dashboard-desc,
  .ecommerce-mar-title, .ecommerce-mar-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .dashboard-beneficios-demo,
  .ecommerce-mar-beneficios-demo {
    align-items: center;
  }
  .dashboard-beneficios-row,
  .ecommerce-mar-beneficios-row {
    justify-content: center;
  }
  .dashboard-demo-row,
  .ecommerce-mar-demo-row {
    justify-content: center;
    align-items: center;
    gap: 18px;
  }
  .dashboard-cotizar,
  .ecommerce-mar-cotizar {
    margin-left: 0;
    justify-content: center;
  }
}



/* Column reverse para Páginas Web y CRM en <1350px */
@media (max-width: 1350px) {
  .paginas-web-section .dashboard-grid,
  .crm-section .dashboard-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
    padding: 40px 4vw;
  }
  .paginas-web-section .dashboard-info,
  .crm-section .dashboard-info {
    align-items: center;
    text-align: center;
    margin-bottom: 0;
  }
  .paginas-web-section .dashboard-title,
  .paginas-web-section .dashboard-desc,
  .crm-section .dashboard-title,
  .crm-section .dashboard-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Si el ancho es mayor a 1350px, vuelve a grid */
@media (min-width: 1351px) {
  .paginas-web-section .dashboard-grid,
  .crm-section .dashboard-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 48px;
    align-items: center;
    padding: 60px 24px;
  }
}





.planes-mar-card {
  max-width: 340px;
  min-width: 260px;
  width: 100%;
  word-break: break-word;
  box-sizing: border-box;
}




/* Responsive total: columna y ancho 90% en <765px */
@media(max-width: 765px) {
  main > section,
  .ecommerce-mar-grid,
  .planes-mar-cards,
  .dashboard-beneficios-demo,
  .dashboard-beneficios-row,
  .dashboard-demo-row,
  .crm-demo-column,
  .crm-demo-cards,
  .ecommerce-mar-beneficios-demo,
  .ecommerce-mar-beneficios-row,
  .ecommerce-mar-demo-row,
  .ecommerce-mar-demo-columna {
    flex-direction: column !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    margin: 0 auto !important;
    gap: 18px !important;
  }

  .dashboard-grid, .crm-grid{
    flex-direction: column-reverse;
  }

  .dashboard-info,
  .crm-info,
  .ecommerce-mar-info,
  .planes-mar-card,
  .dashboard-card,
  .dashboard-card-cotizar,
  .crm-chat-card,
  .card.crm-sales-card,
  .ecommerce-mar-beneficio-card,
  .ecommerce-mar-demo1,
  .ecommerce-mar-transaction-card,
  .ecommerce-mar-added-cart-card,
  .ecommerce-mar-receipt {
    width: 90% !important;
    max-width: 90% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
  }

  .footer-mar-technology-container,
  .footer-mar-technology-logo-info,
  .footer-mar-technology-links,
  .footer-mar-technology-contacto {
    width: 90% !important;
    max-width: 90% !important;
    margin: 0 auto !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .beneficio-card{
    width: 100%;
    min-height: 0;
  }
  .ecommerce-mar-beneficio-card{
    min-height: 0;
  }
}


@media (max-width: 765px) {
  body{
    padding-top: 38px;
  }
}





/* Animaciones de aparición lateral */
.mar-anim-izq {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.7s, transform 0.7s;
}

.mar-anim-der {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.7s, transform 0.7s;
}

.mar-anim-visible {
  opacity: 1;
  transform: translateX(0);
}