     @font-face {
    font-family: 'Celtic Garamond 2nd';
    src: url('fonts/celtic_garamond_the_2nd.ttf') format('truetype');
}
/* html {
    scroll-behavior: smooth;
}
    body {
      background-color: rgb(255, 255, 255);
      text-align: center;
      font-family: 'Open Sans', sans-serif;
      font-size: 18px;
      color: rgb(0, 0, 0);
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      margin: 0;
      overflow-x: hidden; 

    } */
    
    /* Ajuste específico para esta página */
body.timer-page nav {
  height: 50px; /* Define uma altura fixa */
  line-height: 50px; /* Mantém alinhamento dos itens */
  padding: 0; /* Remove qualquer padding extra */
  overflow: hidden; /* Evita crescimento inesperado */
}

body.timer-page .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 50px; /* Força altura da navbar */
  display: flex;
  align-items: center; /* Alinha os itens verticalmente */
}

body.timer-page #promo-timer {
  position: fixed;
  top: 50px; /* Coloca o timer abaixo da navbar */
  width: 100%;
  z-index: 999; /* Mantém sobre o conteúdo */
}

/* Ajustes responsivos */
@media (max-width: 768px) {
  body.timer-page nav {
      height: 45px;
      line-height: 45px;
  }
  body.timer-page #promo-timer {
      top: 45px;
  }
}

@media (max-width: 480px) {
  body.timer-page nav {
      height: 40px;
      line-height: 40px;
  }
  body.timer-page #promo-timer {
      top: 40px;
  }
}

body.timer-page .switch {
  display: none !important;
}
    h1 {
      color: rgb(0, 0, 0);
      font-family: 'Open Sans', sans-serif;
      font-size: 55px;
      font-weight: bold;

    }
    h2, h3 {
      color: rgb(0, 0, 0);
      font-family: 'Open Sans', sans-serif;
      font-size: 44px;
      font-weight: bold;

    }
  
    
    p.test-text {
      margin-top: 20px;
      text-align: justify;
      font-size: 18px;
    }
    .main-content {
      margin-top: 130px;
      flex: 2;
    }
   
    .price {
      font-size: 24px;
      color: black;
      font-weight: bold;
    }
    .original-price {
      font-size: 42px;
      text-decoration: line-through;
      color: grey;
      margin-right: 10px;
    }
    @keyframes zoomBlink {
      0% {
        transform: scale(1);
        opacity: 1;
      }
      50% {
        transform: scale(1.2);
        opacity: 0.5;
      }
      100% {
        transform: scale(1);
        opacity: 1;
      }
    }
    
    .discounted-price {
      font-size: 60px;
      color: green;
      font-weight: bold;
      display: inline-block;
      animation: zoomBlink 1s infinite ease-in-out;
    }
    
    .promo-lancamento {
      font-size: 35px;
      color: rgb(0, 81, 255);
      font-weight: bold;
    }
    .text-modal {
      font-size: 15px;
      color: rgb(0, 0, 0);
    }
    small {
      font-size: 10px;
    }
    
    .title-top {
    font-family: 'Celtic Garamond 2nd', serif;
    font-weight: bold;
    font-size: 2.5rem; /* Tamanho da fonte padrão */
}

@media only screen and (max-width: 600px) {
    .title-top {
        font-size: 1.5rem; /* Tamanho da fonte menor para telas pequenas */
    }
}

