/*--------------------------------------------------------------
# Hotel Pro - Sistema para Hotéis e Pousadas
# Arquivo CSS específico para hotelaria.html
# Contém estilos para: hero, features, pricing, CTA, dashboard
--------------------------------------------------------------*/

/* Hero Product Section */
#hero-product {
  width: 100%;
  height: 100vh;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

#hero-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h60v60H0z"/><rect x="20" y="20" width="20" height="20" fill="rgba(255,255,255,0.05)"/></g></svg>');
  animation: float 8s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  line-height: 1.1;
}

.gradient-text {
  background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 1.5rem;
  color: white;
  margin-right: 12px;
}

.feature-item span {
  color: white;
  font-weight: 500;
  font-size: 14px;
}

.hero-cta {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-hero-primary {
  background: white;
  color: #2563eb;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #7c3aed;
}

.btn-hero-secondary {
  color: white;
  text-decoration: none;
  font-weight: 600;
  padding: 15px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
  border-bottom-color: white;
  color: white;
}

.hero-image-container {
  position: relative;
}

.hero-placeholder {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
  color: white;
}

.hero-placeholder p {
  margin-top: 20px;
  font-weight: 600;
  font-size: 1.2rem;
}

/* Features Section */
.features {
  padding: 100px 0;
  background: #f8fafc;
}

.features-badge {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.features .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.features .section-title p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 60px;
}

.feature-item {
  margin-bottom: 40px;
}

.feature-box {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(37, 99, 235, 0.2);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.feature-icon i {
  font-size: 2rem;
  color: white;
}

.feature-box:hover .feature-icon {
  transform: scale(1.1);
}

.feature-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 15px;
}

.feature-box p {
  color: #64748b;
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: #f8fafc;
}

.pricing-badge-modern {
  display: inline-block;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
}

.pricing .section-title h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Plano Compra Única */
.pricing-card-buy {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #e2e8f0;
}

.pricing-card-buy:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: #2563eb;
}

.buy-header {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
  padding: 30px;
  text-align: center;
}

.buy-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.buy-subtitle {
  opacity: 0.9;
  font-size: 14px;
  margin: 0;
}

.buy-content {
  padding: 40px 30px 30px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.buy-price-text {
  color: #64748b;
  margin-bottom: 15px;
  font-size: 14px;
}

.buy-price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}

.buy-price-info {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

/* Plano Mensalidade */
.pricing-card-subscription {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.3s ease;
  border: 2px solid #2563eb;
}

.pricing-card-subscription:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.2);
}

.popular-badge-subscription {
  position: absolute;
  top: -12px;
  right: 30px;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.subscription-header {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.subscription-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.subscription-subtitle {
  opacity: 0.9;
  font-size: 14px;
  margin: 0;
}

.subscription-content {
  padding: 40px 30px 30px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.subscription-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
}

.subscription-price-amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
}

.subscription-price-period {
  font-size: 1.2rem;
  font-weight: 500;
  color: #64748b;
}

/* Features Lists */
.pricing-features-hotel {
  padding: 30px;
}

.feature-item-hotel {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  font-weight: 500;
  font-size: 14px;
}

.feature-item-hotel:last-child {
  border-bottom: none;
}

.feature-check-hotel {
  color: #2563eb;
  margin-right: 12px;
  font-size: 1.2rem;
}

/* Pricing Buttons */
.pricing-button-hotel {
  padding: 30px;
  background: #f8fafc;
}

.btn-pricing-hotel {
  display: block;
  width: 100%;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-buy {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  color: white;
}

.btn-buy:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(100, 116, 139, 0.4);
  color: white;
}

.btn-subscription {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
}

.btn-subscription:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
  color: white;
}

/* Pricing Footer */
.pricing-footer {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.pricing-footer p {
  color: #1e293b;
  margin: 0;
  font-size: 16px;
}

.pricing-header {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 40px 30px 30px;
  text-align: center;
  position: relative;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-icon i {
  font-size: 1.5rem;
  color: white;
}

.pricing-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.pricing-price {
  padding: 40px 30px 30px;
  text-align: center;
  border-bottom: 1px solid #f1f5f9;
}

.price-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 10px;
}

.currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2563eb;
}

.amount {
  font-size: 3rem;
  font-weight: 800;
  color: #1e293b;
}

.period {
  font-size: 1.2rem;
  font-weight: 500;
  color: #64748b;
}

.price-description {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}

.pricing-features {
  padding: 30px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f5f9;
  color: #1e293b;
  font-weight: 500;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li i {
  color: #2563eb;
  margin-right: 12px;
  font-size: 1.2rem;
}

.pricing-cta {
  padding: 30px;
  background: #f8fafc;
}

.btn-pricing-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.btn-pricing-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.4);
  color: white;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  padding: 80px 0;
  color: white;
}

.cta h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta p {
  font-size: 1.1rem;
  margin-bottom: 0;
  opacity: 0.9;
}

.cta-btn {
  background: white;
  color: #2563eb;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  color: #7c3aed;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-features {
    grid-template-columns: 1fr;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn-hero-primary {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .features .section-title h2 {
    font-size: 2rem;
  }
  
  .pricing .section-title h2 {
    font-size: 2rem;
  }
  
  .cta h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .cta p {
    text-align: center;
    margin-bottom: 30px;
  }
}

/* Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}