/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--dark-blue);
  box-shadow: 0 4px 14px rgba(51, 208, 253, 0.3);
}

.btn-primary:hover {
  background: var(--primary-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 208, 253, 0.4);
}

.btn-whatsapp {
  background: var(--whatsapp-green);
  color: var(--white);
  border-radius: 5px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--glass-border);
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(11, 17, 32, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.nav-logo img {
  height: 40px;
  object-fit: contain;
}



.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--white);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-blue);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  flex-shrink: 0;
}

/* Cards */
.product-card {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-radius: 20px;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(51, 208, 253, 0.4);
  box-shadow: 0 10px 30px rgba(51, 208, 253, 0.1);
}

.card-top {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.product-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.product-logo i {
  font-size: 1.5rem;
  color: var(--primary-blue);
}

.product-header-content {
  flex: 1;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--white);
  line-height: 1.2;
}

.duration-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.badge {
  background: rgba(51, 208, 253, 0.1);
  color: var(--primary-blue);
  border: 1px solid rgba(51, 208, 253, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-desc {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  color: var(--text-light);
  line-height: 1.5;
}

.plan-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, opacity 0.4s ease-in-out, margin 0.4s ease-in-out;
  opacity: 0;
  margin-bottom: 0;
}

.plan-details.open {
  max-height: 300px;
  opacity: 1;
  margin-bottom: 1.5rem;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #ffffff;
}

.product-feature-item i {
  color: var(--primary-blue);
  font-size: 0.8rem;
  min-width: 14px;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: auto;
  align-items: center;
}

.btn-view-plans {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  flex: 1;
}

.btn-view-plans:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-blue);
}

.product-actions .btn-whatsapp {
  flex: 1;
  padding: 0.6rem 0.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* Trust Bar */
.trust-bar {
  margin: -50px auto 4rem;
  max-width: 1000px;
  padding: 2rem;
  position: relative;
  z-index: 10;
}

.trust-bar-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
  text-align: center;
}

/* Review Card */
.review-card {
  padding: 2rem;
  text-align: left;
}

.stars {
  color: #fbbf24;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.review-text {
  font-size: 1.05rem;
  color: var(--white);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--dark-blue);
}

.reviewer-info h4 {
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.reviewer-info span {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.2);
  border-top: 1px solid var(--glass-border);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 1rem;
}

.footer-socials {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  font-size: 1.2rem;
}

.footer-desc {
  max-width: 300px;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: var(--white);
}

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

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Search System */
.search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.search-input {
  width: 100%;
  padding: 1.2rem 1.5rem 1.2rem 3.5rem;
  font-size: 1.1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  color: var(--white);
  font-family: inherit;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.search-input::placeholder {
  color: var(--text-light);
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 20px rgba(51, 208, 253, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.search-icon {
  position: absolute;
  left: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 1.2rem;
  pointer-events: none;
  transition: color 0.3s ease;
}

.search-input:focus~.search-icon {
  color: var(--primary-blue);
}

.no-results {
  display: none;
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
  font-size: 1.2rem;
  width: 100%;
  grid-column: 1 / -1;
}

/* Responsive */
@media (max-width: 1024px) {
  .trust-bar {
    margin: 2rem auto;
    width: 92%;
    max-width: 340px;
    padding: 1rem;
  }

  .trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .trust-bar h3 {
    font-size: 1.2rem;
    margin-bottom: 0.25rem !important;
  }

  .trust-bar p {
    font-size: 0.8rem;
  }

  .search-wrapper {
    margin-bottom: 2rem;
  }

  .search-input {
    font-size: 1rem;
    padding: 1rem 1rem 1rem 3rem;
  }

  .search-icon {
    left: 1rem;
  }

  .navbar {
    background: var(--dark-blue);
    padding: 0.75rem 0;
  }

  .nav-logo img {
    height: auto;
    max-height: 36px;
    max-width: 65vw;
    object-fit: contain;
  }

    .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: rgba(11, 17, 32, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 80px 2rem 2rem;
    border-left: 1px solid var(--glass-border);
    gap: 1.5rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
    display: flex;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links .btn {
    width: 100%;
  }

  .mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
  }

  .mobile-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mobile-menu-btn {
    display: block;
    position: relative;
    z-index: 1002;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-contact-item {
    justify-content: center;
  }

  .footer-desc {
    margin: 0 auto;
  }

  .product-card {
    padding: 1.25rem;
  }

  .product-icon {
    margin: 0 auto 1.25rem;
  }

  .product-title {
    text-align: center;
  }

  .product-desc {
    text-align: center;
  }

  .product-price-label {
    text-align: center;
  }
}