  <style>
    /* Reset e configurações básicas */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Roboto', sans-serif;
      background-color: var(--background-color);
      color: var(--dark);
      line-height: 1.6;
    }
    
    /* Paleta de Cores da Nativa Natural */
    :root {
      --primary-color: #4CAF50;    /* Verde Natural */
      --secondary-color: #FFB74D;  /* Laranja Orgânico */
      --background-color: #F5F5F5;   /* Fundo Leve */
      --light-gray: #E0E0E0;         /* Detalhes Sutis */
      --dark: #333333;              /* Texto Principal */
    }
    
    /* Seção Hero com SVG inline como background */
    .hero {
      height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 0 20px;
      /* SVG inline convertido para data URL */
      background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='1920'%20height='1080'%20viewBox='0%200%201920%201080'%3E%3Cdefs%3E%3ClinearGradient%20id='bgGradient'%20x1='0'%20y1='0'%20x2='0'%20y2='1080'%20gradientUnits='userSpaceOnUse'%3E%3Cstop%20offset='0'%20stop-color='%23a8e063'/%3E%3Cstop%20offset='1'%20stop-color='%2356ab2f'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect%20width='1920'%20height='1080'%20fill='url(%23bgGradient)'/%3E%3Cpath%20d='M0%20800%20C300%20700%20600%20900%20900%20800%20C1200%20700%201500%201100%201920%20800%20V1080%20H0%20V800%20Z'%20fill='%234CAF50'%20opacity='0.8'/%3E%3C/svg%3E");
      background-size: cover;
      background-position: center;
    }
	

	
	.hero-logo {
      display: block;
      margin: 40px auto;       /* Aumentei o margin para dar mais destaque */
      max-width: 600px;        /* Permite um logo bem grande no desktop */
      width: 100%;
      filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.7));
    }
    
    /* Para telas menores, ajuste a largura para que ocupe boa parte da tela */
    @media (max-width: 768px) {
      .hero-logo {
        max-width: 80%;      /* Use 80% da largura disponível no celular */
      }
    }
	
	
    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }
    .hero p {
      font-size: 1.5rem;
      margin-bottom: 30px;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    }
    .btn {
      display: inline-block;
      background-color: var(--primary-color);
      color: #fff;
      padding: 15px 30px;
      text-decoration: none;
      border-radius: 4px;
      font-weight: bold;
      transition: background 0.3s;
    }
    .btn:hover {
      background-color: var(--secondary-color);
    }
    
    /* Seções Gerais */
    section {
      padding: 60px 20px;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
    }
    
    /* Seção Jornada (Storytelling) */
    .journey {
      background-color: var(--light-gray);
      text-align: center;
    }
    .journey h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }
    .journey p {
      max-width: 800px;
      margin: 0 auto 40px;
    }
    .timeline {
      display: flex;
      flex-direction: column;
      gap: 30px;
      align-items: center;
    }
    .timeline-item {
      width: 80%;
      background: #fff;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .timeline-item h3 {
      margin-bottom: 10px;
      color: var(--secondary-color);
    }
    
    /* Seção Benefícios */
    .benefits {
      text-align: center;
    }
    .benefits h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }
    .benefit-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }
    .benefit-item {
      background: #fff;
      flex: 1 1 250px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .benefit-item h3 {
      margin-bottom: 10px;
      color: var(--secondary-color);
    }
    
    /* Seção Depoimentos */
    .testimonials {
      background-color: var(--light-gray);
      text-align: center;
    }
    .testimonials h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }
    .testimonial-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 40px;
    }
    .testimonial-item {
      background: #fff;
      flex: 1 1 300px;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .testimonial-item p {
      font-style: italic;
      margin-bottom: 15px;
    }
    .testimonial-item span {
      font-weight: bold;
    }
	
	/* Estilização para a seção de vídeo */
    .video-depoimentos {
      background-color: var(--light-gray);
      padding: 60px 20px;
      text-align: center;
    }
    .video-depoimentos h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: var(--primary-color);
    }
    .video-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    
    /* Breakpoints para telas menores */
    @media (max-width: 768px) {
      .video-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    
    @media (max-width: 480px) {
      .video-grid {
        grid-template-columns: 1fr;
      }
    }
    .video-grid video {
      width: 100%;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }

    
    /* Seção Conteúdo do Programa - O que você recebe */
    .conteudo {
      background-color: #fff;
      text-align: center;
      padding: 60px 20px;
    }
    .conteudo h2 {
      font-size: 2.5rem;
      margin-bottom: 40px;
      color: var(--primary-color);
    }
    .conteudo-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      justify-content: center;
    }
    .conteudo-item {
      background-color: var(--background-color);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
      flex: 1 1 250px;
      max-width: 300px;
    }
    .conteudo-item img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 15px;
    }
    .conteudo-item h3 {
      font-size: 1.2rem;
      color: var(--dark);
    }
    
    /* Seção Call-to-Action Final */
    .cta {
      text-align: center;
      padding: 60px 20px;
      background: var(--primary-color);
      color: #fff;
    }
    .cta h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
    }
    
    /* Seção FAQ */
    #faq h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
      text-align: center;
    }
    #faq p {
      max-width: 800px;
      margin: 0 auto 20px;
      text-align: center;
    }
    
    /* Footer */
    footer {
      background: var(--dark);
      color: #fff;
      text-align: center;
      padding: 20px;
    }
    
    /* Responsividade */
    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2.5rem;
      }
      .hero p {
        font-size: 1.2rem;
      }
      .timeline-item,
      .benefit-item,
      .testimonial-item,
      .conteudo-item {
        width: 100%;
      }
    }
	
    /* Estilo para o overlay do modal */
    .modal-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      display: none; /* Inicia oculto */
      align-items: center;
      justify-content: center;
      z-index: 1000;
    }
    
    /* Estilo para o conteúdo do modal */
    .modal-content {
      background: #fff;
      padding: 30px;
      max-width: 500px;
      width: 90%;
      border-radius: 8px;
      position: relative;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }
    
    /* Botão para fechar o modal */
    .close-modal {
      position: absolute;
      top: 10px;
      right: 15px;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--dark);
    }
	
    /* Seção Resumo da Oferta */
    .resumo {
      background-color: #fff;
      padding: 60px 20px;
      text-align: center;
      border-top: 2px solid var(--light-gray);
      border-bottom: 2px solid var(--light-gray);
    }
    
    .resumo h2 {
      font-size: 2.5rem;
      margin-bottom: 20px;
      color: var(--primary-color);
    }
    
    .resumo p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
      color: var(--dark);
    }
    
    .oferta-itens {
      list-style: none;
      padding: 0;
      margin: 0 auto 30px;
      max-width: 500px;
      text-align: left;
    }
    
    .oferta-itens li {
      font-size: 1.1rem;
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
      color: var(--dark);
    }
    
    .oferta-itens li::before {
      content: "\2713"; /* Código Unicode para o símbolo de check */
      position: absolute;
      left: 0;
      color: var(--primary-color);
    }
    
    .preco-oferta {
      margin-bottom: 30px;
    }
    
    .preco-ancorado {
      text-decoration: line-through;
      margin-right: 15px;
      font-size: 1.3rem;
      color: var(--dark);
    }
    
    .preco-final {
      font-size: 2rem;
      font-weight: bold;
      color: var(--primary-color);
    }

    .nutricional {
      background-color: var(--light-gray);
      text-align: center;
      padding: 60px 20px;
      border-top: 2px solid var(--background-color);
      border-bottom: 2px solid var(--background-color);
    }
    
    .nutricional .container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .nutricional-img {
      max-width: 300px;
      width: 100%;
      height: auto;
      border-radius: 8px;
      margin-bottom: 20px;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .nutricional h2 {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    
    .nutricional p {
      font-size: 1.2rem;
      color: var(--dark);
      line-height: 1.6;
    }

	
  </style>