/* General Styles */
body {
  font-family: 'Roboto', sans-serif;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #0a0a0a;
}

h1, h2, h3, h4, h5 {
  font-family: 'Orbitron', sans-serif;
}

a {
  text-decoration: none;
  color: inherit;
}

.btn-custom {
  background: linear-gradient(45deg, #1abc9c, #16a085);
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
  border: none;
}

.btn-custom:hover {
  background: linear-gradient(45deg, #16a085, #1abc9c);
  color: #fff;
  transform: scale(1.05);
}

/* Navbar */
#mainNavbar {
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 9999;
}

#mainNavbar.hidden {
  transform: translateY(-100%); /* Mueve el navbar hacia arriba */
  opacity: 0; /* Oculta el navbar visualmente */
}

.navbar {
  background-color: rgba(0, 0, 0, 0.9);
  padding: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.4);
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar-brand {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: #1abc9c;
}

.navbar-nav .nav-link {
  color: #ddd;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #1abc9c;
  text-shadow: 0 0 5px #1abc9c;
}

/* General Styles for Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Swiper Gallery Images */
.swiper-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.swiper-slide:hover img {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}
/*https://www.youtube.com/watch?v=aKIv7Zvnm8M&ab_channel=HuaweiMobile*/
/* Hero Section */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(10, 10, 10, 0.7), rgba(10, 10, 10, 0.9)), url('../images/hero-smartwatch.webp') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero p {
  font-size: 1.3rem;
  margin-top: 15px;
  color: #e0e0e0;
}

/* Features Section */
#features {
  padding: 60px 0;
}

#features h2 {
  color: #1abc9c;
  margin-bottom: 40px;
}

.feature-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #1abc9c;
  margin-bottom: 15px;
}

.feature-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

#features p {
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
}

#features ul {
  padding-left: 1.5rem;
  color: #ccc;
}

#features ul li {
  margin-bottom: 10px;
  position: relative;
}

#features ul li:before {
  content: "\f058";
  font-family: 'Font Awesome 5 Free', serif;
  font-weight: 900;
  color: #1abc9c;
  margin-right: 10px;
}


/* Pricing Carousel */
#pricing-carousel {
  background: linear-gradient(to bottom, #0a0a0a, #111);
  padding: 60px 0;
}

#pricing-carousel h2 {
  color: #1abc9c;
  margin-bottom: 40px;
}

.pricing-swiper {
  width: 100%;
  padding: 40px 0;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-card {
  background: #1e1e1e;
  color: #f5f5f5;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  text-align: center;
  width: 280px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.pricing-card h5 {
  font-size: 1.5rem;
  color: #1abc9c;
  margin-bottom: 10px;
}

.pricing-card h3 {
  font-size: 2rem;
  margin: 20px 0;
  color: #fff;
}

.pricing-card p {
  color: #ccc;
  margin-bottom: 20px;
}

/* Blur effect for cards in the background */
.swiper-slide-prev .pricing-card,
.swiper-slide-next .pricing-card {
  transform: scale(0.8);
  filter: blur(3px);
  opacity: 0.6;
}

.swiper-slide-active .pricing-card {
  transform: scale(1);
  filter: blur(0);
  opacity: 1;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  color: #1abc9c;
  transition: color 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #fff;
}

/* Gallery Section */
#gallery {
  padding: 60px 0;
  background: #111;
}

#gallery h2 {
  color: #1abc9c;
  margin-bottom: 40px;
}

.swiper-slide img {
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.6);
}

.swiper-slide:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgb(33, 37, 41) !important;
}

/* Reviews Section */
#reviews {
  padding: 60px 0;
  background: linear-gradient(to bottom, #0a0a0a, #111);
}

#reviews h2 {
  margin-bottom: 40px;
  text-align: center;
  color: #1abc9c;
}

.testimonial {
  text-align: center;
  background: #222;
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.8);
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 3px solid #1abc9c;
}

.testimonial blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #e0e0e0;
  margin-bottom: 10px;
}

/* Subscription Section */
#contact {
  padding: 60px 0;
  background: #111;
}

#contact h2 {
  color: #1abc9c;
  margin-bottom: 30px;
}

#contact input, #contact button {
  max-width: 500px;
  margin: 0 auto;
}

#contact input {
  border: 1px solid #1abc9c;
  color: #000000;
}

#contact input:focus {
  border-color: #1abc9c;
  box-shadow: 0 0 5px #1abc9c;
}

#contact button {
  display: block;
  margin-top: 15px;
}

.modal-content {
  background-color: #1e1e1e;
  color: #f5f5f5;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
}

.modal-header {
  border-bottom: 1px solid #1abc9c;
}

.modal-title {
  color: #1abc9c;
}

.modal-body {
  font-size: 1.2rem;
  text-align: center;
}


/* Footer */
footer {
  background-color: #000;
  padding: 20px 0;
  color: #1abc9c;
  text-align: center;
  font-size: 0.9rem;
}

.social-icons a {
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #1abc9c;
}

