@import url('https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');

html,
body {
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
}

header {
    position: fixed;
    background-color: var(--light);
    width: 100%;
    z-index: 10;
}

:root {
    --brand: #08C55B;
    --dark: #161616;
    --light: #ffffff;
    --light-01: #EAEAEA;
    --light-02: #808080;
    --marginSection: 9rem;
    --border: 1px solid var(--light-01);
}

* {
    max-width: 100%;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    font-family: "Rubik", sans-serif;
    padding: 0;
    border: 0;
    margin: 0;
}

.bradcrumbList {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    color: var(--light-02);
}

.bradcrumbItem {
    display: flex;
    gap: 0.5rem;
}

h1 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 2rem;
}

h2 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 1.25rem;
}

h3 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 1.55rem;
}

h4 {
    font-family: "Rubik", sans-serif;
    font-weight: 400;
    font-size: 1.2rem;
}

a {
    font-family: "Rubik", sans-serif;
    text-decoration: none;
    color: var(--brand);
    cursor: pointer;
    margin: 0;
    padding: 0;
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    transition: ease 0.3s;
}

a p:hover {
    color: var(--dark);
    text-decoration: underline 2px var(--brand);
    transition: ease 0.3s;
    text-underline-offset: 4px;
}

p {
    font-size: 1rem;
    line-height: 150%;
    transition: ease 0.3s;
}

button {
    color: var(--dark);
    text-decoration: none;
}

.float-buttons-in-the-corner-page {
    position: fixed;

    bottom: 20px;
    right: 20px;

    display: flex;
    gap: 20px;

    align-items: center;
}

.float-buttons-in-the-corner-page img {
    width: 3rem;
    height: auto;
}


/* Header */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 4.5rem;
    border-bottom: var(--border);
}

header a img {
    display: block;
}

.headerLogoMenuMobile {
    display: none;
}

.headerLogoMenu {
    display: flex;
    height: 4.5rem;
}

.logotipo {
    display: flex;
    align-items: center;
    height: auto;
    margin-right: calc(2rem - 1px);
    transition: transform ease 0.3s;
}

.logotipo:hover {
    display: flex;
    align-items: center;
    height: auto;
    margin-right: calc(2rem - 1px);
    transform: scale(1.1);
}

.menuHeader {
    display: flex;
    gap: 2.5rem;
    padding: 0 2.5rem;
    justify-content: center;
    align-items: center;
    border-right: var(--border);
    border-left: var(--border);
}

.menuHeader a {
    color: var(--dark);
    position: relative;
    text-decoration: none;
    transition: all 0.2s ease;
}

.menuHeader a:hover {
    color: var(--brand);
}

.menuHeader a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--brand);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.menuHeader a:hover::after {
    transform: scaleX(1);
}


.menuHeader a.ativo {
    color: var(--brand);
}

.menuHeader a.ativo::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background-color: var(--brand);
}

/* Estilo existente */

.buttonFlagBooking {
    position: absolute;
    right: 32px;
    display: flex;
    gap: 1rempx;
    align-items: center;

}

.flagsSelect {
    position: relative;
    display: block;
    cursor: pointer;
    padding: 1rem;
    border-radius: .5rem;
    transition: background-color ease 0.2s;
}

.flagsSelect img {
    margin-left: 0.2rem;
    vertical-align: middle;
}

.flagsSelect:hover {
    background-color: var(--light-01);
}

.buttonFlagBooking a {
    color: var(--dark);
}

/* Dropdown (inicialmente escondido) */
.flagsDropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-width: 150px;
}

.languageSelector.active .flagsDropdown {
    display: block;
}

/* Estilo das opções */
.flagOption {
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s;
}

.flagOption:hover {
    background: #f5f5f5;
}

/* Animação do ícone */
.flagsSelect .dropdown-arrow {
    transition: transform 0.3s;
}

.flagsSelect.active .dropdown-arrow {
    transform: rotate(180deg);
}

