* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    overflow-x: hidden;
}

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;

    font-family: 'Inter', sans-serif;
    background-color: #424954;
    color: #ffffff;
    overflow-x: hidden;
}

#video {
    width: min(70%, 100%);
    max-width: 800px;
    cursor: pointer;
    border-radius: 12px;
}

#videoContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 60vh;
}

.cabecalho-flutuante {
    width: calc(100% - 40px);
    max-width: 1280px;

    margin: 20px auto 0 auto;
    padding: clamp(12px, 2vw, 16px) clamp(16px, 3vw, 24px);

    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;

    background: rgba(13, 17, 23, 0.7);
    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-texto {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-itens {
    display: flex;
    align-items: center;
}

.icone-logo {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    color: white;
    margin-right: 8px;
}

.texto-superior {
    font-size: clamp(8px, 1.5vw, 10px);
    font-weight: bold;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: -0.05em;

    color: #9ca3af;
}

.texto-inferior {
    font-size: clamp(12px, 2vw, 14px);
    font-weight: bold;
    line-height: 1;

    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.timer-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: clamp(8px, 1.5vw, 10px) clamp(12px, 2vw, 18px);
    background: rgba(255, 77, 77, 0.15);
    border: 1px solid rgba(255, 77, 77, 0.4);
    color: #ff6b6b;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    font-weight: 600;
    font-size: clamp(12px, 1.5vw, 14px);
    white-space: nowrap;
}

.timer-icon {
    width: clamp(16px, 2vw, 20px);
    height: clamp(16px, 2vw, 20px);
    object-fit: contain;
    flex-shrink: 0;
}

#timer {
    font-family: monospace;
    font-size: clamp(12px, 1.5vw, 16px);
}

.conteudo {
    flex: 1;
}

.certificacoes {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(40px, 8vw, 60px) clamp(16px, 3vw, 20px);

    background: linear-gradient(180deg,
            #05070a 0%,
            #0d1117 100%);
}

.certificacoes-conteudo {
    max-width: 1200px;
    width: 100%;

    text-align: center;
}

.certificacoes h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.certificacoes p {
    max-width: 800px;
    margin: 0 auto clamp(32px, 6vw, 50px) auto;

    font-size: clamp(1rem, 2vw, 1.2rem);
    color: #9ca3af;
    line-height: 1.6;
}

.selos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: clamp(16px, 3vw, 25px);
}

.selo {
    padding: clamp(24px, 5vw, 40px) clamp(16px, 3vw, 20px);

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    transition: all 0.3s ease;
}

.selo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.passos-objetivo {
    min-height: 100vh;
    padding: clamp(50px, 8vw, 80px) clamp(16px, 3vw, 20px);

    display: flex;
    align-items: center;

    background-color: #05070a;
}

.container-passos {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.container-passos h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.descricao-passos {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 8vw, 60px);
    color: #9ca3af;
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    line-height: 1.6;
}

.passos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 3vw, 25px);
}

