/* ================= ESTILOS DA PÁGINA DE WHATSAPP BOT (TAMANHO EXATO E BLINDADO) ================= */
.pricing-page {
    background-color: white;
    padding: 40px 20px;
}

/* Efeito de Borda Preta em volta das Letras do Título */
.stroke-title {
    text-align: center;
    font-size: 38px;
    font-family: 'Fredoka', 'Arial Rounded MT Bold', sans-serif;
    color: white;
    text-shadow: 
        -2px -2px 0 #000,  
         2px -2px 0 #000,
        -2px  2px 0 #000,
         2px  2px 0 #000,
         3px  3px 0 #000; 
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* ================== A MÁGICA DO TAMANHO FIXO AQUI ================== */
.app-cards-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

/* O CARD PRINCIPAL - TAMANHO BLINDADO (LARGURA E ALTURA) */
.app-card {
    width: 320px; /* LARGURA FIXA */
    height: 560px; /* ALTURA FIXA! Todos os 4 vão ficar do mesmíssimo tamanho */
    background-color: #e5e7eb; 
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.4) 0px, rgba(255,255,255,0.4) 2px, transparent 2px, transparent 10px);
    border-radius: 15px;
    border: 3px solid #000; 
    box-shadow: 0 8px 0px #000; 
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    transition: transform 0.2s ease;
}

.app-card:hover {
    transform: translateY(-5px);
}

/* Cabeçalho colorido no topo do card */
.card-header {
    padding: 20px 10px 30px 10px; 
    text-align: center;
    font-family: 'Fredoka', sans-serif;
}

.card-header h2 {
    font-size: 14px; 
    color: white;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    margin: 0;
    padding: 0 10px;
}

/* A Caixa Branca Interna */
.card-inner-box {
    background: #fff;
    margin: -20px 12px 15px 12px; 
    border-radius: 12px;
    padding: 20px 15px 15px 15px;
    border: 3px solid #000; 
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden; /* Importante para não deixar vazar */
}

.price-value {
    font-size: 28px; 
    text-align: center;
    font-weight: 800;
    margin: 0;
    font-family: 'Fredoka', sans-serif;
    flex-shrink: 0; /* Impede que o preço seja esmagado */
}

.price-divider {
    height: 2px;
    margin: 10px 0;
    flex-shrink: 0;
}

/* ================== SCROLL DISCRETO PARA MUITO TEXTO ================== */
.features-list {
    list-style: none;
    margin-bottom: 15px;
    flex-grow: 1;
    overflow-y: auto; /* Cria barra de rolagem se passar do limite */
    padding-right: 5px;
}

/* Estilizando a barra de rolagem para ficar bonitinha e invisível */
.features-list::-webkit-scrollbar {
    width: 4px;
}
.features-list::-webkit-scrollbar-track {
    background: transparent;
}
.features-list::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 10px;
}

.features-list li {
    font-size: 12px; 
    font-weight: 700;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.3;
}

/* Checkmarks sempre verdes */
.features-list li i {
    color: #4ade80 !important;
    font-size: 12px;
    margin-top: 1px;
}

/* Botão de Adicionar ao Carrinho */
.btn-buy {
    border: 2px solid #000;
    border-radius: 25px;
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 3px 0 #000; 
    transition: all 0.1s;
    align-self: center;
    width: 85%; 
    flex-shrink: 0; /* Impede o botão de sumir */
}

.btn-buy:active {
    transform: translateY(3px);
    box-shadow: 0 0px 0 #000;
}

.btn-buy i {
    font-size: 16px;
}

/* Rodapé Preto con "PONTO ZERO" */
.card-black-footer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 12px;
    margin: 0 12px 12px 12px;
    border-radius: 12px;
    flex-shrink: 0;
}

.brand-title {
    font-family: 'Fredoka', sans-serif;
    font-size: 20px; 
    letter-spacing: 2px;
    margin-bottom: 3px;
}

.binary-text {
    font-family: monospace;
    font-size: 9px;
    color: #666;
    line-height: 1.2;
}

/* ================= CORES DOS TEMAS DO BOT ================= */

/* TEMA CIANO (Básico) - Foto image_fac37a.jpg */
.theme-bot-cyan .card-header { background: linear-gradient(to right, #06b6d4, #3b82f6); }
.theme-bot-cyan .price-value { color: #06b6d4; }
.theme-bot-cyan .price-divider { background-color: #06b6d4; }
.theme-bot-cyan .features-list li { color: #06b6d4; }
.theme-bot-cyan .btn-buy { background: linear-gradient(to bottom, #06b6d4, #2563eb); color: white; }

/* TEMA ROXO (Simple) - Foto image_fac37a.jpg */
.theme-bot-purple .card-header { background: linear-gradient(to right, #a855f7, #10b981); }
.theme-bot-purple .price-value { color: #a855f7; }
.theme-bot-purple .price-divider { background-color: #a855f7; }
.theme-bot-purple .features-list li { color: #a855f7; }
.theme-bot-purple .btn-buy { background: linear-gradient(to bottom, #a855f7, #10b981); color: white; }

/* TEMA LARANJA (Media) - Foto image_fac35b.jpg */
.theme-bot-orange .card-header { background: linear-gradient(to bottom, #f97316, #ea580c); }
.theme-bot-orange .price-value { color: #ea580c; }
.theme-bot-orange .price-divider { background-color: #ea580c; }
.theme-bot-orange .features-list li { color: #ea580c; }
.theme-bot-orange .btn-buy { background: linear-gradient(to bottom, #f97316, #c2410c); color: white; }

/* TEMA PRETO (Complejo) - Foto image_fac35b.jpg */
.theme-bot-black .card-header { background-color: #000; }
.theme-bot-black .price-value { color: #000; }
.theme-bot-black .price-divider { background-color: #000; }
.theme-bot-black .features-list li { color: #4b5563; }
.theme-bot-black .btn-buy { background: #333; color: white; }

/* ================= OBSERVAÇÕES ================= */
.observations-section {
    text-align: center;
    margin-top: 30px;
}

.obs-main-title {
    font-size: 32px !important;
    margin-bottom: 20px !important;
}

.obs-list-styled {
    list-style: none;
    display: inline-block;
    text-align: left;
    background: transparent;
}

.obs-list-styled li {
    font-size: 16px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
    font-family: 'Arial', sans-serif;
}

.blue-pin {
    color: #3b82f6; 
    margin-right: 10px;
}

.binary-divider-long {
    color: #ccc;
    font-family: monospace;
    font-size: 12px;
    text-align: center;
    margin: 40px 0;
    overflow: hidden;
    white-space: nowrap;
}

/* =========================================================
   CABEÇALHO E RODAPÉ PRETO (Igual às Web e Aplicativos)
   ========================================================= */
.main-header {
    background-color: #000000 !important; 
    border-bottom: none !important;
}
.main-footer {
    background-color: #000000 !important; 
    border-top: none !important;
}