/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;

}

#ship {
    text-align: center;
    display: flex;
    align-items: flex-start;
    padding-left: 15px;
}

p {
    text-align: center;
}

h1 {
    font-size: 50px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    /* Sombra preta */

}

h2 {
    font-size: 40px;
    font-weight: 500;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 1.5);
    /* Sombra preta */

}



/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    z-index: 9999;
}


.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: orange;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    background: white !important;
    height: 4px;
    width: 30px;
    margin: 5px;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    /* Ensures vertical alignment */
    font-size: 25px;
    font-weight: bold;
    color: white;
}

.brigadeiro-icon {
    width: 85px;
    /* Increase size */
    height: 55px;
    margin-right: 10px;
    /* Adjust spacing between text and icon */
    margin-left: -10px;
    vertical-align: middle;
    /* Ensures proper alignment */
}




/* Sections */
.section {
    height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    color: white;
    font-size: 25px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
    /* Dá mais destaque */
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.content {
    position: relative;
    z-index: 3;
}

.cta-button {
    color: black;
    font-size: 35px;
    text-decoration: none;
    display: inline-block;
}

/* Adiciona uma transição suave ao menu */
.nav-links {
    transition: all 0.5s ease-in-out;
}

/* Quando o menu está ativo, adiciona uma leve animação */
.nav-links.active {
    opacity: 1;
    transform: translateY(0);
}



.footer {
    text-align: center;
    padding: 20px;
    background-color: #000;
    /* Adjust background color if needed */
    color: white;
    /* Adjust text color if needed */
}



.plan-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.plan-card {
    width: 280px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.plan-card:hover {
    transform: scale(1.05);
}




.plan-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 10px;
}

.price {
    font-size: 26px;
    font-weight: bold;
    margin: 10px 0;
}

.pricing-section h2 {
    font-weight: bold;


}

.frequency {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 15px;
}

.subscribe-button {
    background-color: #ff6600;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}


/* Ajuste no container dos planos */
.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto;
}

/* Cards dos planos */
.pricing-card {
    width: 280px;
    background: orange;
    padding: 30px;
    margin-top: 25%;
    border-radius: 10px;
    text-align: center;
    font-weight: bold;
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    opacity: 1;
    color: #000
}

.pricing-card:hover {
    background: linear-gradient(45deg, #cba498, #ff9800); /* Inverte degradê */
    transform: scale(1.15); /* Aumenta ligeiramente */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);


}





/* Melhorando a visualização da seção de subscrição */
.content {
    text-align: center;
    margin-top: 30px;
}

/* Ajustando a sobreposição da camada escura para melhor contraste */
.overlay {
    background: rgba(0, 0, 0, 0.6);
}

.cta-button-beggin {
    background: orange;
    color: black;
    padding: 50px;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 15px;
    display: inline-block;
}



.cta-button-beggin:hover {
    background: linear-gradient(45deg, #cba498, #ff9800); /* Inverte degradê */
    /* Inverte degradê */
    transform: scale(1.05);
    /* Aumenta ligeiramente */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;

}

.cta {
    margin-top: 15px;
    display: inline-block;
}


.price-badge {
    font-size: 25px;
    text-align: right;
    color: #cd7f32;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
}

/* Responsividade dos cards */
@media (max-width: 768px) {
    h1 {
        padding-bottom: 7%;
    }

    .pricing-container {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        color: #000;
        font-size: 25px;
        border-radius: 25px;
        padding: 0;
        margin-top: 10%;

    }

    .cta-button {
        display: flex;
        /* Centraliza o botão */
        font-size: 18px;
        text-align: center;
        color: #000;
        width: 95% auto;


        /* Ocupa quase toda a largura da tela */
        margin: 5px auto;
        padding: 0;
    }

    .cta-button-beggin {
        background: orange;
        color: black;
        padding: 10px 10px;
        font-size: 35px;
        text-decoration: none;
        border-radius: 25px;
        display: inline-block;
    }

    .price-badge {
        text-align: right;
        margin-top: 8px;
    }

    .menu-toggle {
        display: flex;

    }

    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.6);
        color: white;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0px 0px;
        z-index: 999;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.9);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        text-align: right;
        padding: 15px;
    }

    .nav-links.active {
        display: flex;
    }



}