<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #4154f1;
  --primary-color-rgb: 65, 84, 241;
  --secondary-color: #012970;
  --secondary-color-rgb: 1, 41, 112;
  --primary-light: #f6f9ff;
  --success-color: #2eca6a;
  --success-light: #e0f8e9;
  --warning-color: #ff771d;
  --warning-light: #ffecdf;
  --info-color: #4099ff;
  --info-light: #cff4fc;
  --danger-color: #dc3545;
  --danger-light: #f8d7da;
  
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  background: #f6f9ff;
  color: #444444;
  overflow-x: hidden;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

a:hover {
  color: #717ff5;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--secondary-color);
}

.section-padding {
  padding: 100px 0;
}

@media (max-width: 992px) {
  .section-padding {
    padding: 70px 0;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-gradient {
  background: linear-gradient(135deg, #4154f1 0%, #2c3687 100%);
}

.bg-primary-soft {
  background-color: rgba(var(--primary-color-rgb), 0.1);
  color: var(--primary-color);
}

.bg-success-soft {
  background-color: var(--success-light);
  color: var(--success-color);
}

.bg-warning-soft {
  background-color: var(--warning-light);
  color: var(--warning-color);
}

.bg-info-soft {
  background-color: var(--info-light);
  color: var(--info-color);
}

.bg-danger-soft {
  background-color: var(--danger-light);
  color: var(--danger-color);
}

.text-primary {
  color: var(--primary-color) !important;
}

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

.btn-primary:hover {
  background-color: #364af1;
  border-color: #364af1;
}

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

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

.section-title {
  margin-bottom: 15px;
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
}

.section-divider {
  width: 80px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 0 auto 20px;
}

.section-subtitle {
  font-size: 18px;
  color: #777;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar {
  padding: 15px 0;
  transition: all 0.3s;
}

.navbar-scrolled {
  padding: 10px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
  max-height: 40px;
}

.navbar .nav-item {
  padding: 0 10px;
}

.navbar .nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--secondary-color);
  padding: 10px 0;
  position: relative;
}

.navbar .nav-link:before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 0;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.navbar .nav-link:hover:before,
.navbar .nav-link.active:before {
  width: 100%;
}

.navbar .btn {
  font-weight: 500;
}

@media (max-width: 991px) {
  .navbar .navbar-collapse {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-top: 10px;
  }
  
  .navbar .nav-link:before {
    display: none;
  }
  
  .navbar .nav-item {
    padding: 5px 0;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero-section {
  position: relative;
  padding: 180px 0 100px;
  overflow: hidden;
  background-color: #f8f9fa;
}

.hero-section h1 {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 42px;
  margin-bottom: 20px;
}

.hero-section .btn {
  padding: 12px 30px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .hero-section {
    padding: 140px 0 60px;
  }
  
  .hero-section h1 {
    font-size: 36px;
  }
  
  .hero-section .col-lg-6:last-child {
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Feature Cards
--------------------------------------------------------------*/
.feature-card {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(var(--secondary-color-rgb), 0.1);
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(var(--secondary-color-rgb), 0.15);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  border-radius: 50%;
  font-size: 30px;
}

.feature-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.feature-card p {
  color: #777;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Benefit Cards
--------------------------------------------------------------*/
.benefit-card {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(var(--secondary-color-rgb), 0.1);
  height: 100%;
  transition: all 0.3s ease-in-out;
  border-top: 3px solid var(--primary-color);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(var(--secondary-color-rgb), 0.15);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  border-radius: 50%;
  font-size: 28px;
  color: var(--primary-color);
  background-color: rgba(var(--primary-color-rgb), 0.1);
}

.benefit-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
}

.benefit-card p {
  color: #777;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature List
--------------------------------------------------------------*/
.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-list li {
  position: relative;
  padding: 10px 0 10px 35px;
  font-size: 16px;
}

.feature-list li i {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 18px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonial-card {
  position: relative;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(var(--secondary-color-rgb), 0.1);
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(var(--secondary-color-rgb), 0.15);
}

.testimonial-content {
  margin-bottom: 20px;
  font-style: italic;
  color: #555;
}

.testimonial-content p {
  position: relative;
  padding-left: 20px;
  line-height: 1.7;
}

.testimonial-content p:before {
  content: "\201C";
  font-family: Arial, sans-serif;
  position: absolute;
  top: -15px;
  left: -5px;
  font-size: 60px;
  color: rgba(var(--primary-color-rgb), 0.2);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 25px rgba(var(--secondary-color-rgb), 0.1);
  height: 100%;
}

.contact-item {
  display: flex;
  margin-bottom: 25px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-right: 15px;
  border-radius: 50%;
  font-size: 22px;
}

.contact-item h4 {
  margin-bottom: 5px;
}

.contact-item p {
  margin-bottom: 0;
  color: #777;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.social-link:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.footer .social-link {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer .social-link:hover {
  background-color: #fff;
  color: var(--primary-color);
}

/*--------------------------------------------------------------
# Cloud Section
--------------------------------------------------------------*/
.cloud-image {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

.cloud-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding-left: 0;
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #fff;
  padding-left: 5px;
}

.footer-contact p {
  margin-bottom: 15px;
}

.copyright {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 9999;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.4s;
  box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.3);
}

.back-to-top i {
  font-size: 24px;
  line-height: 0;
}

.back-to-top:hover {
  background: #6776f4;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Responsive Adjustments
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .section-title {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    font-size: 26px;
  }
  
  .section-subtitle {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-section {
    padding: 120px 0 50px;
  }
  
  .hero-section h1 {
    font-size: 32px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .feature-card, 
  .benefit-card,
  .testimonial-card {
    padding: 20px;
  }
  
  .feature-icon, 
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

/* Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

[data-aos="fade-up"] {
  transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
}

[data-aos="fade-right"] {
  transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
}

[data-aos="fade-left"] {
  transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
}

/* Form Styling */
.form-label {
  font-weight: 500;
  margin-bottom: 8px;
}

.form-control {
  border-radius: 8px;
  padding: 10px 15px;
  border: 1px solid #ced4da;
  transition: all 0.3s;
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.25);
  border-color: var(--primary-color);
}

.form-select {
  border-radius: 8px;
  padding: 10px 15px;
  height: auto;
  border: 1px solid #ced4da;
}

.form-select:focus {
  box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.25);
  border-color: var(--primary-color);
}

textarea.form-control {
  min-height: 120px;
}

/* Ajuste para el navbar en dispositivos mÃ³viles */
@media (max-width: 991px) {
  /* Hacer que el contenedor del navbar tenga display flex */
  .navbar &gt; .container {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  
  /* Ajustar el botÃ³n del menÃº */
  .navbar-toggler {
    order: 1; /* Colocar a la izquierda */
    padding: 4px 8px;
    margin-right: 10px;
    font-size: 1rem;
    border: 1px solid rgba(0, 41, 112, 0.2);
    background-color: rgba(255, 255, 255, 0.9);
  }
  
  /* Ajustar el logo */
  .navbar-brand {
    order: 2;
    margin: 0;
    flex-grow: 1;
    text-align: left;
  }
  
  /* Asegurar que el menÃº se expande correctamente */
  .navbar-collapse {
    order: 3;
    width: 100%;
    margin-top: 10px;
  }
  
  /* Ajustar el tamaÃ±o del texto del logo */
  .navbar-brand span {
    font-size: 1.4rem !important;
  }
}

/* Asegurar que el SEM-ERP siempre sea visible */
.navbar-brand img + span {
  display: inline-block !important;
  vertical-align: middle;
}</pre></body></html>