.buttonHeader {
    right: 2rem;
    font-size: 1rem;
    background-color: var(--brand);
    color: var(--dark);
    padding: 14px 12px;
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.buttonHeader:hover {
    padding: 14px 18px;
}

/* Footer */

footer {
    padding: 4rem 9rem;
}

.logoPhrase p {
    margin-top: 2rem;
}

.footerLogo {
    display: flex;
    justify-content: space-between;
    margin-bottom: 120px;
}

.footerMenu {
    display: flex;
    gap: 2rem;
}

.footerMenu a {
    color: var(--dark);
    transition: color ease 0.3s;
}

.footerMenu a:hover {
    color: var(--brand);
}

.graphBrandFooter {
    position: absolute;
    width: 100%;
    height: auto;
    bottom: -500px;
}

.legalFooter {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: var(--border);
}

.legalFooter div {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}


/* intro */

.titleHomeMobile {
    display: none;
}

.intro {
    height: 100vh;
    padding-left: 72px;
    border-left: var(--border);
    margin-left: var(--marginSection);
}

.titleHome {
    position: absolute;
    transform: translate(-50%, -65%);
    top: 50%;
    left: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    white-space: nowrap;
}

.titleHome img {
    height: 25rem;
    width: auto;
    transition: transform ease 0.3s;
}

.titleHome img:hover {
    height: 25rem;
    width: auto;
    transform: scale(1.1);
}

.casesIntro {
    position: absolute;
    bottom: 2rem;
    right: 9rem;
    width: 40rem;
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: var(--border);
}

.casesIntro p {
    font-size: 0.92rem;
    line-height: 150%;
}

.casesIntroItem {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 20rem;
}

.casesIntroItem a:hover {
    color: var(--dark);
    text-decoration: underline 2px var(--brand);
    transition: ease 0.3s;
    text-underline-offset: 4px;
}


@media screen and (max-width: 1350px) {

    .intro {
        border-left: none;
    }

    .casesIntro {
        display: none;
    }
}

.setaParaBaixoIntroPage {
    position: absolute;
    bottom: 80px;
    left: 7.25rem;
}

.titleConsultoria {
    position: absolute;
    bottom: 4rem;
    width: 20rem;
}

.titleConsultoriaFrase {
    background-color: var(--brand);
    border-radius: 1.25rem 0;
    color: var(--light);
    font-size: 1rem;
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: .5rem;
    padding: 1rem;
}



/* Sections */

.introSection {
    margin-top: 5rem;
    margin-left: var(--marginSection);
    margin-bottom: 5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 40rem;
}

.introSection span {
    color: var(--brand);
}

.sectionStyle01 {
    border-top: var(--border);
}

/* Depoimentos */

.testimonialsList {
    display: flex;
    gap: 2rem;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    margin-bottom: 9rem;
}

.testimonialsItem {
    padding: 4rem;
    min-height: 300px;
    width: 40rem;
    border: var(--border);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(10px);
    transition: border-color ease 0.3s;
}

.testimonialsItem:hover {
    border-color: var(--brand);
}

.graphBgTestimonials {
    position: absolute;
    z-index: -1;
    width: 100%;
    height: auto;
}

.testimonialsItem p {
    color: var(--dark);
}

.nameTestimonialList {
    border-top: 1px solid var(--brand);
    padding-top: 2.5rem;
    margin-top: 2.5rem;
}

.nameTestimonialList p {
    padding-bottom: 0;
}

.slick-track {
    display: flex !important;
    align-items: stretch;
    gap: 2rem;
}

.slick-slider {
    width: 100%;
}

.testimonialsItem {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.slick-prev-depoimentos {
    position: absolute;
    top: -50;
    right: 144px;
}

.slick-next-depoimentos {
    position: absolute;
    top: -50;
    right: 214px;
}

.testimonialsList button {
    padding: 0.6rem;
    width: 3rem;
    height: 3rem;
    transition: ease 0.3s;
}

.testimonialsList button:hover {
    padding: 0.6rem;
    transform: scale(1.1);
    transition: ease 0.3s;
}

.testimonial {
    overflow: hidden;
    max-height: 7.8em;
    transition: max-height 0.3s ease;
}

.testimonial.expanded {
    max-height: 1000px;
}

.toggle-button {
    color: var(--brand);
    cursor: pointer;
    margin-top: 0.5em;
    display: inline-block;
}

/* Serviços Home */

.serviceList {
    margin-left: var(--marginSection);
    display: flex;
    flex-direction: column;
    width: 100%;
}

.serviceSection {
    position: relative;
    padding-bottom: 9rem;
}

.serviceList a {
    color: var(--dark);
    display: flex;
    gap: 1rem;
    padding: 2rem 0;
    width: calc(100% - 598px);
    border-top: var(--border);
    cursor: pointer;
    transition: 0.3s ease;
}

.serviceList a:hover {
    background-color: var(--light-01);
    gap: 2rem;
    padding-left: 2rem;
    transition: 0.5s ease;
}

.serviceList li p {
    font-size: 1.25rem;
}

.imgServices {
    width: 309px;
    height: auto;
    margin-top: 140px;
}

.rightServices {
    border-left: var(--border);
    border-right: var(--border);
    position: absolute;
    right: 9rem;
    top: 0;
    height: 100%;
}

/* Blog Post na Home */

.ultimos-posts-home {
    border-top: var(--border);
}

.grid-cards {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 9rem;
    padding-left: 9rem;
    padding-right: 9rem;
}

.card-post-home {
    border-radius: 1rem;
    border: var(--border);
    min-width: 280px;
    max-width: 400px;
    height: 300px;
}

.card-post-home img {
    width: 100%;
    height: 8rem;
    object-fit: cover;
    border-radius: 1rem 1rem 0rem 0rem;
}

.titulo {
    color: var(--dark);
    margin-bottom: 1rem;
}

.card-post-home-content {
    padding: 1.25rem;
}

.botaoBlog {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 9rem;
}

/* Página de Serviços */

.introServices {
    width: fit-content;
    padding: 8rem 5rem;
    height: 320px;
}

.arrowDownServices {
    position: absolute;
    left: 7.25rem;
    top: 18.25rem;
}

.phraseIntroServices {
    padding: 5rem;
    border-left: var(--border);
    margin-left: 9rem;
}

.phraseIntroServices h2 {
    width: 37.5rem;
}

.meetOurServices {
    margin-top: 5rem;
    color: var(--brand);
}

/* Página de Serviços - Lista */

.serviceListInServicePage {
    padding: 5rem;
    border-left: var(--border);
    margin-left: 9rem;
}

.serviceItem {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 5rem;
    border-bottom: var(--border);
    padding-bottom: 5rem;
}

.serviceItem a {
    color: var(--dark);
    padding: 0.5rem 2rem;
    background-color: var(--brand);
    border-radius: 100px;
    width: fit-content;
}

.serviceItem a:hover {
    transform: scale(1.03);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}

.serviceItem a:active {
    transform: scale(1);
    box-shadow: unset;
}

.serviceItemDots {
    display: flex;
    gap: 2.5rem;
}

/* Contato */

button {
    font-size: 1rem;
    background-color: var(--brand);
    padding: 14px 12px;
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.2s ease;
}

button:hover {
    padding: 14px 18px;
}

form {
    padding-top: 5rem;
    width: 32rem;
    display: flex;
    flex-direction: column;
    gap: .15rem;
}

input {
    border-bottom: 1px solid var(--brand);
    width: 40rem;
    padding-bottom: 1rem;
    font-size: 1.25rem;
}

input:focus {
    outline: none;
}

input::placeholder {
    color: var(--light-02);
}

select {
    border-bottom: 1px solid var(--brand);
    outline: none;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 1rem;
    transition: all .3s ease;

    appearance: none;
    /* para a maioria dos browsers */
    -webkit-appearance: none;
    /* para Safari/Chrome */
    -moz-appearance: none;
    /* para Firefox */
    background-image: url('img/caret-down.svg');
    /* seta personalizada */
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
    /* espaço para a seta */
}

select:hover {
    background-color: var(--light-01);
}

select::placeholder {
    color: var(--light-02);
}

textarea {
    border-bottom: 1px solid var(--brand);
    outline: none;
    font-size: 1.25rem;
    padding: 1rem;
    transition: all .3s ease;
}

form button:hover {
    transform: scale(1.1);
}

.contactPageFlex {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
}

.contactPageFlex h2 {
    width: 220px;
}

.cardContactBook {
    display: flex;
    flex-direction: column;
    height: fit-content;
    justify-content: center;
    padding: 3rem;
    gap: 1.5rem;
    background-color: var(--light);
    border: var(--border);
    border-radius: 1rem;
}

@media screen and (max-width: 1375px) {

    .contactPageFlex {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
    }

    .cardContactBook {
        display: flex;
        flex-direction: column;
        width: 220px;
        height: fit-content;
        justify-content: center;
        padding: 2rem;
        margin-right: 2rem;
        gap: 2rem;
        /* centralizar se necessário */
        background-color: var(--light);
        border: var(--border);
        border-radius: 1rem;
    }
}



.cardContactBook a {
    display: block;
    width: fit-content;
    right: 2rem;
    font-size: 1rem;
    background-color: var(--brand);
    color: var(--dark);
    padding: 14px 12px;
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cardContactBook a:hover {
    padding: 14px 18px;
}

/* Página de Cases */

.graphismcasepage {
    position: absolute;
    top: 12.75rem;
    left: 0;
}

.infosCasesBellowTittle {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.dateCasePost {
    display: inline-flex;
    gap: 0.2rem;
    color: var(--light-02);
}

.clientCase {
    border: 1px solid var(--brand);
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 100px;
}

.titleAndInfos {
    margin-bottom: 2rem;
}

.casesListInCasePage {
    padding: 5rem 0;
    border-left: var(--border);
    margin-left: 9rem;
}

.imageHeroCase {
    width: 100%;
    margin-bottom: 2rem;
}

.imageHeroCase img {
    width: 100%;
    height: auto;
    border-radius: 50px 0 50px 0;
    margin-bottom: 0.75rem;
}

.imageHeroCase span {
    color: var(--light-02);
    font-size: 0.9rem;
}

.caseItem {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    border-bottom: var(--border);
    padding-bottom: 5rem;
    margin-left: 5rem;
    margin-right: 5rem;
}

.caseContent {
    gap: 1.5rem;
}

.caseContent a {
    color: var(--dark);
    padding: 0.5rem 2rem;
    background-color: var(--brand);
    border-radius: 100px;
    width: fit-content;
}

.caseContent a:hover {
    transform: scale(1.03);
    box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}

.caseItem img {
    width: 32rem;
    border-radius: 40px 0 40px 0;
    object-fit: contain;
}

.caseContent h2 {
    width: 32rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    line-height: 140%;
    font-size: 1.5rem;
}

.contentTextPage {
    width: 720px;
    margin: 0 auto 0;
    padding-top: 8rem;
}

.contentTextPage h1 {
    margin-bottom: 2rem;
}

.textareaCaseInside {
    margin-bottom: 8rem;
}

/* Home Blog */

.cardBlogHome {
    margin: 5rem 0 5rem;
    width: 620px;
}

.category-filter a {
    display: inline-flex;
    border: 1px solid var(--brand);
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 100px;
    color: var(--dark);
}

.category-filter a:hover {
    background-color: var(--brand);
}

.category-filter a.active {
    background-color: var(--brand);
    color: white;
    /* ou qualquer cor que combine */
}

.category-filter {
    margin-top: 2rem;
    display: flex;
    gap: 0.5rem;
}

/* Card Post */

.post-category {
    display: inline-flex;
    border: 1px solid var(--brand);
    padding: 8px 12px;
    white-space: nowrap;
    border-radius: 100px;
    margin-bottom: 1rem;
    color: var(--dark) !important;
}

.post-image img {
    height: 320px;
    width: 620px;
    object-fit: cover;
    border-radius: 32px 0 32px 0;
    margin-bottom: 1rem;
}

.cardBlogHome h3 {
    margin-bottom: 1rem;
}

.nenhumPostEncontrado {
    padding: 5rem 0 5rem;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: 1rem;
}

.cardBlogHome p {
    color: var(--light-02);
}

.post-release {
    margin-bottom: 1rem;
}

/* Categoria Slide */

.category-filter {
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}

.category-scroll a {
    display: inline-block;
    margin-right: 1rem;
    white-space: nowrap;
    border-radius: 999px;
    text-decoration: none;
    transition: background-color 0.2s;
}

.category-scroll a.active {
    color: var(--light);
}

.category-scroll a:hover {
    background-color: var(--brand);
}



/* Blog Post */

@media (max-width: 1300px) {

    .header-blog-single {
        font-size: 1.5rem;
    }
}

.single-post {
    padding-top: 8rem;
    padding-left: 8rem;
}

.sectionBlog {
    border-top: var(--border);
    padding-left: 9rem;
    padding-right: 9rem;
    padding-top: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 9rem;
}

.sectionBlog h2 {
    width: fit-content;
}

.post-thumbnail img {
    max-width: 1080px;
    height: auto;
    object-fit: cover;
    border-radius: 32px 0 32px 0;
    border: var(--border);
}

.blogPostText {
    border-top: var(--border);
    padding: 5rem 9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.entry-content {
    padding: 2rem 0rem;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto;
}

.entry-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.entry-content strong {
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin: 2rem 0 1rem;
    color: var(--dark);
}

.entry-content h1 {
    font-size: 2rem;
}

.entry-content h2 {
    font-size: 1.75rem;
}

.entry-content h3 {
    font-size: 1.5rem;
}

.entry-content h4 {
    font-size: 1.25rem;
}

.entry-content h5 {
    font-size: 1.1rem;
}

.entry-content h6 {
    font-size: 1rem;
}

.entry-content a {
    color: var(--brand);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.entry-content a:hover {
    color: var(--dark);
}

.entry-content ul,
.entry-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.entry-content ul {
    list-style: disc;
    padding-left: 0;
}

.entry-content ul li {
    position: relative;
    padding-left: 1.5rem;
}

.entry-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7em;
    width: 10px;
    height: 10px;
    background-image: url('img/retangle-dot.svg');
    background-size: contain;
    background-repeat: no-repeat;
}

.entry-content li {
    margin-bottom: 0.5rem;
}

.entry-content blockquote {
    border-left: 4px solid var(--brand);
    padding-left: 1rem;
    font-style: italic;
    color: var(--light-02);
    margin: 1.5rem 0;
}

.entry-content code {
    background-color: var(--light-01);
    padding: 0.2rem 0.4rem;
    font-family: monospace;
    border-radius: 4px;
    font-size: 0.9rem;
}

.entry-content pre {
    background-color: var(--light-01);
    padding: 1rem;
    overflow-x: auto;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-family: monospace;
}

.entry-content img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 2rem auto;
    border-radius: 8px;
}

.entry-content figure {
    margin: 2rem 0;
    text-align: center;
}

.entry-content figcaption {
    font-size: 0.9rem;
    color: var(--light-02);
    margin-top: 0.5rem;
}

.entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.entry-content th,
.entry-content td {
    border: var(--border);
    padding: 0.75rem;
    text-align: left;
}

.entry-content hr {
    border: none;
    border-top: var(--border);
    margin: 2rem 0;
}

/* Gutenberg-specific classes */
.wp-block-quote {
    font-style: italic;
    color: var(--light-02);
    border-left: 4px solid var(--brand);
    padding-left: 1rem;
    margin: 1.5rem 0;
}

.wp-block-image img {
    margin: 1.5rem auto;
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.wp-block-button a {
    display: inline-block;
    background-color: var(--brand);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.wp-block-button a:hover {
    background-color: #06a54b;
}

.wp-caption-text {
    color: var(--light-02) !important;
    transform: translateY(-1.2rem);
    text-align: center;
}

article {
    margin: 0;
}

/* Página Sobre */
.graphic-section {
    border-top: var(--border);
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
}

.graphic-section img {
    max-width: 1200px;
    height: auto;
}

/* Linha do Tempo */
.timeline-container {
    position: relative;
    padding: .015rem 0;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    width: 2px;
    height: 100%;
    background: var(--brand);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
    width: 50%;
}

.timeline-item.odd {
    left: 5%;
    justify-content: flex-end;
    padding-right: 0;
}

.timeline-item.even {
    left: 45%;
    padding-left: 0;
}

.timeline-content {
    background: var(--light);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: var(--border);
    width: 100%;
    max-width: 500px;
}

.timeline-content h4 {
    margin-bottom: 2rem;
    color: var(--brand);
}

/* Valores */
.valores-grid {
    margin-left: 9rem;
    margin-right: 9rem;
    margin-bottom: 5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.valor-card {
    padding: 2rem;
    border: var(--border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.valor-card:hover {
    border-color: var(--brand);
    transform: translateY(-5px);
}

@media (max-width: 900px) {
    .timeline-container::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding: 0 20px 0 40px !important;
        justify-content: flex-start !important;
    }


    /* Valores */
    .valores-grid {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }

    .valor-card {
        padding: 2rem;
        border: var(--border);
        border-radius: 16px;
        transition: all 0.3s ease;
    }

    .valores-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1120px) {

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 2rem;
        height: 4.5rem;
        border-bottom: var(--border);
    }

    .menuHide {
        display: none;
    }

    .headerLogoMenu {
        display: none;
    }

    .buttonHeader {
        display: none;
    }

    /*Menu Header Mobile*/

    .headerLogoMenuMobile {
        display: flex;
        justify-content: space-between;
        width: 100%;
        position: fixed;
        top: 0;
        padding: 1.25rem;
        background-color: var(--light);
        border-bottom: 1px solid var(--light-01);
        z-index: 99;
    }

    .flagsSelect {
        position: relative;
        display: block;
        cursor: pointer;
        padding: 0rem;
        border-radius: .5rem;
        transition: background-color ease 0.2s;
    }

    .flagsSelect img {
        vertical-align: middle;
    }

    .flagsSelect:hover {
        all: unset;
    }

    .menuFlagHamburguer {
        display: flex;
        align-items: center;
        gap: 4rem;
    }

    * {
        box-sizing: border-box;
        list-style: none;
        text-decoration: none;
        font-family: "Rubik", sans-serif;
        padding: 0;
        border: 0;
        margin: 0;
    }

    .menuFloat {
        opacity: 1;
        visibility: hidden;
        transform: translateX(100%);
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        position: absolute;
        left: 0;
        background-color: var(--light);
        top: 73px;
        width: 100%;
        height: 100vh;
    }

    .menuFloat.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .menuFloat a {
        padding: 1.5rem 1rem 1.5rem;
        border-bottom: 1px solid var(--light-01);
    }

    .menuHeaderMobile {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .buttonHeaderMenuMobile {
        background-color: var(--brand);
        border-radius: 100px;
        color: var(--dark);
        text-align: center;
        margin: 2rem auto 0;
        width: fit-content;
    }

    @media (hover: none) {
        *:hover {
            background: transparent !important;
            color: inherit !important;
            box-shadow: none !important;
        }
    }

    :root {
        --brand: #08C55B;
        --dark: #161616;
        --light: #ffffff;
        --light-01: #EAEAEA;
        --light-02: #808080;
        --marginSection: 1rem;
        --border: 1px solid var(--light-01);
    }

    h1 {
        font-weight: 400;
        font-size: 2em;
        letter-spacing: -0.01em;
    }

    .title-page-construction {
        max-width: 400px;
        margin-left: 0px;
    }

    .cap-img {
        width: 60%;
        max-width: 300px;
        height: auto;
        position: absolute;
        transform: translate(-50%, -50%);
        top: 70%;
        left: 50%;
    }

    .vector-bg-img {
        top: 70%;
        height: 100px;
        width: auto;
        max-width: none;
    }

    /* intro */

    .intro {
        display: block;
        height: auto;
        padding-left: 0px;
        border-left: none;
        margin-left: 32px;
        margin-right: 32px;
    }

    .hideMobile {
        display: none;
    }

    .introHomeMobile {
        margin-bottom: 12rem;
    }

    .titleHome {
        display: none;
    }

    .titleHomeMobile {
        display: block;
        position: relative;
        height: fit-content;
    }

    .titleHomeMobilePhrase {
        padding: 8rem 1.5rem 3.5rem;
        border-bottom: var(--border);
    }

    .titleHomeMobile span {
        color: var(--brand);
    }

    .titleHomeMobilePhrase h1 {
        font-size: 2rem;
    }

    .imageIntroMobile img {
        position: absolute;
        top: 10.55rem;
        right: 1.5rem;
        height: auto;
        width: 180px;
        z-index: 10;
    }

    .titleConsultoriaMobile {
        padding: 4rem 1.5rem 1.5rem;

    }

    .titleConsultoriaMobile h2 {
        background-color: var(--brand);
        border-radius: 15px 0 15px 0;
        padding: 2rem;
        font-size: 1rem;
        max-width: 412;
        color: var(--light);
        line-height: 135%;
    }

    .casesIntroMobile {
        display: flex;
        padding: 0 1.5rem;
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;

    }

    .casesIntroItemMobile {
        max-width: 412px;
        border: var(--border);
        border-radius: 15px;
        padding: 1.5rem;
    }

    .casesIntroItemMobile p {
        margin-bottom: 0.5rem;
    }

    .casesIntro {
        display: none;
    }

    .setaParaBaixoIntroPage {
        display: none;
    }

    .titleConsultoria {
        top: 450px;
        bottom: unset;
        width: 20rem;
        margin-bottom: 2.5rem;
    }

    .titleConsultoriaFrase {
        color: var(--light);
        font-size: 1rem;
        position: relative;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        padding: 1.5rem;
        padding-right: 1.5rem;
    }

    /* Sections */

    .introSection {
        margin-top: 2rem;
        margin-left: var(--marginSection);
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 16rem;
    }

    .introSection span {
        color: var(--brand);
    }

    .sectionStyle01 {
        margin-top: 4rem;
        border-top: var(--border);
    }

    /* Depoimentos */

    .testimonialsList {
        display: flex;
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
        margin-bottom: 4rem;
    }

    .testimonialsItem {
        padding: 1.5rem;
    }

    .graphBgTestimonials {
        position: absolute;
        z-index: -1;
        width: auto;
        height: 50px;
    }

    .slick-track {
        display: flex !important;
        align-items: stretch;
        gap: 2rem;
    }

    .testimonialsItem p {
        width: 220px;
    }

    .slick-slider {
        width: 100%;
    }

    .testimonialsItem {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .slick-prev-depoimentos {
        position: absolute;
        top: -25;
        right: 16px;
    }

    .slick-next-depoimentos {
        position: absolute;
        top: -25;
        right: 72px;
    }

    .testimonialsList button {
        padding: 0.6rem;
        width: 3rem;
        height: 3rem;
        transition: ease 0.3s;
    }

    .testimonialsList button:hover {
        padding: 0.6rem;
        transform: scale(1.1);
        transition: ease 0.3s;
    }

    /* Serviços Home */

    .serviceList {
        margin-left: 0;
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .serviceSection {
        position: relative;
        padding-bottom: 2.5rem;
    }

    .serviceList a {
        display: flex;
        gap: 1rem;
        padding: 2rem 1rem;
        width: calc(100%);
        border-top: var(--border);
        cursor: pointer;
        transition: 0.3s ease;
    }

    .serviceList a:hover {
        display: flex;
        gap: 1rem;
        padding: 2rem 1rem;
        width: calc(100%);
        border-top: var(--border);
        cursor: pointer;
        transition: 0.3s ease;
    }

    .serviceList a p {
        font-size: 1.25rem;
    }

    .imgServices {
        display: none;
        width: auto;
        height: auto;
        margin-top: 140px;
    }

    .rightServices {
        display: none;
        border-left: var(--border);
        border-right: var(--border);
        position: absolute;
        right: 9rem;
        top: 0;
        height: 100%;
    }

    /* Blog Post na Home */

    .ultimos-posts-home {
        border-top: var(--border);
    }

    .grid-cards {
        padding: 2rem;
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-bottom: 2rem;
        gap: 2rem;
    }

    .card-post-home {
        border-radius: 1rem;
        border: var(--border);
        height: fit-content;
    }

    .card-post-home img {
        width: 100%;
        height: 8rem;
        object-fit: cover;
    }

    .titulo {
        color: var(--dark);
        margin-bottom: 1rem;
    }

    .card-post-home-content {
        padding: 1.25rem;
    }

    .botaoBlog {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 2.5rem;
    }

    /* Footer */

    footer {
        padding: 2rem 1rem;
    }

    .logoPhrase p {
        margin-top: 2rem;
    }

    .footerLogo {
        display: flex;
        justify-content: space-between;
        margin-bottom: 120px;
        flex-direction: column;
        gap: 80px;
    }

    .footerMenu {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }

    .footerMenu a {
        color: var(--dark);
    }

    .graphBrandFooter {
        position: absolute;
        width: 100%;
        height: auto;
        bottom: -500px;
    }

    .legalFooter {
        display: flex;
        gap: 80px;
        flex-direction: column;
        justify-content: space-between;
        padding-top: 2rem;
        border-top: var(--border);
    }

    .legalFooter div {
        display: flex;
        gap: 2rem;
    }

    /* Página de Serviços */

    .introServices {
        padding: 8rem 0rem 2rem;
        height: auto;
        position: relative;
    }

    .introServices h1 {
        font-size: 2rem;
    }

    .arrowDownServices {
        display: none;
    }

    .phraseIntroServices {
        padding: 2rem;
        border-left: none;
        margin-left: 0;
    }

    .phraseIntroServices h2 {
        width: 100%;
    }

    .meetOurServices {
        margin-top: 2.5rem;
        color: var(--brand);
    }

    /* Página de Serviços - Lista */

    .serviceListInServicePage {
        padding: 2.5rem;
        border-left: 0;
        margin-left: 0;
    }

    .serviceItem {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
        border-bottom: var(--border);
        padding-bottom: 2.5rem;

    }

    .serviceItemDots {
        display: flex;
        align-items: start;
        gap: .75rem;
    }

    .serviceItemDots img {
        display: none;
    }

    /* Página de Cases */

    /* Página de Cases */

    .contentTextPage {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .graphismcasepage {
        display: none;
    }

    .infosCasesBellowTittle {
        display: flex;
        flex-wrap: wrap;
        align-items: start;
        gap: 0.6rem;
    }

    .dateCasePost {
        display: inline-flex;
        gap: 0.3rem;
        color: var(--light-02);
    }

    .dateCasePost p {
        font-size: 14px;
    }


    .clientCase {
        border: 1px solid var(--brand);
        padding: 8px 12px;
        white-space: nowrap;
        border-radius: 100px;
    }

    .clientCase {
        font-size: 13px;
    }

    .titleAndInfos {
        margin-bottom: 2rem;
    }

    .casesListInCasePage {
        padding: 2rem 0;
        border-left: var(--border);
        margin-left: 0rem;
    }

    .imageHeroCase {
        width: 100%;
        margin-bottom: 2rem;
    }

    .imageHeroCase img {
        width: 100%;
        height: auto;
        border-radius: 30px 0 30px 0;
        margin-bottom: 0.75rem;
    }

    .imageHeroCase span {
        color: var(--light-02);
        font-size: 0.9rem;
    }

    .caseItem {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        margin-bottom: 5rem;
        border-bottom: var(--border);
        padding-bottom: 5rem;
        margin-left: 2rem;
        margin-right: 2rem;

    }

    .caseContent {
        gap: 1.5rem;
    }

    .caseItem img {
        border-radius: 16px 0 16px 0;
        object-fit: contain;
    }

    .caseContent h2 {
        margin-bottom: 1rem;
    }

    .contentTextPage {
        margin: 0 auto 0;
        padding-top: 8rem;
    }

    .contentTextPage h1 {
        margin-bottom: 2rem;
    }

    .textareaCaseInside {
        margin-bottom: 8rem;
    }

    /* Home Blog */

    .cardBlogHome {
        margin: 2rem 0 3rem;
        width: 100%;
    }

    .category-filter a {
        display: inline-flex;
        border: 1px solid var(--brand);
        padding: 8px 12px;
        white-space: nowrap;
        border-radius: 100px;
        color: var(--dark);
    }

    .category-filter a:hover {
        background-color: var(--brand);
    }

    .category-filter a.active {
        background-color: var(--brand);
        color: white;
        /* ou qualquer cor que combine */
    }

    .category-filter {
        margin-top: 2rem;
        display: flex;
        gap: 0.5rem;
    }

    /* Card Post */

    .post-category {
        display: inline-flex;
        border: 1px solid var(--brand);
        padding: 8px 12px;
        white-space: nowrap;
        border-radius: 100px;
        margin-bottom: .5rem;
    }

    .post-image img {
        height: 120px;
        width: 620px;
        object-fit: cover;
        border-radius: 16px 0 16px 0;
        margin-bottom: 1rem;
    }

    .cardBlogHome h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }

    .nenhumPostEncontrado {
        padding: 5rem 0 5rem;
    }

    .post-meta {
        display: flex;
        align-items: center;
        gap: .5rem;
        margin-bottom: 1rem;
    }

    .cardBlogHome p {
        color: var(--light-02);
    }

    .post-release {
        margin-bottom: 1rem;
    }

    /* Categoria Slide */

    .category-filter {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 1.5rem;
    }

    .category-scroll a {
        display: inline-block;
        margin-right: 1rem;
        white-space: nowrap;
        border-radius: 999px;
        text-decoration: none;
        transition: background-color 0.2s;
    }

    /* Blog Post */

    .single-post {
        padding-top: 2rem;
        padding-left: 2rem;
    }

    .sectionBlog {
        border-top: var(--border);
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 2.5rem;
    }

    .post-thumbnail img {
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 32px 0 32px 0;
    }

    .blogPostText {
        border-top: var(--border);
        padding: 2rem 2rem;
    }

    .entry-content {
        padding: 2rem 0rem;
        color: var(--dark);
        max-width: 100%;
        margin: 0 auto;
    }

    .entry-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }

    .entry-content strong {
        font-size: 1rem;
        line-height: 1.6;
        font-weight: 500;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }

    .entry-content h1,
    .entry-content h2,
    .entry-content h3,
    .entry-content h4,
    .entry-content h5,
    .entry-content h6 {
        font-weight: 400;
        margin: 2rem 0 1rem;
        color: var(--dark);
    }

    .entry-content h1 {
        font-size: 2rem;
    }

    .entry-content h2 {
        font-size: 1.75rem;
    }

    .entry-content h3 {
        font-size: 1.5rem;
    }

    .entry-content h4 {
        font-size: 1.25rem;
    }

    .entry-content h5 {
        font-size: 1.1rem;
    }

    .entry-content h6 {
        font-size: 1rem;
    }

    .entry-content a {
        color: var(--brand);
        text-decoration: underline;
        transition: color 0.3s ease;
    }

    .entry-content a:hover {
        color: var(--dark);
    }

    .entry-content ul,
    .entry-content ol {
        margin-left: 1.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .entry-content li {
        margin-bottom: 0.5rem;
    }

    .entry-content blockquote {
        border-left: 4px solid var(--brand);
        padding-left: 1rem;
        font-style: italic;
        color: var(--light-02);
        margin: 1.5rem 0;
    }

    .entry-content code {
        background-color: var(--light-01);
        padding: 0.2rem 0.4rem;
        font-family: monospace;
        border-radius: 4px;
        font-size: 0.9rem;
    }

    .entry-content pre {
        background-color: var(--light-01);
        padding: 1rem;
        overflow-x: auto;
        border-radius: 6px;
        margin-bottom: 2rem;
        font-family: monospace;
    }

    .entry-content img {
        display: block;
        max-width: 100%;
        height: auto;
        margin: 2rem auto;
        border-radius: 8px;
    }

    .entry-content figure {
        margin: 2rem 0;
        text-align: center;
    }

    .entry-content figcaption {
        font-size: 0.9rem;
        color: var(--light-02);
        margin-top: 0.5rem;
    }

    .entry-content table {
        width: 100%;
        border-collapse: collapse;
        margin-bottom: 2rem;
    }

    .entry-content th,
    .entry-content td {
        border: var(--border);
        padding: 0.75rem;
        text-align: left;
    }

    .entry-content hr {
        border: none;
        border-top: var(--border);
        margin: 2rem 0;
    }

    /* Gutenberg-specific classes */
    .wp-block-quote {
        font-style: italic;
        color: var(--light-02);
        border-left: 4px solid var(--brand);
        padding-left: 1rem;
        margin: 1.5rem 0;
    }

    .wp-block-image img {
        margin: 1.5rem auto;
        display: block;
        max-width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .wp-block-button a {
        display: inline-block;
        background-color: var(--brand);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        font-weight: 500;
        transition: background-color 0.3s ease;
    }

    .wp-block-button a:hover {
        background-color: #06a54b;
    }

    .contactPageFlex {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 2rem;
    }

    .contactPageFlex {
        display: flex;
        justify-content: space-between;
        gap: 2rem;
    }

    form {
        padding-top: 5rem;
        width: 32rem;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    input {
        border-bottom: 1px solid var(--brand);
        width: 40rem;
        padding-bottom: 0.5rem;
        font-size: 1rem;
    }

    select {
        border-bottom: 1px solid var(--brand);
        outline: none;
        cursor: pointer;
        font-size: 1rem;
        padding: 1rem 2rem 1rem 0;
        transition: all .3s ease;

        appearance: none;
        /* para a maioria dos browsers */
        -webkit-appearance: none;
        /* para Safari/Chrome */
        -moz-appearance: none;
        /* para Firefox */
        background-image: url('img/caret-down.svg');
        /* seta personalizada */
        background-repeat: no-repeat;
        background-position: right 10px center;
        padding-right: 30px;
        /* espaço para a seta */
    }

    textarea {
        border-bottom: 1px solid var(--brand);
        outline: none;
        font-size: 1rem;
        padding: 0;
        transition: all .3s ease;
    }

    .cardContactBook {
        display: flex;
        flex-direction: column;
        width: 230px;
        height: fit-content;
        justify-content: center;
        padding: 2rem;
        margin-right: 2rem;
        gap: 2rem;
        /* centralizar se necessário */
        background-color: var(--light);
        border: var(--border);
        border-radius: 1rem;
    }

    .cardContactBook a {
        display: block;
        width: fit-content;
        right: 2rem;
        font-size: 1rem;
        background-color: var(--brand);
        color: var(--dark);
        padding: 14px 12px;
        border-radius: 500px;
        cursor: pointer;
        transition: all 0.2s ease;
    }

    .cardContactBook a:hover {
        padding: 14px 18px;
    }

    .buttonFlagBooking {
        position: absolute;
        right: 32px;
        display: flex;
        gap: 50px;
        align-items: center;

    }

    /* Página Sobre */
    .graphic-section {
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 5rem;
    }

    .graphic-section img {
        max-width: 100%;
        height: auto;
    }
}

/* Scroll */

::-webkit-scrollbar {
    width: 10px;
    height: 8px;
    transition: 0.3s;
}

::-webkit-scrollbar-track {
    background: var(--dark);
    border: 1px solid var(--dark);
    transition: 0.3s;
}

::-webkit-scrollbar-thumb {
    border-radius: 50px;
    background: var(--brand);
    border: 1px solid #262525;
    transition: 0.3s;
}

::-webkit-scrollbar-thumb:hover {
    transition: 0.3s;
    border: 1px solid var(--dark);
    background: var(--light-01);
}

::-moz-scrollbar {
    background: var(--brand);
}

::-moz-scrollbar-thumb {
    background: var(--brand);
}

/* Animações */

.motion-intro-page {
    animation-name: introPage;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes introPage {
    0% {
        opacity: 0;
        transform: translate(-50%, -65%) scale(1.5);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -65%) scale(1);
    }
}

.motion-intro-page-text {
    animation-name: introPageText;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes introPageText {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.motion-intro-pages {
    animation-name: introPages;
    animation-duration: 1s;
    animation-fill-mode: both;
}

@keyframes introPages {
    0% {
        opacity: 0;
        transform: scale(1.5);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.elemento {
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease, transform 1s ease;
}

.elemento.aparecendo {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Coockies */

.cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgb(22, 22, 22, 0.9);
    color: #fff;
    padding: 2rem 20px;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    z-index: 1000;
}

@media screen and (max-width: 1120px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }    
}

.cookie-banner p {
    margin: 0;
    font-size: 1rem;
}

.cookie-banner a {
    color: var(--brand);
    text-decoration: underline;
}

.cookie-banner button {
    background-color: var(--brand);
    color: var(--dark);
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    border-radius: 100;
    cursor: pointer;
}

.cookie-banner button:hover {
    transform: scale(1.1);
}

.cookie-banner.hidden {
    display: none;
}