.gold-gradient {
    background: linear-gradient(to bottom, #fdd700, #FFC700, #ebf74d, #FFB700, #fdd700,#FF9700);
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 900;
    font-size: 40px;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    
}

  .gold-text-container {
    width: 100%; /* Faz com que a div ocupe toda a largura da página */
    padding: 40px; /* Ajuste o padding conforme necessário */
    border: 2px solid rgba(0, 0, 0, 0.5); /* Borda preta com 50% de opacidade */
    border-radius: 12px; /* Bordas arredondadas */
    background: linear-gradient(to bottom, #000000, #0f0f0f, #616161); /* Gradiente de preto para cinza */
    text-align: center; /* Centraliza o texto dentro da div */
    box-shadow: 0 0 0 rgba(0, 0, 0, 0); /* Remover qualquer sombra, se necessário */
    margin: 0 auto; /* Centraliza a div horizontalmente */
    display: flex; /* Usa flexbox para centralizar o conteúdo */
    position: relative; /* Define o contexto de posicionamento para os elementos filhos */
    flex-direction: column; /* Organiza o conteúdo verticalmente */
    justify-content: center; /* Centraliza o conteúdo verticalmente */
    align-items: center; /* Centraliza o conteúdo horizontalmente */
    box-sizing: border-box; /* Inclui padding e borda no cálculo da largura e altura */
    
  } 

.corner-image {
    position: absolute;
    width: 30px; /* Ajuste o tamanho conforme necessário */
    height: 30px; /* Ajuste o tamanho conforme necessário */
}

.top-left {
    top: 10px; /* Ajuste a posição conforme necessário */
    left: 10px; /* Ajuste a posição conforme necessário */
}

.top-right {
    top: 10px; /* Ajuste a posição conforme necessário */
    right: 10px; /* Ajuste a posição conforme necessário */
}

.bottom-left {
    bottom: 10px; /* Ajuste a posição conforme necessário */
    left: 10px; /* Ajuste a posição conforme necessário */
}

.bottom-right {
    bottom: 10px; /* Ajuste a posição conforme necessário */
    right: 10px; /* Ajuste a posição conforme necessário */
}
.subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    color: white;
}
          /* Dark Mode CSS */
          body.dark-mode {
      background-color: rgb(18, 18, 18);
      color: rgb(230, 230, 230);
    }
    .navbar.dark-mode {
      background-color: rgb(34, 34, 34);
    }
    h1.dark-mode, h2.dark-mode, h3.dark-mode, .text-modal.dark-mode {
      color: rgb(230, 230, 230);
    }
   
.button.btn.btn-success {
    padding: 15px 300px; /* Tamanho padrão do botão */
    font-size: 18px; /* Tamanho padrão da fonte */
    border-radius: 50px; /* Borda totalmente arredondada */
    display: inline-block;
    width: auto; /* Ajuste automático da largura */
}

/*Btn-Zoom*/
@keyframes pulse-zoom {
  0% {
      transform: scale(1);
      opacity: 1;
  }
  50% {
      transform: scale(1.1); /* Aumenta 10% o tamanho */
      opacity: 0.8; /* Reduz um pouco a opacidade */
  }
  100% {
      transform: scale(1);
      opacity: 1;
  }
}

.button.btn-zoom {
  display: inline-block;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  background-color: #28a745; /* Cor verde */
  color: white;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  animation: pulse-zoom 1s infinite; /* Animação contínua */
}

.button.btn-zoom:hover {
  background-color: #218838; /* Verde mais escuro ao passar o mouse */
  transform: scale(1.15); /* Leve zoom extra no hover */
}

@media (max-width: 768px) {
    .button.btn.btn-success {
        padding: 12px 24px; /* Reduz o tamanho do botão em dispositivos menores */
        font-size: 16px; /* Reduz o tamanho da fonte em dispositivos menores */
        width: 100%; /* Botão ocupa a largura total do contêiner */
        text-align: center; /* Centraliza o texto no botão */
    }
}

@media (max-width: 480px) {
    .button.btn.btn-success {
        padding: 10px 20px; /* Ajuste adicional para telas muito pequenas */
        font-size: 14px; /* Ajuste adicional do tamanho da fonte */
    }
}
   /* No modo escuro, mude a cor do texto dos títulos e .title-top para branco 
    body.dark-mode h1.title-top,
    body.dark-mode h2.title-top,
    body.dark-mode h3.title-top,
    body.dark-mode h4.title-top,
    body.dark-mode .title-top {
      color: rgb(255, 0, 0);
    }
    body.dark-mode h1.subtitle,
body.dark-mode h2.subtitle,
body.dark-mode h3.subtitle,
body.dark-mode h4.subtitle,
body.dark-mode .subtitle {
    color: rgb(255, 255, 255) !important;
}
    footer.dark-mode {
      background-color: rgb(34, 34, 34);
      color: rgb(230, 230, 230);
    }
    .dark-mode .btn-3d {
      background-color: darkgreen;
    } */
    /* Modal Dark Mode 
    .modal-content.dark-mode {
      background-color: rgb(34, 34, 34);
      color: rgb(230, 230, 230);
    }

    .modal-header.dark-mode {
      background-color: rgb(34, 34, 34);
      color: rgb(230, 230, 230);
    }

    .modal-body.dark-mode {
      background-color: rgb(34, 34, 34);
      color: rgb(230, 230, 230);
    }

    .modal-footer.dark-mode {
      background-color: rgb(34, 34, 34);
      color: rgb(230, 230, 230);
    } */
   /* Para o texto do modal */
    .modal-body,
    .modal-title {
      color: black; /* Cor do texto padrão */
    }

    /* No modo escuro, mude a cor do texto para branco 
    body.dark-mode .modal-body,
    body.dark-mode .text-modal,
    body.dark-mode .modal-title {
      color: white;
    } */
    /* Toggle Switch CSS 
    .switch {
      position: fixed;
      top: 20px;
      right: 20px;
      display: flex;
      align-items: center;
      z-index: 1001; 
    }  
    .switch input {
      display: none;
    }
    .slider {
      width: 50px;
      height: 24px;
      background-color: #aaa;
      border-radius: 34px;
      position: relative;
      cursor: pointer;
      transition: background-color 0.4s;
    }
    .slider::before {
      content: "";
      position: absolute;
      width: 18px;
      height: 18px;
      background-color: white;
      border-radius: 50%;
      top: 3px;
      left: 3px;
      transition: transform 0.4s;
    }
    input:checked + .slider {
      background-color: #66bb6a;
    }
    input:checked + .slider::before {
      transform: translateX(26px);
    } */
   
    
/* Estilos gerais da imagem EDUZZ*/
/* No modo claro */
#eduzz-logo {
  content: url('img/eduzz_logo.png'); /* Logo padrão para modo claro */
  width: 25%; /* Tamanho padrão da imagem */
  max-width: 100%; /* Garante que a imagem não ultrapasse o tamanho do contêiner */
  height: auto; /* Mantém a proporção da imagem */
}

