@font-face {
    font-family: 'BlueOcean';
    src: url('Fonts/blue_ocean_3/BLUE OCEAN.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
  }
  @font-face {
    font-family: 'Inter';
    src: url('Fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
  }
  
  
  body {
    margin: 0;
    font-family: 'Inter';
    font-size: 20px;
    background-color: #9479BF;
    background-image: url('Assets/textura.png');
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
  }
  
  header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #9479BF; /* ou a cor do seu fundo */
    z-index: 9999;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* opcional: sombra para destacar */
  }
  
  main {
    padding-top: 100px; /* ajuste esse valor com a altura real do header */
  }
  
   
  .cabecalho {
    max-width: 1269px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .logo img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .menu nav {
    margin-top: 10px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .menu ul {
    display: flex;
    list-style: none;
    gap: 24px; /* espaço entre os itens */
    padding: 0;
    margin: 0;
  }
  
  .menu ul li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 600;
    padding: 8px 0; /* padroniza altura */
    display: flex;
    align-items: center;
  }
  
  /* Botão especial */
  .menu ul li a.btn-comprar {
    padding: 8px 16px; /* apenas padding horizontal extra */
    display: flex;
    align-items: center; /* centraliza o texto */
  }
  
  

  .container {
    max-width: 1269px;     
    width: 100%;           
    margin: 0 auto;
    padding: 0 16px;       
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* Sessão geral */
  #inicio {
    overflow: hidden;       /* Corta qualquer excesso da imagem */
    position: relative;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: flex-start;
    color: #fff;
    box-sizing: border-box;
    gap: 32px;
  }
  
  .sessao-1{
    flex-direction: column;
    align-items: left;
    width: 100%;
  }

  .texto-sessao-1 {
    width: 400px;
    z-index: 5;
  }
  

  /* Textos principais */
  .titulo-1 {
    font-family: 'BlueOcean';
    font-size: 40px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 16px;
  }
  
  .titulo-2 {
    font-family: 'Inter';
    font-size: 23px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 16px;
  }
  
  .titulo-3 {
    font-family: 'Inter';
    font-style: italic;
    font-weight: 200;
    font-size: 16px;
    color: #fff;
    max-width: 70%;
  }
  
  .retangulo-sessao-1 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 210px;
    background-color: #FF6262;
    border-radius: 25px;
    padding: 20px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
    margin-top: 50px;
    z-index: 2;
   }

   .texto-sessao-1,
    .retangulo-sessao-1 {
    position: relative;
    z-index: 1;
    }

  .botao-sessao-1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    
  }
  
  .botao-sessao-1 span:first-child {
    font-family: 'Inter';
    font-size: 20px;
    color: #F5E843;
    font-weight: 700;
    margin: 10px;
  }

  .btn-comprar {
    background-color: #60B9AA;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-family: 'Inter';
    font-size: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    animation: pulsar 1.5s ease-in-out infinite;
    transition: box-shadow 0.3s ease;
    display: inline-block;
  }

  .btn-comprar:hover {
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.4);
  }
  
  @keyframes pulsar {
    0%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.07);
    }
  }
  
  .botao-sessao-1 a.btn-comprar {
    background-color: #60B9AA;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Inter';
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    margin: 15px;
    width: 200px;
    
  }
  
  .botao-sessao-1 span:last-child {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 300;
    color: #FFFFFF;
  }
  
  .img-sessao-1 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;                
    margin: 0 auto;
    width: 100%;
    max-width: 1180px;   
    z-index: 4;
    pointer-events: none;
  }
  
  
  .img-sessao-1 img {
    width: 100%;
    object-fit: contain;
  }
  
  
  /* Redes sociais */
  .redes-sessao-1 {
    position: absolute;
    bottom: 20px;
    right: 60px;
    display: flex;
    gap: 24px;
  }
  
  
  .redes-sociais {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 20px;
    font-family: 'Inter';
    font-weight: 900;
    color: #fff;
  }
  

  .redes-sociais a {
    text-decoration: none;
    color: inherit; 
    align-items: center;
  }

  .redes-sociais img {
    height: 30px;
  }
  
  .desktop-only {
    display: block;
  }
  .mobile-only {
    display: none;
  }

  /* Historia sobre o livro*/
  .retangulo-sessao-2 {
    margin-top: 100px;
    background-color: #FF6262;
    padding: 60px 20px;
    border-radius: 50px;
    max-width: 1000px;
  }
  
  .sessao-2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    margin: 20px;
  }
  
  .lado-esquerdo, .lado-direito {
    flex: 1 1 45%;
    text-align: center;
  }

  .lado-esquerdo .titulo-1{
    font-size: 25px;
    font-weight: 400;
  }
  
  
  .titulo-4 p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 900;
    color: white;
    margin-bottom: 15px;
  }
  
  .titulo-5 p {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 400;
    color: white;
    line-height: 1.6;
  }

  .lado-direito{
    display: flex;
    align-items: center;
  }

  .lado-direito img {
    max-width: 100%;
    border-radius: 10px;
  }
  
  .redes-sessao-2 {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }

  

  /*Sessão do Video*/
  #video {
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
  }
  
  .video-wrapper {
    position: relative;
    width: 100%;
    max-width: 800px;
    aspect-ratio: 16 / 9; 
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
  }
  
  .video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border: none;
    display: block;
  }
  
  .video-full {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    display: block;
  }

   /*Sobre o Livro*/

  .sessao-4 {
    margin-top: 100px;
    background-color: #72CEC0;
    padding: 20px 20px;
    border-radius: 50px;
    width: 100%;
    max-height: 600px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    overflow: visible; 
  }
  
  .sobre-sessao-4 {
    width: 75%;
    right: -30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    margin-left: auto; 
    position: absolute;
    z-index: 2;
  }

  .sobre-sessao-4 .desktop-only img{
    width: 550px;
  }
  
  
  .titulo-6 {
    font-family: 'BlueOcean';
    font-size: 30px;
    font-weight: 400;
    color: #5046AF;
  }


  .img-sessao-4 {
    position: relative;
    top: -195px;
    left: -250px;
    width: 90%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    display: flex;
    justify-content: flex-start; 
    align-items: center;
  }
  
  .img-sessao-4 img {
    width: 100%;
    object-fit: contain;
  }
  
  .redes-sessao-4 {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
    right: -20px;
    position: relative; 
  }

  .redes-4{
    flex-direction: column;
  }
  
  .redes-sessao-4 .redes-sociais {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 20px;
    font-family: 'Inter';
    font-weight: 900;
    color: #303030;
  }

  .redes-sessao-4 .botao-sessao-5{
    position: relative;
    top: -50px;
    right: -30px;
  }
  .redes-sessao-4 .botao-sessao-5 a.btn-comprar{
    background-color: #FF6262;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Inter';
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    margin: 15px;
    width: 200px;
  }

  .redes-sessao-4 .botao-sessao-5 span:last-child {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 300;
    color: #303030;
  }  
  
  .redes-sessao-4 .botao-sessao-5 span:first-child {
    font-family: 'Inter';
    font-size: 20px;
    color: #303030;
    font-weight: 700;
    margin: 10px;
  }


  /*SESSÃO 5- COMPRAR*/
  .sessao-5 {
    color: #5046AF;
    margin-top: 100px;
    background-color: #E6E254;
    width: 829px;
    height: 475px;
    padding: 50px;
    position: relative; 
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    box-sizing: border-box;
    margin-right: auto; 
    border-radius:50px;
    overflow: visible; 
  }

  .texto-sessao-5{
    text-align: center;
    max-width: 450px;
    z-index: 10;
  }

  .sessao-5  h2{
    font-family: 'Inter';
    font-size: 40px;
    font-weight: 900;
  }

  .sessao-5  h4{
    font-family: 'Inter';
    font-size: 30px;
    font-weight: 300;
  }
  
  .img-livro {
    position: absolute;
    right: -500px; 
    bottom: -250px;  
    width: calc(100% * 1.3); 
    z-index: 2;
  }
  
  .img-livro img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }
  

  .botao-sessao-5 a.btn-comprar {
    background-color: #60B9AA;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-family: 'Inter';
    text-decoration: none;
    font-size: 26px;
    font-weight: 900;
    margin: 15px;
    width: 200px;
  }
  
  .botao-sessao-5 span:last-child {
    font-family: 'Inter';
    font-size: 16px;
    font-weight: 300;
    color: #5046AF;
  }
  
  .botao-sessao-5 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  
  .botao-sessao-5 span:first-child {
    font-family: 'Inter';
    font-size: 20px;
    color: #5046AF;
    font-weight: 700;
    margin: 10px;
  }

  /*COMENTARIOS*/
  .sessao-6 {
    margin: 150px 0;
    background-color: #5046AF;
    text-align: center;
    padding: 100px;
    border-radius: 50px;
  }
  
  .titulo-comentarios {
    font-family: 'BlueOcean';
    font-size: 32px;
    font-weight: 200;
    color: #E6E254;
    margin-bottom: 100px;
  }
  
  .video-item {
    scroll-snap-align: start;
    flex: 0 0 300px; 
    border-radius: 20px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  
  .video-item video {
    width: 100%;
    height: auto;
    display: block;
  }

  .carrossel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .carrossel-comentarios {
    overflow: hidden; 
    scroll-snap-type: x mandatory;
    display: flex;
    max-width: 100%;
  }
  
  .carrossel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.3s ease-in-out;
  }
  
  .seta {
    background-color: transparent;
    color: #000;
    font-size: 24px;
    border: none;
    width: 50px;
    height: 50px;
    cursor: pointer;
    margin: 0 20px;
    z-index: 10;
  }

  .seta img {
    width: 50px;
    height: auto;
  }
  
  
  /*Footer*/

  .footer {
    margin-top: 100px;
    width: 100%;
    background-color: #FF6262;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    padding: 60px 20px;
    overflow: visible;
    gap: 16px;
    border-radius: 50px;
  }
  
  .img-footer-1,
  .img-footer-2 {
    flex: 1;
    position: relative;
  }
  
  .img-footer-1 img,
  .img-footer-2 img {
    object-fit: contain;
    position: absolute;
  }
  
  .img-footer-1 img {
    left: -40px; 
    height: 800px; 
    top: -400px;
  }
  
  .img-footer-2 img {
    left: -40px; 
    height: 550px;
    top: -300px; 
  }
  
  .textos-footer {
    flex: 2;
    text-align: center;
    color: white;
    z-index: 2;
  }
  
  .textos-footer span:first-child{
    color: #fff;
  }

  .textos-footer h3 strong {
    font-family: 'Inter';
    font-weight: 900;
    font-size: 30px;
  }

  .textos-footer h3 {
    font-family: 'Inter';
    font-weight: 300;
    font-size: 30px;
  }

  
