/* Reset e Configurações Globais */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: #d7fcf9;
            background-color: #011012;
            min-height: 100vh;
            
            background-image: 
                radial-gradient(circle at 50% 50%, #082f33, #011012 85%),
                url('./montain.png'); /* Substitua pelo link da sua Imagem 2 */
            background-position: center top, center bottom; /* Gradiente no topo/centro, imagem na parte inferior */
            background-repeat: no-repeat, no-repeat;
            background-size: 100% 100%, cover; 
            overflow-x: hidden;
        }
        
        h3{
            margin-top: 20px;
        }

        /* Container Principal */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Cabeçalho */
        .header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            padding-bottom: 25px;
        }

        .logo {
            display: flex;
            align-items: center;
            font-size: 24px;
            font-weight: 600;
            gap: 8px;
        }
        
        .logo-icon {
            width: 28px;
            height: 28px;
        }

        .nav {
            display: flex;
            gap: 40px;
        }

        .nav-link {
            text-decoration: none;
            color: #d7fcf9;
            font-size: 16px;
            font-weight: 400;
            transition: color 0.2s ease-in-out;
        }

        .nav-link:hover {
            color: #14d2c8;
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .header-actions .icon {
            color: #d7fcf9;
            cursor: pointer;
            transition: color 0.2s ease-in-out;
        }
        
        .header-actions .icon:hover {
            color: #14d2c8;
        }

        .login-btn {
            background-color: transparent;
            color: #d7fcf9;
            border: 1.5px solid #d7fcf9;
            padding: 8px 24px;
            border-radius: 8px;
            font-family: 'Poppins', sans-serif;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.2s ease-in-out;
        }

        .login-btn:hover {
            background-color: #14d2c8;
            border-color: #14d2c8;
            color: #011012;
        }

        /* Seção Principal (Hero) */
        .hero {
            text-align: center;
            padding-top: 140px;
        }

        .hero-title {
            font-size: 64px;
            font-weight: 600;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 18px;
            font-weight: 400;
            max-width: 600px;
            margin: 25px auto 40px;
            line-height: 1.6;
            color: #a7e0da;
        }

        .cta-button {
            background-color: #14d2c8;
            color: #032023;
            border: none;
            padding: 16px 40px;
            border-radius: 10px;
            font-family: 'Poppins', sans-serif;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            background-color: #21e6db;
        }
        
        /* Rodapé */
        .footer {
            padding-top: 60px;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
            flex-wrap: wrap; /* Permite que os itens quebrem linha se necessário */
        }

        .footer-column {
            flex: 1; /* Permite que as colunas cresçam */
            min-width: 220px; /* Largura mínima antes de quebrar a linha */
        }

        .footer-column h4 {
            font-size: 18px;
            font-weight: 500;
            color: #d7fcf9;
            margin-bottom: 20px;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column ul li {
            margin-bottom: 12px;
        }

        .footer-column a, .footer-column p {
            text-decoration: none;
            color: #a7e0da;
            font-size: 16px;
            transition: color 0.2s ease-in-out;
        }

        .footer-column a:hover {
            color: #14d2c8;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid #082f33;
            font-size: 14px;
            color: #a7e0da;
        }

.row {
    display: flex;
    flex-wrap: wrap; /* Permite que os itens quebrem linha */
    justify-content: center; /* Centraliza o conteúdo */
    margin-top: 60px; /* Espaço acima do formulário */
    margin-bottom: 60px; /* Espaço abaixo do formulário */
}

/* Estilo do Título (d-heading) */
.d-heading {
    text-align: center;
    margin-bottom: 40px;
}

.d-heading h2 {
    font-size: 36px;
    font-weight: 600;
    color: #d7fcf9;
    margin-bottom: 10px;
}

.d-heading p {
    font-size: 18px;
    color: #a7e0da;
}

/* Quadro do Formulário */
.QuadroSimple {
    background-color: #032023; /* Um tom escuro, mas diferente do fundo */
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #082f33;
    max-width: 500px; /* Define uma largura máxima para o formulário */
    margin: 0 auto; /* Centraliza o quadro na tela */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Formulário e seus elementos */
.formText {
    display: flex;
    flex-direction: column;
}

.formText label {
    font-size: 16px;
    font-weight: 500;
    color: #a7e0da;
    margin-bottom: 8px;
    margin-top: 15px; /* Espaço entre os campos */
}

.formText .inputfield {
    width: 100%;
    padding: 12px 15px;
    background-color: #011012;
    border: 1.5px solid #082f33;
    border-radius: 8px;
    color: #d7fcf9;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.formText .inputfield::placeholder {
    color: #5b7a7c;
}

.formText .inputfield:focus {
    outline: none;
    border-color: #14d2c8; /* Destaque ao focar */
    box-shadow: 0 0 0 3px rgba(20, 210, 200, 0.2);
}

/* Estilo do Botão de Envio */
.formText input[type="submit"] {
    background-color: #14d2c8;
    color: #032023;
    border: none;
    padding: 14px;
    margin-top: 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.formText input[type="submit"]:hover {
    background-color: #21e6db;
    transform: translateY(-2px);
}

/* Estilo dos Links de Ajuda */
.formText p {
    text-align: center;
    margin-top: 20px;
}

.formText p a {
    color: #a7e0da;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.2s ease-in-out;
}

.formText p a:hover {
    color: #14d2c8;
    text-decoration: underline;
}
/* ======================================= */
/* =====  CSS para Seção de Planos e Preços  ===== */
/* ======================================= */

.pricing-plan-section {
    padding-bottom: 100px;
}

/* Título da seção, reutilizando o estilo já criado */
.pricing-plan-section .d-heading h2 {
    font-size: 42px;
    font-weight: 600;
    color: #d7fcf9;
    margin-bottom: 10px;
    text-align: center;
}

.pricing-plan-section .d-heading p {
    font-size: 18px;
    color: #a7e0da;
    text-align: center;
}

/* Botões de seleção Mensal / Anual */
.pricing-tabs-btn {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    margin-bottom: 50px;
}

.pricing-tabs-btn .nav-pills {
    background-color: #032023;
    border-radius: 10px;
    padding: 6px;
    border: 1px solid #082f33;
    display: inline-flex;
}

.pricing-tabs-btn .nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #a7e0da;
    padding: 10px 30px;
    border-radius: 8px;
    border: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

/* Estilo do botão ativo (selecionado) */
.pricing-tabs-btn .nav-link.active {
    background-color: #14d2c8;
    color: #011012;
    box-shadow: 0 4px 15px rgba(20, 210, 200, 0.15);
}

/* Card de Preço Individual */
.prcing-div {
    background-color: #032023;
    border: 1.5px solid #082f33;
    border-radius: 15px;
    padding: 30px;
    height: 100%; /* Garante que todos os cards tenham a mesma altura */
    display: flex;
    flex-direction: column; /* Organiza o conteúdo em coluna */
    transition: transform 0.3s ease, border-color 0.3s ease;
    margin: 25px; /* Espaço entre os cards em telas pequenas */
}

.prcing-div:hover {
    transform: translateY(-8px);
    border-color: #14d2c8;
}

/* Parte superior do card (nome, preço, descrição) */
.pricing-top {
    border-bottom: 1px solid #082f33;
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.pricing-top p {
    font-size: 18px;
    color: #d7fcf9;
    margin-bottom: 15px;
}

.pricing-top h3 {
    font-size: 40px;
    font-weight: 600;
    color: #d7fcf9;
    margin-bottom: 15px;
}

.pricing-top h3 .coin {
    font-size: 20px;
    font-weight: 500;
    color: #a7e0da;
    margin-right: 5px;
}

.pricing-top h3 sub {
    font-size: 16px;
    font-weight: 400;
    color: #a7e0da;
}

.pricing-top p:last-of-type {
    font-size: 15px;
    color: #a7e0da;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Parte inferior do card (lista de recursos) */
.pricing-bottom {
    flex-grow: 1; /* Faz esta parte crescer para empurrar o link para baixo */
    display: flex;
    flex-direction: column;
}

.pricing-bottom p {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 15px;
}

.pricing-bottom ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.pricing-bottom ul li {
    color: #a7e0da;
    font-size: 15px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

/* Adiciona um ícone de "check" antes de cada item da lista */
.pricing-bottom ul li::before {
    content: '✔';
    color: #14d2c8;
    margin-right: 10px;
    font-size: 16px;
}

/* Botão de Cadastro */
.pricing-bottom a,.NiceText a {
    display: block;
    text-align: center;
    background-color: transparent;
    color: #d7fcf9;
    border: 1.5px solid #d7fcf9;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin-top: auto; /* Empurra o botão para o final do card */
    transition: all 0.3s ease;
}

.NiceText a {
    margin-top: 30px;
}

#recursos .d-heading {
    text-align: left; /* Alinha o texto à esquerda para melhor leitura */
}

/* Caixa principal que envolve o texto */
.AjustNew {
    max-width: 900px; /* Limita a largura para linhas de texto mais curtas e legíveis */
    margin: 40px auto; /* Centraliza a caixa na página */
    background-color: #032023;
    border: 1.5px solid #082f33;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Estilo para os Títulos Principais */
#recursos h2 {
    font-size: 34px;
    font-weight: 600;
    color: #d7fcf9;
    margin-bottom: 25px;
}

/* Estilo para o span dentro do h2, criando o sublinhado */
#recursos h2 span {
    display: inline-block;
    border-bottom: 3px solid #14d2c8;
    padding-bottom: 10px;
}

/* Estilo para os Subtítulos de cada recurso */
#recursos h3 {
    font-size: 24px;
    font-weight: 600;
    color: #d7fcf9;
    margin-top: 45px; /* Espaço acima de cada subtítulo */
    margin-bottom: 15px;
}

/* Estilo para os Parágrafos de Texto */
.NiceText {
    font-size: 17px;
    color: #a7e0da;
    line-height: 1.8; /* Aumenta o espaçamento entre as linhas para facilitar a leitura */
    margin-bottom: 20px;
}

/* Destaque para palavras em negrito dentro dos parágrafos */
.NiceText strong {
    color: #d7fcf9;
    font-weight: 600;
}

/* Estilo para a Linha Horizontal (Divisor) */
#recursos hr {
    border: none;
    height: 1.5px;
    background-color: #082f33;
    margin: 60px 0; /* Aumenta o espaço vertical ao redor do divisor */
}

/* Estilo para Listas */
.NiceText ul {
    list-style: none;
    padding-left: 10px;
    margin-top: 25px;
}

.NiceText ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 18px;
    line-height: 1.7;
}

/* Marcador personalizado para os itens da lista */
.NiceText ul li::before {
    content: '›';
    color: #14d2c8;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: -2px;
}

.ImgIn{
    margin-top: 100px;
    position: relative;
    right: 33%;
    mix-blend-mode: darken;
    margin-bottom: 50px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}


/* ======================================= */
/* =====  Responsividade para Recursos   ===== */
/* ======================================= */

@media (max-width: 768px) {
    .AjustNew {
        padding: 40px 30px; /* Reduz o padding em telas menores */
    }
    
    #recursos h2 {
        font-size: 28px;
        line-height: 1.3;
    }
    
    #recursos h3 {
        font-size: 22px;
    }
    
    .NiceText {
        font-size: 16px;
    }
}

