/* Estilos gerais */
html, body {
    margin: 0;
    padding: 60px 0px;
    font-family: Arial, sans-serif;
    background-color: #0D1117;
}

/* Faixa superior do mercado */
.top-bar {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: white;
    background: black;
    padding: 16px 0px;
    height: 20px;
    overflow: hidden;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Wrapper do ticker */
.marquee {
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
}


/* Estilização das ações */
.ticker-wrap {
    overflow: hidden;
    background: black;
    color: white;
    height: 30px;
    position: relative;
}

.ticker {
    display: flex;
    width: fit-content;
    animation: ticker 5s linear infinite;
}

.ticker-item {
    padding: 0 2rem;
    white-space: nowrap;
}

.positive {
    color: green;
}

.negative {
    color: red;
}

/* Animação contínua sem espaço */
@keyframes ticker {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
}

/* Menu */
.menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color:#0D1117;
    padding: 10px 20px;
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
}

.logo img {
    height: 70px;
    margin-top: -15px;
}

nav {
    width: 100%;
    position: relative;
    background-color: #0D1117;
    flex-direction: row;
    text-align: center;
    top:-15px;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
}

nav ul li {
    margin: 0 30px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 24px;
    font-weight: bold;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: red;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Promoção */
.promo-bar {
    background-color: #FF3B3F;
    color: white;
    text-align: center;
    padding: 10px 10px;
    font-weight: bold;
    position: fixed;
    top: 100px;
    width: 100%;
    z-index: 1001;
}

.promo-bar a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    font-size: 25px;
}

/* Estilos para a nova seção */
.hero-section {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #0D1117;
    padding: 60px 20px;
    color: white;
}

.hero-section h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
    /*text-shadow: 0 0 10px rgba(0, 255, 0, 0.7), 0 0 20px rgba(0, 255, 0, 0.5); /* Efeito de brilho */
}

.hero-section p {
    margin-bottom: 30px;
    font-size: 18px;
}

.hero-button {
    padding: 15px 30px;
    font-size: 18px;
    color: white;
    background-color: #28a745;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.hero-button:hover {
    background-color: #00FF00;
}

.call-to-action {
    color: white;
    padding: 20px 20px;
    margin: 0 auto;
    max-width: 1200px;
    margin-top: -30px;
}

.call-to-action h1 {
    font-weight: bold; 
    font-size: 60px;
    margin-bottom: 20px;
   text-align: center;
}

.call-to-action p {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 10px;
    text-align: center;
}

/* Estilos para a seção de comparação */
.comparison {
    text-align: center;
    padding: 60px 20px;
    background-color: #0D1117;
    color: white;
    margin-top: -50px;
}

.comparison h1 {
    font-size: 50px;
    margin-bottom: 20px;
    font-weight: bold;
}

.comparison p {
    font-size: 30px;
    margin-bottom: 30px;
}

/* Estilos da tabela */
table {
    border-collapse: separate;
    border-spacing: 10px;
    width: 100%;
    margin: 0 auto;
    margin-bottom: 20px;
    margin-top: 0px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    font-size: 18px;
    padding: 15px;
    text-align: center;
    background-color: #ddd;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

th {
    background-color: rgba(0, 0, 0, 0.1); 
    color: #fff;
}

td {
    background-color: rgba(0, 0, 0, 0.05); /* Fundo claro para as células */
}

td:hover {
    background-color: rgba(0, 0, 0, 0.1); /* Alterar fundo ao passar o mouse */
}


/* imagem e texto */
.how-it-works {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 120px; /* Aumenta o espaço entre a imagem e o texto */
    padding: 5px;
    background-color: #0D1117; /* Cor de fundo da seção */
    text-align: left;
    max-width: 1200px; /* Define um limite fixo para evitar expansão excessiva */
    width: 100%;
    margin: auto;
    margin-top: 50px;
}

.image img {
    width: 100%;
    max-width: 850px;
    height: auto;
    border-radius: 2px;
}

.text {
    color: white;
    width: 70%;
    max-width: 500px;
    text-align: justify;
}

.text h2 {
    font-size: 28px;
    margin-bottom: 0;
    text-align: center;
}

.text p {
    font-size: 17px;
    line-height: 1.3;
    text-align: justify;
}

/* Relógio e frase ajustados com a imagem e o texto */
.countdown-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #0D1117;
    color: white;
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    margin-top: -15px;
}

