/* ============================================
   FORMAÇÃO DIETOTERAPIA CHINESA - CLONE
   Estilos fiéis ao original
   ============================================ */

/* Reset e Base */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #424242;
  background-color: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Tipografia */
h1,
h2,
h3,
h4 {
  color: #000000;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
  font-weight: 800;
}

h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  line-height: 1.7;
}

strong {
  font-weight: 600;
}

/* Cores de destaque */
.text-purple,
.text-highlight,
.highlight {
  color: #6c408d;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(5px);
}

.btn-primary {
  background-color: #16ca16;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}

.btn-primary:hover {
  background-color: #14b514;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 202, 22, 0.3);
}

.btn-header {
  background-color: #484848;
  color: #fafafa;
  padding: 12px 24px;
  font-size: 14px;
}

.btn-header:hover {
  background-color: #333333;
}

.btn-cta {
  background-color: #16ca16;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  padding: 18px 36px;
  font-weight: 700;
}

.btn-cta:hover {
  background-color: #14b514;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(22, 202, 22, 0.4);
}

.btn-large {
  padding: 20px 40px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background-color: #000000;
  background-image: url("../img/hero-bg.webp");
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 150px 0;
  text-align: left;
}

.hero .container {
  max-width: 1140px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 550px;
}

.hero-logo {
  height: 80px;
  width: auto;
  margin-bottom: 30px;
}

.hero h1 {
  font-family: "Sora", sans-serif;
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.4em;
  letter-spacing: 0.1px;
  margin-bottom: 25px;
  color: #ffffff;
}

.hero h1 .highlight {
  display: block;
  color: #ffffff;
}

.hero-text {
  font-family: "Sora", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.7em;
  letter-spacing: 0.1px;
  margin-bottom: 30px;
  max-width: 550px;
}

.hero-text strong {
  color: #ffffff;
}

.hero .btn-primary {
  background-color: #16ca16;
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 25px 60px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.hero .btn-primary:hover {
  background-color: #14b514;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(22, 202, 22, 0.4);
}

.hero-stats {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  opacity: 0.9;
}

.hero-stats strong {
  color: #ffffff;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-subtitle {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
}

.about-content h2 {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  color: #ffffff;
}

.about-text {
  text-align: center;
}

.about-text h3 {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  margin: 30px 0 20px;
  font-weight: 700;
  color: #ffffff;
}

.about-text p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #d9d9d9;
  line-height: 1.8;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.benefit-card {
  background-color: #1a1a1a;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #333333;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: #16ca16;
}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card p {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: #d9d9d9;
  line-height: 1.6;
  margin: 0;
}

.benefits-cta {
  text-align: center;
}

/* ============================================
   MODULES SECTION
   ============================================ */
.modules-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.modules-header {
  text-align: center;
  margin-bottom: 60px;
}

.modules-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.divider-line {
  width: 60px;
  height: 1px;
  background-color: #444444;
}

.divider-text {
  font-family: "Sora", sans-serif;
  color: #d9d9d9;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.modules-subtitle {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.modules-subtitle .text-highlight {
  color: #000000;
  background-color: #ffffff;
}

.modules-desc {
  max-width: 700px;
  margin: 0 auto;
}

.modules-desc p {
  font-family: "Sora", sans-serif;
  color: #d9d9d9;
  font-size: 16px;
  margin-bottom: 10px;
}

.modules-desc strong {
  color: #ffffff;
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.module-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333333;
}

.module-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-color: #16ca16;
}

.module-image {
  position: relative;
  overflow: hidden;
}

.module-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: contain;
  background-color: #1a1a1a;
  transition: transform 0.5s ease;
}

.module-card:hover .module-image img {
  transform: scale(1.02);
}

.module-info {
  padding: 25px;
}

.module-info h3 {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #ffffff;
}

.module-info p {
  font-family: "Sora", sans-serif;
  font-size: 14px;
  color: #d9d9d9;
  line-height: 1.6;
  margin: 0;
}

/* Bônus Section */
.bonus-section {
  margin-bottom: 50px;
}

.bonus-title {
  font-family: "Sora", sans-serif;
  text-align: center;
  color: #ffffff;
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 700;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.bonus-card {
  background-color: #1a1a1a;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #333333;
}

.bonus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: #16ca16;
}

.bonus-image {
  position: relative;
  overflow: hidden;
}

.bonus-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 2/3;
  object-fit: contain;
  background-color: #1a1a1a;
  transition: transform 0.5s ease;
}

.bonus-card:hover .bonus-image img {
  transform: scale(1.02);
}

.bonus-card h4 {
  font-family: "Sora", sans-serif;
  padding: 20px 20px 10px;
  font-size: 18px;
  color: #ffffff;
}

.bonus-card p {
  font-family: "Sora", sans-serif;
  padding: 0 20px 20px;
  font-size: 14px;
  color: #d9d9d9;
  line-height: 1.6;
  margin: 0;
}

.modules-cta {
  text-align: center;
}

/* ============================================
   TARGET SECTION
   ============================================ */
.target-section {
  background-color: #f2f4f5;
  padding: 80px 0;
  text-align: center;
}

.target-section h2 {
  font-family: "Sora", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.target-desc {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 40px;
}

.target-carousel {
  max-width: 1000px;
  margin: 0 auto;
}

.carousel-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.carousel-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 50px;
}