.passo {
    padding: clamp(20px, 4vw, 30px);

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.passo:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.passo span {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;
    opacity: 0.5;
}

.passo h3 {
    margin: clamp(12px, 2vw, 15px) 0;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.passo p {
    color: #d1d5db;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.rodape {
    margin-top: auto;
    background-color: #111827;
    color: white;
    padding: clamp(24px, 4vw, 40px) 20px;
}

.rodape-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: clamp(20px, 4vw, 30px);
}

.rodape-coluna {
    flex: 1;
    min-width: 220px;
}

.rodape-coluna h2,
.rodape-coluna h3 {
    margin-bottom: 12px;
    font-size: clamp(1rem, 2vw, 1.2rem);
}

.rodape-coluna p {
    color: #d1d5db;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.rodape-coluna ul {
    list-style: none;
    padding: 0;
}

.rodape-coluna li {
    margin-bottom: 8px;
}

.rodape-coluna a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.rodape-coluna a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.copyright {
    text-align: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #374151;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: #9ca3af;
}

.card-geral {
    width: 100%;
    padding: clamp(50px, 8vw, 80px) clamp(16px, 3vw, 20px);
    background-color: #05070a;
    text-align: center;
}

.card-geral h2 {
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.card-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: clamp(16px, 3vw, 20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: #007bff;
}

.card-header {
    text-align: left;
    display: flex;
    align-items: center;
    padding: clamp(8px, 1.5vw, 10px);
    gap: 12px;
}

.card img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.card h3 {
    color: #333;
    margin: clamp(8px, 1.5vw, 10px) 0;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
}

.card p {
    padding: 0 clamp(8px, 1.5vw, 10px);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    color: #555;
    line-height: 1.5;
}

.card .btnSM {
    display: none;
    margin-top: clamp(12px, 2vw, 16px);
    padding: clamp(6px, 1.5vw, 8px) clamp(12px, 2vw, 16px);
    border: none;
    background: #007bff;
    color: #fff;
    border-radius: 6px;
    cursor: pointer;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 600;
    transition: all 0.3s ease;
}

.card:hover .btnSM {
    display: inline-block;
}

.card button:hover {
    background-color: #0056b3;
    transform: scale(1.05);
}

.saibaMais {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.saibaMais.show {
    max-height: 300px;
    opacity: 1;
}

.utilidade {
    min-height: 100vh;
    padding: clamp(50px, 8vw, 80px) clamp(16px, 3vw, 20px);
    background-color: #0d1117;
}

.utilidade-container {
    max-width: 1200px;
    margin: 0 auto;
}

.utilidade h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.utilidade-descricao {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 8vw, 60px);
    color: #9ca3af;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.utilidade-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(16px, 3vw, 25px);
}

.utilidade-card {
    padding: clamp(20px, 4vw, 30px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.utilidade-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.utilidade-card h3 {
    margin-bottom: clamp(12px, 2vw, 15px);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.utilidade-card p {
    color: #9ca3af;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.feedbacks {
    min-height: 100vh;
    padding: clamp(50px, 8vw, 80px) clamp(16px, 3vw, 20px);
    background-color: #05070a;
}

.feedbacks-container {
    max-width: 1200px;
    margin: 0 auto;
}

.feedbacks h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.feedbacks-descricao {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 8vw, 60px);
    color: #9ca3af;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: clamp(16px, 3vw, 25px);
}

.feedback-card {
    padding: clamp(20px, 4vw, 30px);

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feedback-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.estrelas {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    margin-bottom: clamp(12px, 2vw, 15px);
}

.feedback-card p {
    color: #d1d5db;
    margin-bottom: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.feedback-card h4 {
    color: #ffffff;
    font-size: clamp(0.95rem, 1.8vw, 1rem);
}

.autores {
    padding: clamp(50px, 8vw, 100px) clamp(16px, 3vw, 20px);
    background-color: #05070a;
}

.autores-container {
    max-width: 1200px;
    margin: 0 auto;
}

.autores h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.autores-descricao {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(40px, 8vw, 60px);
    color: #9ca3af;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.autores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(20px, 3vw, 30px);
}

.autor-card {
    padding: clamp(20px, 4vw, 30px);

    text-align: center;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
}

.autor-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-6px);
}

.avatar {
    width: clamp(80px, 15vw, 100px);
    height: clamp(80px, 15vw, 100px);

    margin: 0 auto clamp(16px, 3vw, 20px);

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: bold;

    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.avatar-img {
    width: clamp(80px, 15vw, 100px);
    height: clamp(80px, 15vw, 100px);

    margin: 0 auto clamp(16px, 3vw, 20px);

    border-radius: 50%;
    object-fit: cover;

    border: 2px solid rgba(255, 255, 255, 0.1);

    display: block;
}

.autor-card h3 {
    margin-bottom: clamp(8px, 1.5vw, 10px);
    font-size: clamp(1.05rem, 2vw, 1.2rem);
}

.autor-card span {
    display: block;
    margin-bottom: clamp(16px, 2vw, 20px);
    color: #9ca3af;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.autor-card p {
    color: #d1d5db;
    line-height: 1.6;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.faq-garantia {
    padding: clamp(50px, 8vw, 100px) clamp(16px, 3vw, 20px);
    background-color: #0d1117;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-garantia h2 {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 3rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.faq-descricao {
    text-align: center;
    max-width: 700px;
    margin: 0 auto clamp(32px, 6vw, 50px);
    color: #9ca3af;
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.faq-lista {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vw, 15px);
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: clamp(16px, 3vw, 20px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.faq-item summary {
    cursor: pointer;
    font-weight: bold;
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    transition: color 0.3s ease;
}

.faq-item summary:hover {
    color: #22c55e;
}

.faq-item p {
    margin-top: clamp(12px, 2vw, 15px);
    color: #d1d5db;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    line-height: 1.6;
}

.garantia {
    margin-top: clamp(32px, 6vw, 50px);
    padding: clamp(20px, 4vw, 30px);

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    text-align: center;
    transition: all 0.3s ease;
}

.garantia:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.garantia h3 {
    margin-bottom: clamp(16px, 3vw, 20px);
    font-size: clamp(1.5rem, 3vw, 2rem);
}

.garantia p {
    color: #d1d5db;
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.venda {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: clamp(50px, 8vw, 80px) clamp(16px, 3vw, 20px);

    background: linear-gradient(180deg,
            #05070a 0%,
            #0d1117 100%);
}

.venda-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.venda h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    margin-bottom: clamp(16px, 3vw, 24px);
    font-weight: 700;
}

.venda-descricao {
    color: #9ca3af;
    margin-bottom: clamp(32px, 6vw, 40px);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 1.6;
}

.oferta {
    padding: clamp(32px, 6vw, 50px) clamp(20px, 4vw, 32px);

    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    transition: all 0.3s ease;
}

.oferta:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.preco-antigo {
    display: block;

    font-size: clamp(1rem, 2vw, 1.2rem);
    text-decoration: line-through;

    color: #9ca3af;
}

.preco-atual {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: bold;

    margin: clamp(12px, 2vw, 15px) 0;
    color: #22c55e;
}

.parcelamento {
    color: #d1d5db;
    margin-bottom: clamp(20px, 4vw, 30px);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
}

.btn-comprar {
    padding: clamp(12px, 2vw, 16px) clamp(24px, 4vw, 40px);

    border: none;
    border-radius: 12px;

    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    font-weight: bold;

    cursor: pointer;

    background: #22c55e;
    color: white;

    transition: all 0.3s ease;
}

.btn-comprar:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
}

.btn-comprar:active {
    transform: scale(0.98);
}

.cta {
    margin-top: clamp(16px, 3vw, 25px);
    color: #9ca3af;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
}

.whatsapp-float {
    position: fixed;
    bottom: clamp(60px, 10vw, 90px);
    right: clamp(16px, 3vw, 80px);
    width: clamp(40px, 8vw, 50px);
    height: clamp(40px, 8vw, 50px);
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
    width: 60%;
    height: 60%;
    object-fit: contain;
}

.tooltip {
    position: absolute;
    right: clamp(60px, 12vw, 90px);
    background: #333;
    color: white;
    padding: clamp(6px, 1vw, 8px) clamp(10px, 2vw, 12px);
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(10px);
    transition: all 0.3s ease;
    font-size: clamp(12px, 1.5vw, 14px);
}

.whatsapp-float:hover .tooltip {
    opacity: 1;
    transform: translateX(0);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.8);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 40px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes shake {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.15);
    }

    50% {
        transform: scale(1.25);
    }

    75% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.shake {
    animation: shake 0.8s ease;
}

/* Media Queries para Mobile */
@media (max-width: 768px) {
    .cabecalho-flutuante {
        position: sticky;
        top: 10px;
        width: calc(100% - 20px);
        margin: 10px auto;
        padding: 10px 16px;
        flex-direction: column;
        gap: 12px;
    }

    .timer-header {
        width: 100%;
        justify-content: center;
    }

    #videoContainer {
        min-height: 40vh;
        padding: 20px 10px;
    }

    #video {
        width: 90%;
    }

    .card-container {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 12px;
    }

    .card-header {
        padding: 6px;
    }

    .card img {
        width: 35px;
        height: 35px;
    }

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

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

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

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

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

    .rodape-container {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .tooltip {
        right: 60px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cabecalho-flutuante {
        width: calc(100% - 16px);
        margin: 8px auto;
        padding: 8px 12px;
    }

    .logo-itens {
        flex-direction: column;
        align-items: flex-start;
    }

    .icone-logo {
        margin-right: 0;
        margin-bottom: 4px;
    }

    .timer-header {
        flex-wrap: wrap;
        gap: 6px;
        font-size: 11px;
    }

    #video {
        width: 95%;
    }

    .card-container {
        gap: 12px;
    }

    .card {
        padding: 10px;
    }

    .oferta {
        padding: 20px 16px;
    }

    .preco-atual {
        font-size: 2rem;
    }

    .btn-comprar {
        width: 100%;
    }

    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        right: 15px;
    }

    .tooltip {
        display: none;
    }

    .faq-item {
        padding: 12px;
    }

    .faq-item summary {
        font-size: 0.95rem;
    }
}

/* Melhorias para Tablets */
@media (min-width: 769px) and (max-width: 1024px) {
    .card-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

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

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

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