/* ========================================================================
   GÓI VACCINE - PRICING CARD DESIGN  
   ======================================================================== */

/* Hero Section - Wave Effect */
.goivaccine-hero {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  padding: 80px 0 120px;
  position: relative;
  overflow: hidden;
}

.goivaccine-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: 50px;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.goivaccine-title {
  font-size: 3rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.highlight-text {
  background: linear-gradient(to right, #00b4d8, #0077b6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.goivaccine-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-stats-row {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.hero-stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item .stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.hero-stat-item .stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-image-wrapper {
  position: relative;
}

.hero-img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  animation: float 3s ease-in-out infinite;
}

.floating-icon-1 {
  top: 10%;
  right: 10%;
  color: #0077b6;
  animation-delay: 0s;
}

.floating-icon-2 {
  bottom: 20%;
  left: -10%;
  color: #00b4d8;
  animation-delay: 1s;
}

.floating-icon-3 {
  top: 50%;
  right: -5%;
  color: #f093fb;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.wave-decoration {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-decoration svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.wave-decoration svg path {
  fill: #ffffff;
}

/* Filter Pills */
.goivaccine-filter-pills {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.filter-search-box {
  position: relative;
  min-width: 300px;
}

.filter-search-box i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.filter-search-input {
  width: 100%;
  padding: 12px 15px 12px 45px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s;
}

.filter-search-input:focus {
  outline: none;
  border-color: #0077b6;
  box-shadow: 0 0 0 3px rgba(0, 119, 182, 0.1);
}

.filter-select {
  padding: 12px 20px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}

.filter-select:focus {
  outline: none;
  border-color: #0077b6;
}

.btn-filter-search {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-filter-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

.btn-filter-reset {
  background: white;
  color: #666;
  padding: 12px 30px;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}

.btn-filter-reset:hover {
  border-color: #0077b6;
  color: #0077b6;
}

/* Pricing Cards */
.pricing-card-goi {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-goi:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.25);
}

.pricing-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
}

.pricing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.pricing-card-goi:hover .pricing-card-image img {
  transform: scale(1.1);
}

.pricing-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #f6b93b 0%, #e55d87 100%);
  color: white;
  padding: 8px 15px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pricing-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-target-badge {
  display: inline-block;
  background: #e3f2fd;
  color: #1976d2;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  width: fit-content;
}

.pricing-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.pricing-card-desc {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.pricing-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #e0e0e0, transparent);
  margin: 1.5rem 0;
}

.pricing-price-section {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-label {
  font-size: 0.9rem;
  color: #999;
  margin-bottom: 0.5rem;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #999;
}

.pricing-save-badge {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-features {
  margin-bottom: 1.5rem;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #555;
  font-size: 0.95rem;
}

.pricing-feature-item i {
  color: #0077b6;
  font-size: 1.1rem;
}

.pricing-actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-pricing-detail {
  background: white;
  color: #0077b6;
  border: 2px solid #0077b6;
  padding: 12px 24px;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-pricing-detail:hover {
  background: #0077b6;
  color: white;
}

.btn-pricing-book {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-pricing-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Empty State */
.empty-state-goi {
  text-align: center;
  padding: 4rem 2rem;
  background: white;
  border-radius: 20px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.empty-icon {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
  color: white;
}

.empty-state-goi h3 {
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.empty-state-goi p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

.btn-empty-reset {
  background: linear-gradient(135deg, #0077b6 0%, #00b4d8 100%);
  color: white;
  padding: 12px 30px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s;
}

.btn-empty-reset:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .goivaccine-title {
    font-size: 2rem;
  }

  .hero-stats-row {
    gap: 1rem;
  }

  .hero-stat-item {
    padding: 0.75rem 1rem;
  }

  .filter-search-box {
    min-width: 100%;
  }

  .pricing-card-title {
    font-size: 1.25rem;
  }

  .price-amount {
    font-size: 2rem;
  }
}

