:root {
  --primary-color: #2ecc71;
  --primary-dark: #27ae60;
  --primary-light: #55efc4;
  --secondary-color: #34495e;
  --light-color: #ecf0f1;
  --dark-color: #2c3e50;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--secondary-color);
  overflow-x: hidden;
}

#particles-js {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 0;
}

.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar .logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
}
.navbar .logo-container img {
  height: 60px;
  width: auto;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-dark) !important;
  font-size: 1.8rem;
}

.nav-link {
  color: var(--secondary-color) !important;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
}

.hero-section .btn-primary {
  position: absolute;
}

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

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 50px;
}

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

.hero-section {
  padding: 50px 0 100px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content h1 {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  z-index: 3;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--secondary-color);
  z-index: 3;
}

.devices-img {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 400px;
}

.devices-img img {
  position: absolute;
  max-width: 100%;
  height: auto;
  z-index: 3;
}

.section-title {
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: "";
  position: absolute;
  width: 50%;
  height: 4px;
  background-color: var(--primary-color);
  bottom: -10px;
  left: 0;
  border-radius: 2px;
}

.about-section,
.projects-section,
.plans-section,
.contact-section {
  padding: 80px 0;
}

.about-section {
  background-color: white;
}

.projects-section {
  background-color: #f8f9fa;
}

.plans-section {
  background-color: white;
}

.contact-section {
  background-color: #f8f9fa;
}

.card {
  border: 2px solid #4CC15B;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.164);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.plan-card .card-header {
  background-color: var(--primary-color);
  color: white;
  border-radius: 10px 10px 0 0 !important;
  padding: 20px;
  text-align: center;
}

.plan-card .card-body {
  padding: 30px;
}

.plan-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 20px 0;
}

.plan-card .plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.plan-card .plan-features li {
  padding: 8px 0;
  position: relative;
  padding-left: 30px;
}

.plan-card .plan-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

.project-carousel {
  padding: 0 50px;
  overflow: hidden;
  /* Para asegurar que no haya scroll horizontal */
}

.project-carousel .carousel-item img {
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  max-height: 300px;
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.contact-form .form-control {
  padding: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}

.contact-form textarea.form-control {
  height: 150px;
}

.social-icons {
  margin-top: 30px;
}

.social-icons a {
  display: inline-block;
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white !important;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  margin-right: 15px;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

footer {
  background-color: var(--dark-color);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  background-color: var(--primary-color);
  color: white;
  border-radius: 15px 15px 0 0 !important;
}

@media (max-width: 768px) {
  .hero-content {
    text-align: center;
    margin-bottom: 50px;
  }
  .devices-img {
    height: 300px;
  }
  .section-title:after {
    left: 25%;
  }
}/*# sourceMappingURL=index.css.map */