:root {
    /* Definição de variáveis CSS para cores, fontes, etc. */
    --primary-color: #0e4bef;
    --secondary-color: #e94f96;
    --hover-color: #56c280;
    --text-color: #706f6f;
    --font-family: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    line-height: 1.2;
    font-family: var(--font-family);
}

a {
    text-decoration: none;
    color: var(--text-color);
}

/* Header Styles */
header[menu-inicio] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
}

.navigation-container[menu-inicio] {
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 1rem 0;
}

.navigation-link[menu-inicio] {
    font-size: 0.9375rem;
    color: var(--text-color);
    text-align: center;
    margin-right: 1rem;
    font-weight: 700;
}

/* Responsive Navigation */
@media screen and (min-width: 768px) {
    .navigation-link[menu-inicio] {
        font-size: 1rem;
    }
}

/* Footer Styles */
.footer[footer-0] {
    background-color: #272727;
    color: white;
}

.footer-container[footer-0] {
    display: flex;
    flex-direction: column;
    max-width: 90%;
    margin: 0 auto;
    padding: 2rem 0;
}

.footer-trademark[footer-0] {
    text-align: center;
    font-size: .875rem;
    padding: .5em 1em;
    background-color: #fff;
    color: var(--secondary-color);
}

/* Button Styles */
.button {
    font-weight: 600;
    font-size: .875rem;
    padding: .75rem 1rem;
    border: none;
    border-radius: 8px;
    outline: inherit;
    color: #fff;
    cursor: pointer;
    transition: all .3s ease-in-out;
    text-align: center;
    max-width: 280px;
    width: 100%;
    margin: 0 auto;
    background-color: var(--primary-color);
}

.button:hover {
    background-color: var(--hover-color);
}

.button.secondary {
    background-color: var(--secondary-color);
}

.button.secondary:hover {
    background-color: #a01f6d;
}

.button:disabled, .button:disabled:hover {
    cursor: not-allowed;
    background-color: #dadada;
    color: #fff;
}

@media screen and (min-width: 768px) {
    .button {
        font-size: 1rem;
    }
}

/* Estilo para o Cookie Consent Container */
#cookieConsentContainer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f1f1f1;
    text-align: center;
    padding: 10px;
    z-index: 1000; /* Assegura que o contêiner fique acima de outros elementos */
    box-shadow: 0 -2px 5px rgba(0,0,0,0.2); /* Opcional: sombra para destacar */
}