.testimonials-header h2 {
  color: #ffffff;
  font-family: "Sora", sans-serif;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.testimonials-divider {
  width: 80px;
  height: 3px;
  background-color: #ffffff;
  margin: 0 auto;
}

.testimonials-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.testimonial-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  flex: 0 1 450px;
  max-width: 450px;
}

.testimonial-video {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.testimonial-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.testimonial-video:hover .testimonial-thumb {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button svg {
  margin-left: 5px;
  width: 30px;
  height: 30px;
}

.testimonial-video:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: rgba(0, 0, 0, 0.8);
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing-section {
  background-color: #0a0a0a;
  padding: 80px 0;
}

.pricing-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-image img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 16px;
}

.pricing-card {
  text-align: center;
}

.pricing-logo {
  height: 80px;
  margin: 0 auto 30px;
}

.pricing-features-box {
  background-color: #f5f5f5;
  padding: 40px 30px;
  border-radius: 16px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 30px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-family: "Sora", sans-serif;
  font-size: 15px;
  color: #333333;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features .check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-color: #16ca16;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-features .check-icon svg {
  stroke: #ffffff;
}

.pricing-value {
  margin-bottom: 25px;
}

.pricing-price {
  font-family: "Sora", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ff0000;
}

.pricing-features-box .btn-cta {
  background-color: #16ca16;
  color: #ffffff;
  font-family: "Sora", sans-serif;
}

.pricing-features-box .btn-cta:hover {
  background-color: #14b514;
  box-shadow: 0 10px 30px rgba(22, 202, 22, 0.4);
}

/* ============================================
   GUARANTEE SECTION
   ============================================ */
.guarantee-section {
  background-color: #f2f4f5;
  padding: 60px 0;
}

.guarantee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.guarantee-badge {
  width: 220px;
  flex-shrink: 0;
}

.guarantee-text h3 {
  font-family: "Sora", sans-serif;
  color: #000000;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.guarantee-text p {
  font-family: "Sora", sans-serif;
  color: #333333;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   AUTHOR SECTION
   ============================================ */
.author-section {
  background-color: #0a0a0a;
  background-image: url("../img/author-bg.webp");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.author-content {
  max-width: 600px;
  margin: 0;
  margin-right: auto;
  margin-left: 0;
  text-align: left;
}

.author-name-label {
  font-family: "Sora", sans-serif;
  display: block;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.author-title {
  font-family: "Sora", sans-serif;
  display: block;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.author-bio p {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #d9d9d9;
  line-height: 1.8;
  margin-bottom: 15px;
}

.author-bio strong {
  color: #ffffff;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background-color: #333333;
  padding: 30px 0;
}

.footer-content {
  text-align: center;
}

.footer-content p {
  font-family: "Sora", sans-serif;
  color: #999999;
  font-size: 14px;
  margin: 0;
}

/* ============================================
   RESPONSIVO
   ============================================ */
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }

  .benefits-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .modules-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pricing-image {
    order: -1;
    text-align: center;
  }

  .guarantee-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding-top: 33vh;
    padding-bottom: 80px;
    padding-left: 20px;
    padding-right: 20px;
    background-image: url("../img/hero-bg-mobile.webp");
    text-align: center;
  }

  .hero-content {
    align-items: center;
    max-width: 100%;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

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

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

  .carousel-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .author-section {
    background-image: url("../img/author-bg-mobile.webp");
    background-position: top center;
    background-size: contain;
    background-color: #0a0a0a;
    padding-top: 100vw;
  }

  .author-content {
    text-align: center;
    max-width: 100%;
    padding: 0 20px;
  }

  .author-name-label {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .btn-large {
    padding: 16px 24px;
    font-size: 14px;
  }

  .btn-cta {
    padding: 16px 24px;
    font-size: 14px;
  }

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

  .pricing-features-box {
    padding: 30px 20px;
  }
}

/* ============================================
   ANIMAÇÕES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.benefit-card,
.module-card,
.bonus-card,
.testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
}

/* Seleção de texto */
::selection {
  background-color: #6c408d;
  color: #ffffff;
}

/* ============================================
   MODAL POP-UP
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

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

.modal-content {
  background: linear-gradient(145deg, #1a1a1a 0%, #0a0a0a 100%);
  border-radius: 20px;
  padding: 50px 40px;
  max-width: 500px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s ease;
  border: 1px solid #333333;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(22, 202, 22, 0.1);
}

.modal-overlay.active .modal-content {
  transform: scale(1) translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: #666666;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.modal-close:hover {
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-icon {
  margin-bottom: 25px;
}

.modal-icon svg {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.modal-title {
  font-family: "Sora", sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.modal-text {
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: #d9d9d9;
  line-height: 1.7;
  margin-bottom: 15px;
}

.modal-text strong {
  color: #16ca16;
}

.modal-text:last-of-type {
  margin-bottom: 30px;
}

.btn-modal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  font-size: 16px;
  animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(22, 202, 22, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(22, 202, 22, 0.6);
  }
}

.btn-modal:hover {
  animation: none;
  box-shadow: 0 15px 40px rgba(22, 202, 22, 0.5);
}

/* Modal Responsivo */
@media (max-width: 768px) {
  .modal-content {
    padding: 40px 25px;
    margin: 20px;
  }

  .modal-title {
    font-size: 24px;
  }

  .modal-text {
    font-size: 15px;
  }

  .btn-modal {
    padding: 16px 30px;
    font-size: 14px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 35px 20px;
  }

  .modal-title {
    font-size: 22px;
  }

  .modal-icon svg {
    width: 50px;
    height: 50px;
  }
}
