:root {
    --default-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --heading-font: "Marcellus", sans-serif;
    --nav-font: "Marcellus", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: white;
    /* Background color for the entire website, including individual sections */
    --default-color: #222;
    /* Default color used for the majority of the text content across the entire website */
    /* Color for headings, subheadings and title throughout the website */
    /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
    --hashtag-name-color: #bccdd8;
    --alert-color: #d91f0a;
    /* Overlay Background */
    --overlay-background: #1c354c0e;
    --background-blue: #d1dee7;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes titleAnimation {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

#background-img {
    line-height: 1.6;
    min-height: 100vh;
    background-color: var(--background-blue);
    /*
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; */
}

#container-cookies {
    max-width: 1000px;
    margin: 30px auto;
    padding: 2rem;
}

#container-cookies h1, #container-cookies h2 {
    font-family: var(--nav-font);
    color: var(--nav-color);
}

#container-cookies p, ul, a {
    font-family: var(--default-font);
    color: var(--default-color);

}


.cookies-policy-container {
    background-color: rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-title {
    animation: titleAnimation 1s ease-out forwards;
}

.cookies-policy-container h1 {
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.3rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.cookies-policy-container h2 {
    color: var(--nav-color);
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

.cookies-policy-container i {
    color: var(--nav-color);
}

.card {
    background-color: #2c496426;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.cookies-policy-section {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list i {
    color: #2ecc71;
}

.cookies-policy-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.cookies-policy-footer .home-link {
    color: var(--background-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background-color: var(--nav-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-footer .home-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.policy-footer .home-link i {
    color: var(--background-color);

}

.clear-cookies-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 2rem auto;
    padding: 1rem 2rem;
    background: var(--nav-color);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.clear-cookies-btn:hover {
    background: var(--alert-color);
    color: var(--background-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.clear-cookies-btn i {
    color: var(--background-color);
    font-size: 15px;
}

/* Ensure sections animate in sequence */
.cookies-policy-section:nth-child(1) {
    animation-delay: 0.2s;
}

.cookies-policy-section:nth-child(2) {
    animation-delay: 0.4s;
}

.cookies-policy-section:nth-child(3) {
    animation-delay: 0.6s;
}

.card code {
    background-color: var(--overlay-background);
    color: var(--dark-color);
    padding: 4px;
    border-radius: 4px;
    font-family: "Courier New", monospace;
    font-weight: 700;
    font-size: 13px;
}

/* Responsividade */
@media (max-width: 1024px) {
    #container-cookies {
        max-width: 90%;
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    #container-cookies {
        max-width: 95%;
        padding: 1rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .card {
        padding: 1rem;
    }

    .feature-list li {
        font-size: 0.95rem;
    }

    .clear-cookies-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    #container-cookies {
        padding: 0.8rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    p {
        font-size: 0.8rem;

    }

    .feature-list li {
        font-size: 0.7rem;
    }

    .clear-cookies-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.2rem;
    }

    code {
        font-size: 0.7rem;
    }
}













/* PRIVACY POLICY */
/* PRIVACY POLICY */
/* PRIVACY POLICY */


@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateX(-20px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes titleAnimation {
    0% {
        transform: translateY(-20px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.img-privacy-policy {
    padding: 1rem;
}


#container-privacy {
    max-width: 1000px;
    margin: 30px auto;
    padding: 2rem;
}

#container-privacy h1, h2, h3, h4, h5 {
    font-family: var(--nav-font);
}

#container-privacy p, ul, a {
    font-family: var(--default-font);
}

.privacy-policy-container {
    background-color: rgba(255, 255, 255, 0.20);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.20);
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.animate-slide-in {
    animation: slideIn 0.8s ease-out forwards;
    opacity: 0;
}

.animate-title {
    animation: titleAnimation 1s ease-out forwards;
}

h1 {
    color: var(--nav-color);
    margin-bottom: 2rem;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
    color: var(--nav-color);
    margin: 1.5rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
}

h2 i {
    color: var(--nav-color);

}

section h2 i {
    font-size: 18px;
}

.card {
    background-color: #2c496426;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
}

.privacy-policy-section {
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.feature-list {
    list-style: none;
    margin: 1rem 0;
}

.feature-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list i {
    color: #2ecc71;
}

.policy-footer {
    text-align: center;
    margin-bottom: 1rem;
    padding-top: 1rem;
}

.policy-footer .home-link {
    color: var(--background-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    background-color: var(--nav-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-footer .home-link:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}


/* Ensure sections animate in sequence */
.privacy-policy-section:nth-child(1) {
    animation-delay: 0.2s;
}

.privacy-policy-section:nth-child(2) {
    animation-delay: 0.4s;
}

.privacy-policy-section:nth-child(3) {
    animation-delay: 0.6s;
}

.privacy-policy-section:nth-child(4) {
    animation-delay: 0.8s;
}

/* Estilo de atualização (data no rodapé) */
.privacy-policy-update-date {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: #777;
}

.privacy-policy-update-date p {
    font-size: 14px;
    color: var(--default-color);
}

/* Estilo de hover - E-mail em "Seus Direitos" */


.hover-email {
    text-decoration: none;
    color: #2c3e50;

}

.hover-email:hover {
    color: #0056b3;
    cursor: pointer;
    text-decoration: underline;
}

/* RESPONSIVIDADE */


@media (max-width: 1024px) {
    #container-privacy {
        max-width: 90%;
        padding: 1.5rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {


    #container-privacy {
        padding: 1.2rem;
    }

    .privacy-policy-container {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    .card {
        padding: 0.80rem;
    }

    .feature-list li {
        font-size: 0.9rem;
    }

    .home-link {
        font-size: 0.9rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 480px) {
    #container-privacy {
        max-width: 95%;
        padding: 1rem;
    }

    .privacy-policy-container {
        padding: 1rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.1rem;
    }

    .feature-list li {
        font-size: 0.65rem;
    }

    .home-link {
        font-size: 0.85rem;
        padding: 0.5rem 0.8rem;
    }

    #container-privacy p, ul, a {
        font-size: 0.8rem;

    }
}