.countdown-container p {
    font-size: 60px;
    font-weight: bold;
    text-align: center;
    width: 80%; 
    margin-bottom: 20px;
}

#countdown {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    font-size: 200px;
}

.count-number {
    font-weight: bold;
}

.count-text {
    font-size: 24px;
    align-self: flex-end;
    position: relative;
    top: -35px;
}

/* Container para as imagens */
.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 5px;
}
    
 /* Estilo para a imagem grande */
.main-image img {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
    
/* Estilização para os cards */
.card-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    margin-top: -80px;
}

.card {
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: #fff;
}

.card-header {
    background: #212121;
    color: #fff;
    padding: 10px;
    text-align: center;
    font-size: 1.6em;
    font-weight: bold;
}

.card-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-body li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #eee;
}

.card-body li:last-child {
    border-bottom: none;
}

.card-body img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.acao-info {
    display: flex;
    flex-direction: column;
    margin-right: -100px;
}

.codigo {
    font-weight: bold;
    margin-left: -170px;
}

.nome {
    text-align: left;
    margin-left: -170px;
}

.preco {
    color: #28a745;
    font-weight: bold;
}

/*parceiros*/
.parceiros {
    text-align: center;
    padding: 10px;
    color: #fff;
}

.parceiros h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.parceiros p {
    font-size: 22px;
}

.logos-container {
    display: flex;
    justify-content: center;
    padding: 30px;
    gap: 300px;
    flex-wrap: wrap;
}

.logos-container img {
    max-width: 100px;
    height: auto;
}

/* Container */
.price-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
    font-family: 'Segoe UI', sans-serif;
    background-color: #1A1A1A;
    color: white;
    justify-content: center;
}

/* Cada plano */
.price {
    background-color: #111;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    max-width: 320px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 255, 100, 0.3);
}

.price-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 10px;
}

.price-duration {
    font-size: 2em;
    color: #00ff88;
    margin: 10px 0;
}

.price-details {
    font-size: 0.95em;
    margin-bottom: 20px;
    color: #ccc;
}

.price-body li {
    font-size: 0.9em;
    margin: 6px 0;
    border-bottom: 1px solid #444;
    padding-bottom: 6px;
    list-style-type: none;
    text-align: left;
}

.price-button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 12px;
    font-size: 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.price-button:hover {
    background-color: #218838;
}
    
/*perguntas frequentes*/
.faq-container h2 {
    margin-top: -80px;
    text-align: center;
    font-size: 40px;
}

.faq-container {
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
    padding: 150px;
}
    
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding: 20px;
}
    
.faq-question {
    cursor: pointer;
    position: relative;
    color: #fff;
}
    
.faq-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}
    
.faq-answer {
    display: none;
    color: #fff;
    text-align: justify;
}
    
.active .faq-answer {
    display: block;
}

.active .faq-icon {
    transform: translateY(-50%) rotate(45deg); /* Roda o + para um - quando ativo */
}
    
.faq-icon.active {
    color: red; /* Muda a cor do ícone para vermelho */
}
    
.faq-question.active {
    color: red; /* Muda a cor do texto da pergunta para vermelho */
}

/* Estilo para o botão Junte-se a nós */
.join-us-button {
    text-align: center;
    margin-top: -100px;
}
    
.join-us-button .btn {
    background-color: #28a745;
    color: white;
    padding: 20px 100px; 
    border: none; 
    border-radius: 30px; 
    font-size: 18px; 
    text-decoration: none; 
    display: inline-block; 
    cursor: pointer; 
    transition: background-color 0.3s ease;
}
    
.join-us-button .btn:hover {
    background-color: #218838;
}

/*logo, endereço, menu*/
/* Ajuste do Footer */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.footer-logo img {
    max-width: 250px; 
    margin-bottom: 20px;
}

.footer-address {
    text-align: center;
    margin-bottom: 20px;
    margin-top: -30px;
    color: #fff;
}

