:root {
  --primary-color: #6b2c91;
  --secondary-color: #8e44ad;
  --accent-color: #a569bd;
  --dark-purple: #4a1a5e;
  --light-bg: #f8f5fb;
  --text-dark: #2d2d2d;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(107, 44, 145, 0.95) 0%,
      rgba(74, 26, 94, 0.95) 100%
    ),
    url("https://images.unsplash.com/photo-1499209974431-9dddcece7f88?w=1600")
      center/cover;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease;
}

.hero-program-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  font-weight: 500;
  animation: fadeInUp 1.3s ease;
}

.hero-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 2.5rem;
  animation: fadeInUp 1.4s ease;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
}

.info-item i {
  font-size: 1.3rem;
  color: var(--accent-color);
}

.btn-cta {
  background: var(--secondary-color);
  color: white;
  padding: 18px 50px;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(142, 68, 173, 0.4);
  animation: fadeInUp 1.5s ease;
}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(142, 68, 173, 0.6);
  background: #7d3c98;
  color: white;
}

.btn-full {
  width: 100%;
  display: block;
  margin-top: 20px;
  text-align: center;
}

/* Floating Elements */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: white;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  bottom: 15%;
  right: 10%;
  animation-delay: 2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Section Styles */
.section {
  padding: 100px 0;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  color: var(--dark-purple);
}

.section-subtitle {
  font-size: 2rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #666;
}

/* Identification Section */
.identification-section {
  background: var(--light-bg);
}

/* Ajuste para cards com imagem */
.feature-card-image {
  padding: 0;
  overflow: hidden;
  min-height: auto;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.feature-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(107, 44, 145, 0.2);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.feature-text {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  text-align: center;
}

/* Program Section */
.program-section {
  background: white;
}

.poetic-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--dark-purple);
}

.poetic-text p {
  margin-bottom: 1.5rem;
  font-weight: 500;
}

/* Steps Section */
.steps-section {
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--dark-purple) 100%
  );
  color: white;
}

.steps-section .section-title {
  color: white;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.step-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.step-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-card p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
}

/* Benefits Section */
.benefits-section {
  background: var(--light-bg);
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 25px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.benefit-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 20px 50px rgba(107, 44, 145, 0.2);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.benefit-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 10px;
}

.benefit-card p {
  color: #666;
  margin: 0;
}

/* Pricing Section */
.pricing-section {
  background: white;
}

.pricing-card {
  background: white;
  padding: 50px 40px;
  border-radius: 25px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  border: 3px solid var(--primary-color);
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.promotion-badge {
  display: inline-block;
  background: var(--accent-color);
  color: white;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.price-old {
  font-size: 1.2rem;
  color: #999;
  text-decoration: line-through;
  margin-bottom: 10px;
}

.price-current {
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.price-current .currency {
  font-size: 2rem;
  vertical-align: super;
}

.price-current .period {
  font-size: 1.5rem;
}

.pricing-details {
  margin: 40px 0;
}

.detail-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.detail-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-right: 15px;
  min-width: 25px;
}

.detail-item span {
  font-size: 1.1rem;
  color: #666;
}

.guarantee-box {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border: 2px solid var(--accent-color);
}

.guarantee-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.guarantee-header i {
  color: var(--primary-color);
  font-size: 2rem;
}

.guarantee-header h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin: 0;
}

.guarantee-box p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.guarantee-note {
  font-weight: 500;
  color: var(--primary-color);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    rgba(165, 105, 189, 0.2) 0%,
    rgba(142, 68, 173, 0.2) 100%
  );
  padding: 100px 0;
  text-align: center;
}

.cta-quote {
  max-width: 700px;
  margin: 40px auto;
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--dark-purple);
}

.cta-quote p {
  margin-bottom: 1.5rem;
}

.cta-quote .highlight {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Formulário */
.inscription-form {
  max-width: 600px;
  margin: 60px auto 0;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--dark-purple);
  margin-bottom: 30px;
  text-align: center;
}

.inscription-form .form-control {
  padding: 15px;
  font-size: 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.inscription-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(107, 44, 145, 0.25);
}

/* Footer */
.footer {
  background: var(--dark-purple);
  color: white;
  padding: 60px 0 30px;
}

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

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

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

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

.social-icons {
  font-size: 1.8rem;
  margin-top: 20px;
}

.social-icons a {
  color: white;
  margin: 0 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: var(--accent-color);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-program-title {
    font-size: 1.4rem;
  }

  .hero-info {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn-cta {
    padding: 15px 40px;
    font-size: 1rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .price-current {
    font-size: 3rem;
  }

  .poetic-text {
    font-size: 1.1rem;
  }

  .cta-quote {
    font-size: 1.1rem;
  }
}

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
