:root {
  --dark-gray: #373b3e;
  --light-gray: #bec8d1;
  --teal: #86cecb;
  --dark-teal: #137a7f;
  --pink: #e12885;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-gray);
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.brand-text {
  color: var(--dark-teal);
  font-weight: 700;
  font-size: 1.4rem;
  margin-left: 5px;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.nav-link {
  color: var(--dark-gray);
  font-weight: 500;
  margin: 0 5px;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--dark-teal);
  background-color: rgba(134, 206, 203, 0.1);
}

.btn-tienda {
  color: var(--dark-teal);
  border-color: var(--dark-teal);
  font-weight: 600;
  border-radius: 20px;
  padding: 8px 20px;
  transition: all 0.3s ease;
}

.btn-tienda:hover {
  background-color: var(--dark-teal);
  color: white;
}

.btn-login {
  background-color: var(--pink);
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 20px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-login:hover {
  background-color: #c91a73;
  transform: translateY(-2px);
}

/* Media queries para navbar */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }

  .nav-link {
    padding: 10px 15px;
    margin: 5px 0;
  }

  .btn-tienda,
  .btn-login {
    display: block;
    text-align: center;
    margin: 5px 0;
  }
}

@media (max-width: 576px) {
  .brand-text {
    font-size: 1.2rem;
  }
}

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

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-gray);
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 15px;
}

.btn-primary {
  background-color: var(--dark-teal);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #0e6166;
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--dark-teal);
  color: var(--dark-teal);
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: var(--dark-teal);
  color: white;
  transform: translateY(-2px);
}

.hero-image {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Features Section */
.features {
  padding: 80px 0;
  background-color: white;
}

.features h2 {
  color: var(--dark-gray);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.features h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

.feature-card {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.feature-card i {
  font-size: 3rem;
  color: var(--dark-teal);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.pricing h2 {
  color: var(--dark-gray);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.pricing h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

.pricing-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
}

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

.pricing-card.featured {
  border: 2px solid var(--pink);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.popular {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--pink);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--dark-gray);
}

.price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-teal);
  margin-bottom: 20px;
}

.price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.pricing-card ul li {
  margin-bottom: 10px;
  color: #6c757d;
}

.pricing-card ul li i {
  color: var(--dark-teal);
  margin-right: 5px;
}

/* About Section */
.about {
  padding: 80px 0;
  background-color: white;
}

.about h2 {
  color: var(--dark-gray);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
}

.about h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

.about p {
  color: #6c757d;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 10px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Support Section */
.support {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.support h2 {
  color: var(--dark-gray);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.support h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

.support-card {
  background-color: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

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

.support-card i {
  font-size: 2.5rem;
  color: var(--dark-teal);
  margin-bottom: 20px;
}

.support-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--dark-gray);
}

.support-card p {
  color: #6c757d;
  margin-bottom: 20px;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background-color: white;
}

.testimonials h2 {
  color: var(--dark-gray);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.testimonials h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--teal);
}

.testimonial-card {
  background-color: #f8f9fa;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.stars {
  color: #ffc107;
  margin-bottom: 15px;
}

.testimonial-card p {
  color: #6c757d;
  font-style: italic;
  margin-bottom: 20px;
}

.client {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--dark-gray);
}

.client p {
  font-size: 0.8rem;
  margin-bottom: 0;
  font-style: normal;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background-color: var(--dark-teal);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

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

.cta .btn-primary:hover {
  background-color: #c91a73;
}

.cta .btn-outline {
  border-color: white;
  color: white;
}

.cta .btn-outline:hover {
  background-color: white;
  color: var(--dark-teal);
}

/* Footer */
footer {
  background-color: var(--dark-gray);
  color: white;
  padding: 80px 0 20px;
}

footer h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

footer h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

footer p {
  color: #bec8d1;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

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

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

.footer-links a {
  color: #bec8d1;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--teal);
  padding-left: 5px;
}

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

.footer-contact li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #bec8d1;
}

.footer-contact li i {
  color: var(--teal);
}

.newsletter {
  display: flex;
  margin-top: 15px;
}

.newsletter input {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 30px 0 0 30px;
  outline: none;
}

.newsletter button {
  background-color: var(--pink);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter button:hover {
  background-color: #c91a73;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .hero {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 0;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about {
    text-align: center;
  }

  .about h2:after {
    left: 50%;
    transform: translateX(-50%);
  }

  .about-image {
    margin-bottom: 30px;
  }

  .cta h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .footer-bottom {
    margin-top: 30px;
  }
}