/*isenção de responsabilidade*/
.legal, .final {
    text-align: justify;
    background-color: #0D1117;
    color: #d3d3d3;
    padding: 20px;
}

.legal h3 {
    color: #d3d3d3;
}

.legal p {
    font-size: 14px;
    line-height: 1.5;
}

.legal u, .legal strong {
    color: #ffffff;
}

.final nav ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: -20px;
    flex-wrap: wrap;
}

.final nav a {
    color: #d3d3d3;
    text-decoration: none;
    font-size: 14px;
}

.final p {
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
}

/* Posiciona a logo do WhatsApp no canto inferior direito */
.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Define o tamanho da logo */
.whatsapp-icon img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
}

/* Estilo para os ícones das redes sociais */
.social-icons {
    display: flex;
    justify-content: center;  /* Centraliza os ícones horizontalmente */
    gap: 20px;  /* Espaço entre os ícones */
    margin-top: auto;  /* Garante que os ícones fiquem na parte inferior */
}

/* Estilo para os ícones das redes sociais */
.social-icons {
    display: flex;
    justify-content: center;  /* Centraliza os ícones horizontalmente */
    gap: 20px;  /* Espaço entre os ícones */
    margin-top: auto;  /* Garante que os ícones fiquem na parte inferior */
}

/* Tamanho específico para cada ícone */
.instagram-icon {
    width: 40px;   
    height: 40px;
}

.facebook-icon {
    width: 50px; 
    height: 50px;
    margin-top: -5px;
}

.tiktok-icon {
    width: 70px;
    height: 70px;
    margin-top: -18px;
}

/* Efeito de hover nos ícones */
.social-icons img:hover {
    transform: scale(1.2); /* Aumenta o ícone ao passar o mouse */
}

/* Responsivo */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
        line-height: 1.4;
      }

    /*faixa de ativos*/
    .top-bar {
        height: 20px;
    }

    /*faixa vermelha*/
    .promo-bar {
        justify-content: center;
        top: -25px;
        position: relative;
        z-index: 1;
    }

    .promo-bar a {
        font-size: 20px;
        align-items: center;
    }

    header.menu {
        height: 40px; 
        padding: 2px 0; 
    }

    .menu {
        top: 50px;
        flex-direction:row;
        justify-content: space-between;
        padding: 5px 0;
        min-height: 40px; 
    }

    .logo {
        order: 1;
        margin-top: 0px;
        max-height: 30px !important; 
    }

    .logo img {
        width: 70px;
    }

    .menu-toggle {
        display: block;
        order: 2;
        margin-top: 0px;
        padding: 5px; 
        font-size: 20px;
    }

    nav {
        display: none;
        position: absolute;
        top: 42px;
        left: 0;
        width: 100%;
        background-color: #222;
        flex-direction: column;
        text-align: center;
        padding: 10px 0;
        z-index: 2;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
    }

    .menu.active nav {
        display: flex;
    }

    .hero-section {
        width: 100%;
        padding: 10px;
        box-sizing: border-box;
        text-align: center;
        margin-top: 10px;
    }

    .hero-section h1 {
        font-size: 25px;
        margin-top: -20px;   
    }

    .hero-section h2 {
        font-size: 20px;
        margin-bottom: 20px;
        margin-top: 0px;
    }

    .hero-button {
        padding: 12px 25px;
        font-size: 16px;
        margin-top: -30px;
    }

    .comparison {
        text-align: center;
        padding: 60px 20px;
        background-color: #0D1117;
        color: white;
        margin-top: -70px;
    }
    
    .comparison h1 {
        font-size: 30px;
        margin-bottom: 20px;
        font-weight: bold;
    }
    
    .comparison p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    
    /* Tabela de diferenças */