/* Modo escuro 
body.dark-mode #eduzz-logo {
  content: url('img/eduzz_logo_white.png'); 
}

@media (max-width: 768px) {
  #eduzz-logo {
    width: 75%; 
  }
}

@media (max-width: 480px) {
  #eduzz-logo {
    width: 50%; 
  }
} */

     /* Estilos gerais da imagem */
    /* No modo claro */
    #payment-img {
      content: url('img/pagamento-vendas-eduzz.png');
    }
    #payment-img {
    width: 50%; /* Tamanho padrão da imagem */
    max-width: 100%; /* Garante que a imagem não ultrapasse o tamanho do contêiner */
    height: auto; /* Mantém a proporção da imagem */
}

@media (max-width: 768px) {
    #payment-img {
        width: 75%; /* Aumenta o tamanho da imagem em dispositivos menores */
    }
}

@media (max-width: 480px) {
    #payment-img {
        width: 75%; /* Aumenta ainda mais o tamanho da imagem em telas muito pequenas */
    }
}
    /* No modo escuro 
    body.dark-mode #payment-img {
      content: url('img/pagamento-vendas-eduzz-white.png');
    }
    .selo-garantia {
    width: 20%; 
    max-width: 100%; 
    height: auto; 
}

@media (max-width: 768px) {
    .selo-garantia {
        width: 40%; 
    }
} 

@media (max-width: 480px) {
    .selo-garantia {
        width: 40%; 
    }
}
.responsive-image {
    width: 100%;
    height: auto;
    max-width: 50%; 
}

@media (max-width: 767.98px) {
  .navbar .container {
    justify-content: space-between;
  }

  .navbar-toggler {
    margin-left: auto;
    display: block;
  }

  .gtranslate_wrapper {
    margin-right: 10px;
    display: inline-block;
  }
} */
  /* Carrossel Depoimentos */
  .testimonial-carousel {
    display: flex;
    justify-content: center;
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
    position: relative;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-card {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial {
    text-align: center;
    background: linear-gradient(to bottom,#ff6666, #ff0000, #770000); /* Degradê de cima para baixo */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.testimonial img {
    border-radius: 50%;
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.testimonial h5 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.testimonial .stars {
    color: #ffd700;
    margin-bottom: 10px;
}

.testimonial p {
    font-size: 14px;
    color: #ffffff;
}


    .carousel-controls {
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }

    .carousel-controls i {
        cursor: pointer;
        margin: 0 5px;
        font-size: 30px;
        color: #ff0000;
    }

    .carousel-controls i:hover {
        color: #7e0000;
    }

/* Ajuste adicional para o texto dos depoimentos no modo escuro */
body.dark-mode .testimonial p {
    color: rgb(230, 230, 230); /* Cor do texto dos depoimentos */
}

/* Certifique-se de que a cor de fundo do card esteja correta */
body.dark-mode .testimonial-card {
    background-color: rgb(18, 18, 18); /* Fundo cinza escuro para o card */
}

/* Para garantir que os estilos de modo escuro sejam aplicados corretamente */
body.dark-mode .testimonial-card .testimonial {
    background-color: rgb(18, 18, 18); /* Fundo cinza escuro para o conteúdo do card */
    color: rgb(255, 255, 255); /* Cor do texto em branco */
}
<!-- popup de compra -->
  
  .navbar {
      margin-bottom: 20px; 
  }

  .popup-message {
      position: fixed;
      top: 70px; 
      left: 20px;
      background-color: green;
      color: white;
      padding: 10px 20px;
      border-radius: 5px;
      font-family: Arial, sans-serif;
      font-size: 16px;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      z-index: 1000;
      display: flex;
      align-items: center;
  }

  .popup-message .icon {
      background-color: white;
      color: green;
      border-radius: 50%;
      padding: 5px;
      margin-right: 10px;
      font-size: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
  }
  .popup-message .surname {
            filter: blur(4px);
            margin-left: 5px;
  }
  
  .popup-wow {
        background-color: blue;
        color: white;
        font-weight: bold;
        border: 2px solid white;
    }

    .popup-wow .icon {
        background-color: white;
        color: blue;
    }
   /* Estilo específico para dispositivos móveis */
   @media (max-width: 768px) {
            .popup-message {
                padding: 8px 16px;
                font-size: 14px;
                top: 60px; 
                left: 10px; 
            }

            .popup-message .icon {
                font-size: 12px;
                padding: 3px;
                margin-right: 8px;
            }
            .popup-wow {
            padding: 8px 16px;
            font-size: 14px;
        }

        .popup-wow .icon {
            font-size: 16px;
            padding: 3px;
            margin-right: 8px;
        }
        }

    /*Popup PROMO Relâmpago*/
    .exit-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%; /* Ajusta a largura do popup em porcentagem para telas menores */
    max-width: 600px; /* Define um limite máximo para a largura */
    background-color: #fff;
    border: 2px solid #ccc;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    text-align: center;
    overflow: hidden;
    border-radius: 8px; /* Adiciona bordas arredondadas */
}

.popup-timer {
    background-color: red;
    color: yellow;
    padding: 10px;
    font-weight: bold;
    font-size: 16px; /* Ajusta o tamanho da fonte para dispositivos móveis */
}

.popup-image {
    width: 100%;
    height: auto;
}

.popup-action {
    background-color: green;
    padding: 10px;
}

.popup-action button {
    background-color: green;
    color: white;
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    border-radius: 4px; /* Adiciona bordas arredondadas ao botão */
}

.popup-action button:hover {
    background-color: #004d00;
}

.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #000;
    display: none;
    z-index: 1001; /* Garante que o botão de fechar esteja acima de outros elementos */
}

/* Ajustes para telas de até 600px */
@media screen and (max-width: 600px) {
    .popup-timer {
        font-size: 14px; /* Reduz o tamanho da fonte em telas menores */
    }

    .popup-action button {
        font-size: 14px; /* Reduz o tamanho da fonte no botão em telas menores */
    }
}

/* Ajustes específicos para telas de até 480px */
@media screen and (max-width: 480px) {
    .exit-popup {
        width: 90%; /* Ajusta a largura do popup para 90% da tela em dispositivos pequenos */
        max-width: none; /* Remove o limite máximo de largura */
        height: auto; /* Ajusta a altura automaticamente */
        padding: 0; /* Remove o padding extra */
    }

    .popup-timer {
        font-size: 12px; /* Reduz o tamanho da fonte para telas muito pequenas */
    }

    .popup-action button {
        font-size: 12px; /* Reduz o tamanho da fonte no botão para telas muito pequenas */
        padding: 10px; /* Ajusta o padding para telas muito pequenas */
    }

    .close-popup {
        font-size: 16px; /* Ajusta o tamanho da fonte do botão de fechar para telas muito pequenas */
        top: 5px; /* Ajusta a posição do botão de fechar para telas menores */
        right: 5px;
    }
}
