body {
    padding: 0;
    margin: 0;
    min-height: 100vh;
    color: #FFFFFF;
    background: linear-gradient(135deg, #041923 0%, #0B1F2E 60%, #0F2434 100%);
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

/* Container principal */
.pag {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    box-shadow: 0 4px 24px 0 #0B1F2E44;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header com logo */
#headerpag header#logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #0B1F2E 60%, #041923 100%);
    border-radius: 12px;
    height: 180px;
    margin-bottom: 16px;
    box-shadow: 0 2px 16px 0 #C3D4E533;
    gap: 32px;
}

.logo-img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 2px 8px #0B1F2E88);
    background: transparent;
}

.logo-text {
    color: #FFFFFF;
    font-size: 2.5rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #C3D4E5;
    font-weight: bold;
    line-height: 1.1;
    text-align: left;
}

#headerpag h1 {
    color: #FFFFFF;
    font-size: 2.8rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 8px #C3D4E5;
    margin: 0;
}

/* Menu */
#menuheader {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

#menuheader button {
    background: none;
    border: 2px solid #C3D4E5;
    color: #FFFFFF;
    padding: 10px 28px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 1px 4px 0 #0B1F2E22;
}

#menuheader button:hover {
    background: #C3D4E5;
    color: #041923;
    border-color: #FFFFFF;
    box-shadow: 0 2px 12px 0 #C3D4E577;
}

/* Conteúdo */
#conteudo {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid #C3D4E5;
    border-radius: 8px;
    padding: 24px;
    color: #FFFFFF;
    box-shadow: 0 1px 8px 0 #0B1F2E22;
}

#conteudo p {
    margin-bottom: 1.2em;
    line-height: 1.7;
    color: #FFFFFF;
}

/* Responsivo */
@media (max-width: 700px) {
    .pag {
        padding: 12px 4px;
    }

    #headerpag header#logo {
        flex-direction: column;
        height: auto;
        gap: 10px;
        padding: 12px 0;
    }

    .logo-img {
        height: 70px;
    }

    .logo-text {
        font-size: 1.2rem;
        text-align: center;
    }

    #headerpag h1 {
        font-size: 1.5rem;
    }

    #menuheader button {
        padding: 8px 10px;
        font-size: 1rem;
    }
}

/*Style para a tag de link 'a' para combinar com a página*/
a {
    color: #C3D4E5;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
}

a:hover {
    color: #FFFFFF;
    text-decoration: underline;
}


.insta_container {
    display: flex;
    justify-content: center;
    gap: 60px; /* espaço entre Instagram e TikTok */
    margin-top: 40px;
    flex-wrap: wrap; /* se ficar pequeno na tela, quebra em duas linhas */
}

.link_social {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #7e7d7d;
    font-weight: bold;
    font-size: 16px;
    transition: color 0.2s;
}

.link_social:hover {
    color: #555;
}

.img_social {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.img_social:hover {
    transform: scale(1.1);
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
}



/*Estilo para botão de comprar*/
.comprar {
    background: #C3D4E5;
    color: #041923;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition:
        background 0.2s,
        color 0.2s,
        box-shadow 0.2s;
    box-shadow: 0 1px 4px 0 #0B1F2E22;
}

.comprar:hover {
    background: #FFFFFF;
    color: #041923;
    box-shadow: 0 2px 12px 0 #C3D4E577;
}

.paragrafo {
    text-indent: 1.5em;
    line-height: 1.6;
    margin-bottom: 1.2em;
    color: #FFFFFF;
    font-size: 1.1rem;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.texto {
    color: #C3D4E5;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.2em;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #041923;
    color: #fff;
    padding: 20px;
    font-size: 14px;
    display: none;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    text-align: center;
}

.cookie-banner a {
    color: #C3D4E5;
    text-decoration: underline;
    font-weight: bold;
}

.cookie-actions {
    margin-top: 10px;
}

.cookie-actions button {
    margin: 0 10px;
    padding: 8px 18px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.2s ease;
}

.cookie-actions button:first-child {
    background: #C3D4E5;
    color: #041923;
}

.cookie-actions button:last-child {
    background: transparent;
    border: 1px solid #C3D4E5;
    color: #C3D4E5;
}

.cookie-actions button:hover {
    opacity: 0.85;
}