table {
    display: block;
    width: 90vw;
    margin: 10px auto; /* centraliza horizontalmente */
    padding: 5px;
    overflow-x: hidden;
  }
  
  thead {
    display: none;
  }
  
  tbody, tr, td {
    display: block;
    width: 100%;
  }
  
  tr {
    margin-bottom: 15px;
    border: 1px solid #333;
    border-radius: 8px;
    overflow: hidden;
    background-color: #111; /* cor de fundo para diferenciar */
  }
  
  td {
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    text-align: justify;
    font-size: 20px;
    word-wrap: break-word;  /* Permite quebrar palavras longas */
    overflow-wrap: break-word;  /* Compatível com mais navegadores */
    white-space: normal;    /* Permite que o texto quebre linha */
    max-width: 100%;
    box-sizing: border-box;
    
  }
  
  td:before {
    content: attr(data-label);
    font-weight: bold;
    margin-right: auto;
    text-align: left;
    padding-right: 20px;
  }
  
  td.titulo {
    justify-content: center;
    text-align: center;
    background-color: #1a1a1a;
    font-weight: bold;
    font-size: 14px;
  }
  
  td.titulo:before {
    content: none; /* Remove o data-label */
  }

  td:not(.titulo) {
    font-size: 15px; /* aumenta o texto dos outros td */
  }

  td[data-label="Club"] {
    font-size: 15px;
    color: #0f0; /* exemplo de cor verde */
  }
  
    /*imagem e texto*/
    .how-it-works {
        flex-direction: column;
        text-align: center;
    }

    .image img, .text {
        width: 80%; /* Aumenta a largura dos elementos para preencher melhor */
        margin-top: -10px;
    }

    .text h2 {
        text-align: center;
        margin-top: -80px;
    }

    /* Relógio */
    .countdown-container {
    gap: 10px;
    margin-top: -30px;
    }
    
    .countdown-container p, #countdown {
    width: 100%; /* Ajustando largura para dispositivos pequenos */
    font-size: 35px;
    }
    
    .count-number {
    font-size: 80px; /* Tamanho ajustado para dispositivos pequenos */
    }

    .count-text {
    font-size: 12px; /* Tamanho ajustado para dispositivos pequenos */
    position: relative; /* Permite mover o texto */
    top: -15px; /* Move a frase "minuto" um pouco para cima */
    margin-left: -15px; /* Aproxima a frase do número */
    }

    .card-container {
        grid-template-columns: 1fr; /* 1 coluna em telas pequenas */
    }

    /* Estilos dos cards */
    .card-container {
        grid-template-columns: 1fr;
    }

    .acao-info {
        margin-right: -100px;
    }

    .codigo {
        font-weight: bold;
        margin-left: -110px;
        font-size: 15px;
    }
    
    .nome {
        text-align: left;
        margin-left: -110px;
        font-size: 10px;
    }
    

    .call-to-action {
    color: white; /* Texto branco */
    margin: 0 auto;
    max-width: 1000px; /* Limita a largura da seção */
    }

    .call-to-action h1 {
    font-weight: bold; /* Deixa o título principal em negrito */
    font-size: 30px; /* Tamanho da fonte para o título principal */
    margin-bottom: 20px; /* Espaço abaixo do título */
    text-align: center;
    margin-top: -20px;
    }

    .call-to-action p {
    font-weight: bold; /* Deixa os subtítulos em negrito */
    font-size: 20px; /* Tamanho da fonte para os subtítulos */
    margin-bottom: 10px; /* Espaço abaixo de cada subtítulo */
    text-align: center;
    }
    

    /*Cards de preço*/
    .card-container{
    display:flex;
    flex-wrap: wrap;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas */
    gap: 20px; /* Espaçamento entre os cards */
    padding: 20px;
    max-width: 1200px; /* Largura máxima do container */
    margin: 20px;
    font-family: sans-serif;
    background-color: #1A1A1A;
    color: white;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    }


    .card {
    background-color: #111111;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    }

    .card-header {
    padding: 10px 0;
    font-size: 23px;
    }

    .card-title {
    font-size: 1.0em;
    margin: 0;
    }

   .card-price {
    font-size: 2em;
     font-weight: bold;
    margin: 5px 0;
    }

    .card-details{
     font-size: 0.9em;
     margin: 5px 0 10px 0;
    }

    .card-body {
    padding: 10px 0;
    }

    .card-body > p{
    font-size: 0.9em;
    margin: 8px 0;
    }

   .card-body li {
    text-align: justify;
    font-size: 12px;
}

.codigo {
    font-size: 12px;
}

.name {
    font-size: 10px;
}



.card-button {
    background-color: #28a745; /* Green */
    color: white;
    border: none;
    padding: 10px 15px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 10px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    margin-bottom: 10px;
}

.card-button:hover {
    background-color: #218838;
}

.card-footer{
    display: flex;
    flex-direction: column;
    gap: 5px; /* Space between buttons in footer */
    padding-top: 10px;
}


.button-renew{
  background-color: #a72828;
}

.button-reset{
   background-color:  #28a745;
}

.card-unavailable {
  background-color: #333333;
}


    /*perguntas frequentes*/
    .faq-container h2 {
        margin-top: 40px;
    }

    .faq-container {
        padding: 0; /* Reduz o espaçamento interno */
      }
    
      .faq-container h2 {
        font-size: 24px; /* Reduz o tamanho do título */
        margin-bottom: 2px; /* Ajusta o espaçamento inferior */
      }
    
      .faq-question {
        font-size: 18px; /* Reduz o tamanho da pergunta */
        padding: 10px; /* Reduz o espaçamento interno */
      }
    
      .faq-answer {
        font-size: 14px; /* Reduz o tamanho da resposta */
        padding: 10px; /* Ajusta o espaçamento interno */
        text-align: justify;
      }
    
      .faq-icon {
        font-size: 16px; /* Reduz o tamanho do ícone */
      }
    
      /* Estilo para abrir a resposta */
      .faq-item.open .faq-answer {
      display: block; /* Mostra a resposta quando a pergunta é clicada */
      }
    
      .faq-item.open .faq-icon {
      transform: rotate(45deg); /* Roda o ícone "+" em 45 graus */
      }

      /*botão junte-se a nós*/
      .join-us-button {
        display: flex; /* Torna o contêiner flexível */
        justify-content: center; /* Centraliza horizontalmente */
        margin-top: 20px; /* Espaçamento acima */
      }
      
      .join-us-button .btn {
        display: inline-block; /* Garante que o botão seja tratado como um bloco */
        padding: 12px 24px; /* Espaçamento interno do botão */
        background-color: #00cc52; /* Cor de fundo */
        color: #fff; /* Cor do texto */
        font-size: 16px; /* Tamanho da fonte */
        font-weight: bold; /* Destaca o texto */
        text-decoration: none; /* Remove sublinhado */
        border-radius: 8px; /* Bordas arredondadas */
        transition: background-color 0.3s ease; /* Transição suave para hover */
       }
      
      .join-us-button .btn:hover {
        background-color: #009d3c; /* Cor ao passar o mouse */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Efeito de sombra */
       }

       .social-icons {
        margin-top: 20px;
       }

       .footer {
        padding: 10px;
    }

    .footer-logo img {
        max-width: 120px; /* Ajuste o tamanho da logo no celular */
    }

    .footer-address p {
        margin: 5px 0; /* Diminui o espaço entre o endereço e o CNPJ */
    }

    .final nav {
        display: flex !important;
        justify-content: center;
        width: 100%;
    }

    .final nav ul {
        flex-direction: column;
        align-items: center;
        display: flex !important;
        width: 100%;
        padding: 0;
    }

    .legal{
        margin-top: -70px;
        text-align: center;
    }

    .legal p {
        text-align: justify;
    }

    .whatsapp-icon img {
        max-width: 600px;
        width: 50px;
        height: 50px;
    }

    /*parceiros*/

    .parceiros h2 {
        font-size: 30px;
        margin-top: -40px;
    }

    .logos-container {
        display: grid;
        grid-template-columns: repeat(2, 4fr); /* 4 colunas */
        grid-template-rows: repeat(2, auto);   /* 2 linhas */
        gap: 10px;                             /* Espaçamento entre os itens */
        justify-items: center;                 /* Centraliza horizontalmente */
        align-items: center;                   /* Centraliza verticalmente */
        margin-top: -60px;
    }

    .card-container {
        flex-direction: column;
        align-items: center;
        margin-top: -50px;
    }

    .call-to-action{
        margin-top: 15px;
    }

    .card {
        width: 100%;
        max-width: 90%;
    }

    .price-container {
        flex-direction: column;
        align-items: center;
    }

    .price {
        width: 100%;
        max-width: 90%;
    }

}