@media (max-width: 767px) {
    nav,
    .menu{
      display: none;
    }

    header {
      position: relative;
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: 30px;
      margin-bottom: none;
      background-color: transparent;
      box-shadow:none;
    }

    .cabecalho {
      justify-content: center;
    }

    .logo {
      margin-bottom: 10px;
    }

    body {
      background-image: url('assets/textura-mobile.png');
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
    }

    main {
      padding-top: 0;
    }
    .titulo-1{
        font-size: 25px;
    }

    .titulo-2{
        font-size: 18px;
    }

    .titulo-3 {
      display: none;
    }
    
    .redes-sessao-1 {
      display: none;
    }

    .desktop-only {
      display: none;
    }
    .mobile-only {
      display: block;
    }

    .img-sessao-1-mobile {
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 16px auto;
      width: 100%;
    }

    .img-sessao-1-mobile img {
      max-width: 80%;
      height: auto;
    }

    .texto-sessao-1 {
      width: 100%;
      text-align: center;
    }

    .titulo-1,
    .titulo-2 {
      text-align: center;
    }

    .retangulo-sessao-1 {
      position: static;
      margin-top: 16px;
      background-color: transparent;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
    }

    .redes-sessao-4 {
      flex-direction: column;
      right: 0;
    }

    .titulo-6 {
      font-size: 20px;
    }
  

    .img-mobile img {
      max-width: 100%;
    }

    .img-sessao-4-mobile {
      width: 100%;
      text-align: center;
    }
    
    .img-sessao-4-mobile img {
      max-width: 100%;
      height: auto;
    }
    
    .sessao-4 {
      width: 90%;
      height: 900px;
      z-index: 8;
      margin-top: -10px;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      text-align: center;
      position: relative;
      padding-bottom: 200px;
    }

    .sobre-sessao-4 {
      position: absolute;
      display: flex;
      right: auto;
      flex-direction: column;
      align-items: center;
      text-align: center;
      width: 90%;
      height: 900px;
    }

    /*SESSAO 5 - COMPRAR*/
    .sessao-5 {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      padding-top: 200px;
      width: 100%;
      height: 800px;
      position: relative;
      z-index: 1;
    }
  
    .img-livro {
      position: absolute;
      margin-top: 200px;
      top: -300px;
      left: 50%;
      transform: translateX(-50%);
      width:  90% ;
      z-index: 2;
    }
  
    .img-livro img {
      width: 100%;
      height: auto;
    }
  
    .texto-sessao-5 {
      text-align: center;
      z-index: 30;
    }

    .sessao-5  h2{
      font-family: 'BlueOcean';
      font-size: 30px;
      font-weight: 900;
    }
  
    .sessao-5  h4{
      font-family: 'Inter';
      font-size: 20px;
      font-weight: 400;
    }


    .botao-sessao-5{
      position: relative;
    }

    .sessao-6 {
      width: 100%;
      padding: 50px 0;
      box-sizing: border-box;
      overflow-x: hidden;
      background-color: transparent;
    }

    .carrossel-wrapper {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow-x: hidden; 
      width: 100%;
    }
    
    .carrossel-comentarios {
      overflow: hidden;
      width: 100%;
      overflow-x: auto; 
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch; 
    }
    
    .carrossel-track {
      display: flex;
      gap: 10px;
      padding: 10px 10px;
      transition: transform 0.3s ease-in-out;
    }
    
    .video-item {
      flex: 0 0 90vw;
      max-width: 90vw;
      box-sizing: border-box;
      scroll-snap-align: start;
    }
    
    .seta {
        display: none;
    }
    
    .footer {
      width: 90%;
      margin-top: 50px;
      position: relative;
      flex-direction: column;
      align-items: center;
      padding-bottom: 350px; 
    }
  
    .img-footer-1 {
      position: absolute;
      bottom: -30px; 
      left: 50%;
      transform: translateX(-35%);
      width: 100%;
      z-index: 2;
    }
  
    .img-footer-1 img {
      width: 100%;
      height: auto;
    }
  
    .textos-footer {
      text-align: center;
      z-index: 3;
    }

  }