.pricing-bottom a:hover {
    background-color: #14d2c8;
    border-color: #14d2c8;
    color: #011012;
}

/* Oculta as abas do Bootstrap por padrão */
.tab-content .tab-pane {
    display: none;
}

/* Mostra apenas a aba ativa */
.tab-content .tab-pane.active {
    display: block;
}

        /* ======================================= */
        /* ===== INÍCIO DO CSS RESPONSIVO ===== */
        /* ======================================= */
        
        
        @media screen and (min-width: 1200px) {
            .d-heading {
                margin-right: 100px;
            }
        }

@media (max-width: 992px) {
    /* Em tablets, os cards podem ficar um pouco grandes, ajustamos o espaçamento */
    .prcing-div {
        margin-bottom: 30px;
    }
}
        /* Telas de tablets e dispositivos menores (até 768px) */
        @media (max-width: 768px) {
            .container {
                padding: 0 25px; 
                overflow: hidden;
            }
            .pricing-plan-section .d-heading h2 {
                font-size: 36px;
            }
                        
            .pricing-tabs-btn .nav-link {
                padding: 8px 20px;
                font-size: 15px;
            }
            .nav {
                display: none; /* Esconde o menu de navegação principal */
                /* Para um menu funcional, seria necessário um 'menu hambúrguer' com JavaScript */
            }

            .hero {
                padding-top: 80px;
                padding-bottom: 80px;
            }

            .hero-title {
                font-size: 48px; /* Reduz o tamanho do título */
            }

            .hero-subtitle {
                font-size: 16px; /* Reduz o tamanho do subtítulo */
            }

            .footer-content {
                flex-direction: column; /* Empilha as colunas do rodapé */
                align-items: center;   /* Centraliza o conteúdo */
                text-align: center;
                gap: 30px;
            }
        }

        /* Telas de celulares (até 480px) */
        @media (max-width: 480px) {
            .Montain {
                display: none;
            }
            
            .ImgIn
            {
                opacity: 0.5;
            }
            .d-heading h2 {
                    font-size: 28px;
                }
            
                .d-heading p {
                    font-size: 16px;
                }
            
                .QuadroSimple {
                    padding: 30px 25px; /* Menos padding em telas pequenas */
                }
            
            
             .header {
                padding-top: 20px;
                padding-bottom: 20px;
             }

            .logo span {
                font-size: 20px; /* Reduz o tamanho do texto do logo */
            }

            .header-actions {
                gap: 20px; /* Diminui o espaço entre os ícones */
            }
            
            .login-btn {
                padding: 6px 16px; /* Botão de login menor */
                font-size: 16px;
            }

            .hero {
                padding-top: 60px;
                padding-bottom: 60px;
            }

            .hero-title {
                font-size: 36px; /* Título ainda menor para celulares */
                line-height: 1.3;
            }

            .cta-button {
                padding: 14px 32px;
                font-size: 16px;
            }
        }