/*
 * Landing Page Styles
 * Home page styles using Admin Global color palette
 */

body.landing-page-body main {
  padding-top: 0 !important;
}

.landing-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #FAF9F6 0%, #FFFFFF 100%);
}

/* Hero Section */
.hero-section {
  padding: 4rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #E94E1B 0%, #F26B3D 100%);
  color: #FAF9F6;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-cta,
.hero-secondary {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Button styles for landing page */
.landing-page .btn-primary,
.landing-page .mdc-button--raised.btn-primary {
  background-color: #E94E1B;
  color: #FAF9F6;
  border: 2px solid #E94E1B;
}

.landing-page .btn-primary:hover,
.landing-page .mdc-button--raised.btn-primary:hover {
  background-color: #C73D0F;
  border-color: #C73D0F;
}

.landing-page .btn-secondary,
.landing-page .mdc-button--outlined.btn-secondary {
  background-color: transparent;
  color: #FAF9F6;
  border: 2px solid #FAF9F6;
}

.landing-page .btn-secondary:hover,
.landing-page .mdc-button--outlined.btn-secondary:hover {
  background-color: rgba(250, 249, 246, 0.1);
  border-color: #FAF9F6;
}

/* Features Section */
.features-section {
  padding: 4rem 1rem;
  background: #FAF9F6;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1rem;
  color: #16161B;
}

.section-subtitle {
  text-align: center;
  color: #464A4B;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-card {
  background: #FFFFFF;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0px 1px 2px 0px rgba(22, 22, 27, 0.1), 0px 1px 3px 1px rgba(22, 22, 27, 0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #C6C8CA;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 1px 3px 0px rgba(22, 22, 27, 0.12), 0px 4px 8px 3px rgba(22, 22, 27, 0.1);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background: #FAE2CD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon .material-symbols-outlined {
  font-size: 32px;
  color: #E94E1B;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #16161B;
}

.feature-description {
  color: #464A4B;
  line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 1rem;
  background: #ECEEEF;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0px 1px 2px 0px rgba(22, 22, 27, 0.1), 0px 2px 6px 2px rgba(22, 22, 27, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #C6C8CA;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0px 2px 3px 0px rgba(22, 22, 27, 0.12), 0px 6px 10px 4px rgba(22, 22, 27, 0.1);
}

.pricing-card-featured {
  border: 2px solid #E94E1B;
  position: relative;
}

.pricing-card-featured::before {
  content: 'Mais Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #E94E1B;
  color: #FAF9F6;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #16161B;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #E94E1B;
}

.price-period {
  font-size: 1rem;
  color: #464A4B;
}

.pricing-description {
  color: #464A4B;
  font-size: 0.9rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  color: #16161B;
}

.features-list .material-symbols-outlined {
  color: #3D8E6F;
  font-size: 20px;
}

.pricing-action {
  margin-top: auto;
}

.pricing-button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
  padding: 4rem 1rem;
  background: linear-gradient(135deg, #E94E1B 0%, #F26B3D 100%);
  text-align: center;
  color: #FAF9F6;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .features-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta,
  .hero-secondary {
    width: 100%;
  }
}
