/* Fontes HostGrotesk */
@font-face {
    font-family: "HostGrotesk-Bold";
    src: url("../../fonts/HostGrotesk/HostGrotesk-Bold.ttf") format("opentype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-BoldItalic";
    src: url("../../fonts/HostGrotesk/HostGrotesk-BoldItalic.ttf") format("opentype");
    font-style: italic;
    font-weight: 700;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-ExtraBold";
    src: url("../../fonts/HostGrotesk/HostGrotesk-ExtraBold.ttf") format("opentype");
    font-style: normal;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-ExtraBoldItalic";
    src: url("../../fonts/HostGrotesk/HostGrotesk-ExtraBoldItalic.ttf") format("opentype");
    font-style: italic;
    font-weight: 800;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-Italic";
    src: url("../../fonts/HostGrotesk/HostGrotesk-Italic.ttf") format("opentype");
    font-style: italic;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-Light";
    src: url("../../fonts/HostGrotesk/HostGrotesk-Light.ttf") format("opentype");
    font-style: normal;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-LightItalic";
    src: url("../../fonts/HostGrotesk/HostGrotesk-LightItalic.ttf") format("opentype");
    font-style: italic;
    font-weight: 300;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-Medium";
    src: url("../../fonts/HostGrotesk/HostGrotesk-Medium.ttf") format("opentype");
    font-style: normal;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-MediumItalic";
    src: url("../../fonts/HostGrotesk/HostGrotesk-MediumItalic.ttf") format("opentype");
    font-style: italic;
    font-weight: 500;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-Regular";
    src: url("../../fonts/HostGrotesk/HostGrotesk-Regular.ttf") format("opentype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-SemiBold";
    src: url("../../fonts/HostGrotesk/HostGrotesk-SemiBold.ttf") format("opentype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "HostGrotesk-SemiBoldItalic";
    src: url("../../fonts/HostGrotesk/HostGrotesk-SemiBoldItalic.ttf") format("opentype");
    font-style: italic;
    font-weight: 600;
    font-display: swap;
}

* {
    transition:
        background-color 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

body {
    background-color: #fff;
}

body.darkTheme {
    background-color: #01173c;
}

#cdd-header {
    background: transparent linear-gradient(93deg, #00153b 0%, #11355a 100%) 0% 0% no-repeat padding-box;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
}

#cdd-header>.cdd-headerContainer {
    max-width: 1240px;
    padding: 15px 20px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>img {
    width: 126px;
    height: 60px;
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton {
    position: absolute;
    width: 70px;
    height: 38px;
    background-color: #f9f9f9;
    border: 1px solid #c1d5f1;
    border-radius: 20px;
    bottom: -58px;
    left: 20px;
    cursor: pointer;
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton>div {
    background-color: #072248;
    box-shadow: 0px 5px 5px #0000001a;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 3px;
    left: 4px;
    z-index: 1;
    transition: transform 0.3s ease;
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton.active>div {
    transform: translateX(30px);
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton>img:first-of-type {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    filter: brightness(5);
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton.active>img:first-of-type {
    filter: brightness(1);
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton>img:last-of-type {
    width: 14px;
    height: 14px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton.active>img:last-of-type {
    filter: brightness(5);
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>a {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
}

#cdd-header>.cdd-headerContainer>.cdd-headerTop>div>a>img {
    width: 86px;
    height: 44px;
}

#cdd-header>.cdd-headerContainer>.cdd-headerMenu {
    margin-right: 166px;
}

#cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul {
    display: flex;
    gap: 32px;
    align-items: center;
}

#cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul>li>a {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.4px;
    color: #ffffff;
    position: relative;
    text-wrap: nowrap;
}

#cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul>li>a::after {
    position: absolute;
    content: "";
    left: 0;
    bottom: -8px;
    height: 2px;
    width: 0%;
    transition: width 0.3s ease;
    background-color: #fff;
}

#cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul>li>a:not(.active):hover::after {
    width: 100%;
}

#cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul>li>a.active::after {
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    background-color: #c1d5f1;
}

#cdd-header>.bgTopoDesktop {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    z-index: -1;
}

#cdd-header>.bgTopoMobile {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    z-index: -1;
    display: none;
}

main {
    margin-top: 170px;
}

#patrocinadores {
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0px 5px 30px #0000000F;
    border: none;
}

.darkTheme #patrocinadores {
    background-color: #11355A;
}

#patrocinadores>.patrocinadoresContainer {
    flex-direction: row;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    position: relative;
}

#patrocinadores>.patrocinadoresContainer:after {
    height: 1px;
    background-color: #c9daf3;
    left: 20px;
    right: 20px;
    bottom: 0;
    position: absolute;
    content: "";
    z-index: -1;
}

#patrocinadores>.patrocinadoresContainer>h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 12px;
    line-height: 18px;
    letter-spacing: 1.2px;
    color: #072248;
}

.darkTheme #patrocinadores>.patrocinadoresContainer>h3 {
    color: #c1d5f1;
}

#patrocinadores>.patrocinadoresContainer>a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.darkTheme #patrocinadores>.patrocinadoresContainer>a>svg path {
    fill: #c1d5f1;
}

#patrocinadores>.patrocinadoresContainer>a>img#patrocinadorChinaPark {
    height: 52px;
    object-fit: contain;
    display:block;
}

#patrocinadores>.patrocinadoresContainer>a>img#patrocinadorChinaParkDarkTheme {
    display: none;
    height: 52px;
    object-fit: contain;
}

.darkTheme #patrocinadores>.patrocinadoresContainer>a>img#patrocinadorChinaPark {
    display: none;
}

.darkTheme #patrocinadores>.patrocinadoresContainer>a>img#patrocinadorChinaParkDarkTheme {
    display: block;
}

#patrocinadores>.patrocinadoresContainer>a>svg:nth-child(1) {
    width: 130px;
    height: 32px;
}

#patrocinadores>.patrocinadoresContainer>a>svg:nth-child(2) {
    width: 90px;
    height: 28px;
}

#patrocinadores>.patrocinadoresContainer>a>svg:nth-child(3) {
    width: 122px;
    height: 20px;
}

#fotos {
    padding-top: 34px;
}

#fotos>.fotosHeader {
    max-width: 640px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

#fotos>.fotosHeader>.cidadeDropdown {
    background-color: #c1d5f1;
    border-radius: 28px;
    padding: 11px 40px 11px 16px;
    position: relative;
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #072248;
    margin-bottom: 32px;
    cursor: pointer;
}

#fotos>.fotosHeader>.cidadeDropdown>span {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #072248b3;
}

#fotos>.fotosHeader>.cidadeDropdown>img {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 12px;
    height: 6px;
    transition: transform 0.3s ease;
}

#fotos>.fotosHeader>.cidadeDropdown.active>img {
    transform: translateY(-50%) rotate(180deg);
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #c1d5f1;
    border-radius: 16px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0px 4px 12px rgba(7, 34, 72, 0.1);
    z-index: 10;
}

#fotos>.fotosHeader>.cidadeDropdown.active>.dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list>li {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #072248;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list>li:hover {
    background-color: #c1d5f1;
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list>li.is-preview,
#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list>li.selected {
    background-color: #c1d5f1;
    font-family: "HostGrotesk-SemiBold", sans-serif;
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list::-webkit-scrollbar {
    width: 6px;
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list::-webkit-scrollbar-thumb {
    background: #c1d5f1;
    border-radius: 10px;
}

#fotos>.fotosHeader>.cidadeDropdown>.dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #072248;
}

#fotos>.fotosHeader>h2 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #072248;
    letter-spacing: 1.4px;
    text-align: center;
    margin-bottom: 12px;
}

.darkTheme #fotos>.fotosHeader>h2 {
    color: #c1d5f1;
}

#fotos>.fotosHeader>h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 42px;
    line-height: 48px;
    color: #072248;
    text-align: center;
    border-bottom: 1px solid #c9daf3;
    padding-bottom: 20px;
}

.darkTheme #fotos>.fotosHeader>h3 {
    color: #c1d5f1;
}

#fotos>.fotosHeader>h3>strong {
    font-family: "HostGrotesk-Bold", sans-serif;
}

#fotos>.cidade-video-container {
    padding-top: 32px;
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

#fotos>.cidade-video-container>.cidade-text {
    display: flex;
    gap: 6px;
    flex-direction: column;
    text-align: center;
    margin-bottom: 32px;
}

#fotos>.cidade-video-container>.cidade-text > h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 30px;
    line-height: 44px;
    color: #072248;
}

.darkTheme #fotos>.cidade-video-container>.cidade-text > h3 {
    color: #c1d5f1;
}

#fotos>.cidade-video-container>.cidade-text> span {
    font-size: 94px;
    line-height: 98px;
    font-family: "HostGrotesk-Bold", sans-serif;
    color: #072248;
}

.darkTheme #fotos>.cidade-video-container>.cidade-text> span {
    color: #c1d5f1!important;
}

#fotos>.cidade-video-container>.video-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 675px;
}

#fotos>.cidade-video-container>.video-container>video {
    min-height: 675px;
    border-radius: 16px;
    box-shadow: 0px 8px 24px rgba(7, 34, 72, 0.15);
}

#roteiros {
    max-width: 1240px;
    padding: 120px 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin: 0 auto;
}

#roteiros>.item {
    width: 100%;
    height: 438px;
    position: relative;
    border-radius: 24px;
}

.darkTheme #roteiros>.item>div {
    background-color: #072248 !important;
}

#roteiros>.item>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px 0 18px;
    border-radius: 24px 24px 0 0;
    height: 120px;
}

#roteiros>.item:nth-child(1)>div {
    background-color: #ffb297;
}

#roteiros>.item:nth-child(2)>div {
    background-color: #ffdf8c;
}

#roteiros>.item:nth-child(3)>div {
    background-color: #f9a9d9;
}

#roteiros>.item>div>h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 32px;
    line-height: 36px;
}

#roteiros>.item>div>h3>b {
    font-family: "HostGrotesk-Bold", sans-serif;
}

.darkTheme #roteiros>.item:nth-child(1)>div>h3,
.darkTheme #roteiros>.item:nth-child(2)>div>h3,
.darkTheme #roteiros>.item:nth-child(3)>div>h3 {
    color: #ffffff;
}

#roteiros>.item:nth-child(1)>div>h3 {
    color: #982800;
}

#roteiros>.item:nth-child(2)>div>h3 {
    color: #815e02;
}

#roteiros>.item:nth-child(3)>div>h3 {
    color: #8f125b;
}

.darkTheme #roteiros>.item:nth-child(1)>div>svg path {
    fill: #ffb297;
}

.darkTheme #roteiros>.item:nth-child(2)>div>svg path {
    fill: #ffdf8c;
}

.darkTheme #roteiros>.item:nth-child(3)>div>svg path {
    fill: #f9a9d9;
}

#roteiros>.item:nth-child(1)>div>svg {
    width: 58px;
    height: 58px;
}

#roteiros>.item:nth-child(2)>div>svg {
    width: 64px;
    height: 50px;
}

#roteiros>.item:nth-child(3)>div>svg {
    width: 62px;
    height: 56px;
}

#roteiros>.item>img {
    border-radius: 0px 0px 24px 24px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

#roteiros>.item>a {
    font-family: "HostGrotesk-SemiBold", sans-serif;
    font-size: 20px;
    line-height: 20px;
    position: absolute;
    bottom: -23px;
    left: 20px;
    right: 20px;
    height: 56px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#roteiros>.item:nth-child(1)>a {
    color: #982800;
    background-color: #ffb297;
}

#roteiros>.item:nth-child(2)>a {
    color: #815e02;
    background-color: #ffdf8c;
}

#roteiros>.item:nth-child(3)>a {
    color: #8f125b;
    background-color: #f9a9d9;
}

#guias {
    max-width: 1240px;
    margin: 0 auto;
    padding: 143px 40px 0;
}

#guias>h2 {
    display: none;
}

#guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide {
    width: 238px;
}

#guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>img {
    border: 1px solid #d9d9d9;
    border-radius: 14px;
    width: 100%;
    height: 326px;
    object-fit: cover;
    margin-bottom: 32px;
}

#guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 18px;
    line-height: 20px;
    color: #072248;
    text-align: center;
    margin-bottom: 12px;
}

#guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>h2 {
    font-family: "HostGrotesk-Bold", sans-serif;
    font-size: 40px;
    line-height: 42px;
    color: #072248;
    text-align: center;
    margin-bottom: 24px;
}

#guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>a {
    font-family: "HostGrotesk-SemiBold", sans-serif;
    font-size: 20px;
    line-height: 20px;
    color: #00153b;
    background-color: #c1d5f1;
    border-radius: 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 15px 30px;
    width: fit-content;
    margin: 0 auto;
}

#guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>a>img {
    width: 20px;
    height: 20px;
}

#guias>.splide.guiasSplide>.splide__arrows>.splide__arrow {
    background-color: #072248;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: 1;
}

#guias>.splide.guiasSplide>.splide__arrows>.splide__arrow:disabled {
    background-color: #07224870;
}

#guias>.splide.guiasSplide>.splide__arrows>.splide__arrow--prev {
    left: -60px;
}

#guias>.splide.guiasSplide>.splide__arrows>.splide__arrow--next {
    right: -60px;
}

#guias>.splide.guiasSplide>.splide__arrows>.splide__arrow>svg {
    fill: #fff;
    width: 13px;
    height: 19px;
}

#videos {
    padding-top: 120px;
}

#videos>.videosContainer {
    max-width: 1240px;
    margin: 0 auto 45px;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
}

#videos>.videosContainer > .tituloVideoDesktop {
    font-size: 42px;
    line-height: 48px;
    color: #072248;
    font-family: 'HostGrotesk-Regular';
    max-width: 700px;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

#videos>.videosContainer > .tituloVideoDesktop > b {
    font-family: 'HostGrotesk-Bold';
}

#videos>.videosContainer > span.tituloVideoMobile {
    display: none;
}

#videos>.videosContainer{
    position: relative;
    display: flex;
    flex-direction: column;
    gap:32px;
    justify-content: center;
}

#videos>.videosContainer::after {
    background-color: #c9daf3;
    content: "";
    bottom: -22px;
    left: 0;
    right: 0px;
    left: 15px;
    height: 1px;
    z-index: -1;
    position: absolute;
    width: 97%;
}

#videos>.videosContainer::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #c9daf3;
    position: absolute;
    bottom: -30px;
    right: 50%;
    content: "";
}

#videos>.videosContainer>h2 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 36px;
    line-height: 42px;
    color: #072248;
    margin-bottom: 36px;
    max-width: 700px;
    width: 100%;
    text-align: center;
    margin:0 auto;
}

#videos>.videosContainer>h2>b {
    font-family: "HostGrotesk-Bold", sans-serif;
}

#videos>.videosContainer>.info {
    display: none;
    width: 100%;
}

#videos>.videosContainer>.info>span {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.4px;
    color: #c1d5f1;
    margin-bottom: 12px;
    display: block;
}

#videos>.videosContainer>.info>p {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 20px;
    line-height: 28px;
    color: #ffffff;
}

#videos>.videosContainer>iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 640 / 360;
    border-radius: 16px;
    max-width: 1200px;
}

#videos>.videosContainer>p {
    display: none;
}

#videos>.videosSplide>span {
    display: none;
}

#videos>h2 {
    display: none;
}

#videos>.videosSplide {
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

#videos>.videosSplide>.splide__track>.splide__list>.splide__slide {
    max-width: 288px;
    cursor: pointer;
}

#videos>.videosSplide>.splide__track>.splide__list>.splide__slide>img {
    width: 100%;
    height: 162px;
    border-radius: 16px;
    object-fit: cover;
}

#videos>.videosSplide>.splide__arrows>.splide__arrow {
    background-color: #072248;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: 1;
}

#videos>.videosSplide>.splide__arrows>.splide__arrow:disabled {
    background-color: #07224870;
}

#videos>.videosSplide>.splide__arrows>.splide__arrow--prev {
    left: -30px;
}

#videos>.videosSplide>.splide__arrows>.splide__arrow--next {
    right: -30px;
}

#videos>.videosSplide>.splide__arrows>.splide__arrow>svg {
    fill: #fff;
    width: 13px;
    height: 19px;
}

#guia-cidade {
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px 0;
}

#guia-cidade>.guia-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

#guia-cidade>.guia-container>.guia-image>a>.guia-foto-slot {
    position: relative;
    width: 292px;
    height: 400px;
    overflow: hidden;
}

#guia-cidade>.guia-container>.guia-image>a>.guia-foto-slot>.guia-foto-skeleton {
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, #d7e4f7 8%, #edf3fd 18%, #d7e4f7 33%);
    background-size: 200% 100%;
    animation: guiaFotoSkeleton 1.2s linear infinite;
    transition: opacity 0.2s ease;
}

.darkTheme #guia-cidade>.guia-container>.guia-image>a>.guia-foto-slot>.guia-foto-skeleton {
    background: linear-gradient(110deg, #18325c 8%, #244574 18%, #18325c 33%);
    background-size: 200% 100%;
}

#guia-cidade>.guia-container>.guia-image>a>.guia-foto-slot>.guia-foto {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.2s ease;
}

#guia-cidade>.guia-container>.guia-image>a>.guia-foto-slot.is-loaded>.guia-foto-skeleton {
    opacity: 0;
    pointer-events: none;
}

#guia-cidade>.guia-container>.guia-image>a>.guia-foto-slot.is-loaded>.guia-foto {
    opacity: 1;
}

#guia-cidade>.guia-container>.guia-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
}

#guia-cidade>.guia-container>.guia-content>.guia-textos {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
}

#guia-cidade>.guia-container>.guia-content>.guia-textos>h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 24px;
    line-height: 28px;
    color: #072248;
    margin-bottom: 12px;
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-textos>h3 {
    color: #c1d5f1;
}

#guia-cidade>.guia-container>.guia-content>.guia-textos>h3>#guia-cidade-nome {
    font-family: "HostGrotesk-Bold", sans-serif;
    color: #00153b;
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-textos>h3>#guia-cidade-nome {
    color: #c1d5f1;
}

#guia-cidade>.guia-container>.guia-content>.guia-textos>h2 {
    font-family: "HostGrotesk-Bold", sans-serif;
    font-size: 42px;
    line-height: 46px;
    color: #072248;
    margin-bottom: 24px;
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-textos>h2 {
    color: #c1d5f1;
}

#guia-cidade>.guia-container>.guia-content>.guia-textos>p {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #072248;
    margin-bottom: 36px;
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-textos>p {
    color: #c1d5f1;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia {
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #C1D5F1;
    color: #ffffff;
    font-family: "HostGrotesk-SemiBold", sans-serif;
    font-size: 18px;
    line-height: 20px;
    padding: 16px 32px;
    border-radius: 28px;
    transition: all 0.3s ease;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia:hover {
    background-color: #00153b;
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(7, 34, 72, 0.3);
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia {
    background-color: #c1d5f1;
    color: #072248;
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia:hover {
    background-color: #ffffff;
    color: #072248;
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia>span {
    color: #072248!important;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia>span {
    font-size: 20px;
    line-height: 28px;
    color: #072248;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia:hover>span {
    color: #fff;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia>img {
    width: 20px;
    height: 20px;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia:hover>img {
    filter: invert(1);
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background-color: #c1d5f1;
    border-radius: 50%;
    transition: all 0.3s ease;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar:hover {
    background-color: #072248;
    transform: scale(1.1);
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar {
    background-color: #072248;
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar:hover {
    background-color: #c1d5f1;
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar>img {
    width: 16px;
    height: 16px;
    filter: brightness(0);
}

#guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar:hover>img {
    filter: brightness(10);
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar>img {
    filter: brightness(10);
}

.darkTheme #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar:hover>img {
    filter: brightness(0);
}

#guia-cidade>.guia-container>.guia-image {
    flex-shrink: 0;
    position: relative;
}

#guia-cidade>.guia-container>.guia-image>.guia-image-link {
    display: flex;
    width: 100%;
    height: 100%;
}

#guia-cidade>.guia-container>.guia-image:hover .guia-foto-slot.is-loaded>.guia-foto {
    transform: scale(1.02);
    box-shadow: 0px 16px 48px rgba(7, 34, 72, 0.2);
}

@keyframes guiaFotoSkeleton {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}

#cidades {
    max-width: 1240px;
    margin: 0 auto;
    padding: 120px 20px 0;
    gap: 100px;
    display: flex;
    justify-content: space-between;
}

#cidades>.info {
    max-width: 580px;
    margin-top: 60px;
    position: relative;
}

#cidades>.info::after {
    background-color: #c9daf3;
    content: "";
    bottom: 16px;
    left: 0;
    right: 32px;
    height: 1px;
    z-index: -1;
    position: absolute;
}

#cidades>.info::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #c9daf3;
    position: absolute;
    bottom: 8px;
    right: 30px;
    content: "";
}

#cidades>.info>h2 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 36px;
    line-height: 44px;
    color: #072248;
    margin-bottom: 20px;
}

#cidades>.info>.cidadeDropdownMapa {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #072248;
    border-radius: 28px;
    cursor: pointer;
    position: relative;
    width: 100%;
    max-width: 495px;
    padding: 15px 25px 15px 20px;
    margin-bottom: 36px;
}

#cidades>.info>.cidadeDropdownMapa>span {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 20px;
    line-height: 26px;
    color: #fff;
}

#cidades>.info>.cidadeDropdownMapa>img {
    width: 12px;
    height: 6px;
    transition: transform 0.3s ease;
}

#cidades>.info>.cidadeDropdownMapa.active>img {
    transform: rotate(180deg);
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background-color: #fff;
    border: 1px solid #072248;
    border-radius: 16px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0px 4px 12px rgba(7, 34, 72, 0.2);
    z-index: 10;
}

#cidades>.info>.cidadeDropdownMapa.active>.dropdown-list {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list>li {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 14px;
    color: #072248;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list>li:hover {
    background-color: #c1d5f1;
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list>li.is-preview,
#cidades>.info>.cidadeDropdownMapa>.dropdown-list>li.selected {
    background-color: #072248;
    color: #fff;
    font-family: "HostGrotesk-SemiBold", sans-serif;
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list::-webkit-scrollbar {
    width: 6px;
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list::-webkit-scrollbar-thumb {
    background: #c1d5f1;
    border-radius: 10px;
}

#cidades>.info>.cidadeDropdownMapa>.dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #072248;
}

#cidades>.info>h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 94px;
    line-height: 104px;
    color: #072248;
    opacity: 0.2;
    transition: opacity 0.3s ease;
}

#cidades>.mapa {
    width: 100%;
    height: auto;
    aspect-ratio: 510 / 824;
    max-width: 510px;
    position: relative;
}

#cidades>.mapa>img {
    width: 100%;
    height: 100%;
}

#cidades>.mapa>.mapa-img-dark {
    display: none;
}

.darkTheme #cidades>.mapa>.mapa-img-light {
    display: none;
}

.darkTheme #cidades>.mapa>.mapa-img-dark {
    display: block;
}

#cidades>.mapa>.cidade-marker {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

#cidades>.mapa>.cidade-marker:hover {
    transform: scale(1.1);
    z-index: 5;
}

#cidades>.mapa>.cidade-marker>img {
    border: 4px solid #072248;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    object-fit: cover;
}

#darkTheme #cidades>.mapa>.cidade-marker>img {
    border: 4px solid #fff!important;
}

#cidades>.mapa>.cidade-marker>span {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 16px;
    color: #fff;
    padding: 2px 7px;
    border-radius: 10px;
    background-color: #072248;
    white-space: nowrap;
    z-index: 1;
}

#cidades>.mapa>#mucurici {
    top: -2%;
    left: 55%;
}

#cidades>.mapa>#boa-esperanca {
    top: 16%;
    left: 59%;
}

#cidades>.mapa>#linhares {
    top: 41%;
    left: 89%;
}

#cidades>.mapa>#colatina {
    top: 45%;
    left: 46%;
}

#cidades>.mapa>#vitoria {
    top: 68%;
    left: 69%;
}

#cidades>.mapa>#domingos-martins {
    top: 70%;
    left: 27%;
}

#cidades>.mapa>#guarapari {
    top: 78%;
    left: 59%;
}

#cidades>.mapa>#anchieta {
    top: 84%;
    left: 46%;
}

#cidades>.mapa>#alegre {
    top: 80%;
    left: 12%;
}

#cidades>.mapa>#mimoso-do-sul {
    top: 92%;
    left: 22%;
}

#noticias {
    max-width: 1240px;
    padding: 120px 20px 0;
    margin: 0 auto;
}

#noticias>h2 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 42px;
    line-height: 48px;
    color: #072248;
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid #c9daf3;
    max-width: 700px;
    margin: 0 auto 32px;
    position: relative;
}

#noticias>h2>b {
    font-family: "HostGrotesk-Bold", sans-serif;
}

#noticias>h2::before {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #c9daf3;
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    content: "";
}

#noticias>h3 {
    display: none;
}

#noticias>.noticiasSplide {
    width: 100%;
}

#noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide {
    max-width: 288px;
}

#noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide>img {
    width: 100%;
    height: 162px;
    border-radius: 16px;
    object-fit: cover;
    margin-bottom: 20px;
}

#noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide>h2 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.4px;
    color: #072248;
    margin-bottom: 12px;
}

#noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide>h3 {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 18px;
    line-height: 26px;
    color: #072248;
}

#noticias>.noticiasSplide>.splide__arrows>.splide__arrow {
    background-color: #072248;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    opacity: 1;
}

#noticias>.noticiasSplide>.splide__arrows>.splide__arrow:disabled {
    background-color: #07224870;
}

#noticias>.noticiasSplide>.splide__arrows>.splide__arrow--prev {
    left: -50px;
}

#noticias>.noticiasSplide>.splide__arrows>.splide__arrow--next {
    right: -50px;
}

#noticias>.noticiasSplide>.splide__arrows>.splide__arrow>svg {
    fill: #fff;
    width: 13px;
    height: 19px;
}

#cdd-footer {
    padding-top: 120px;
}

#cdd-footer>.elements {
    display: flex;
    justify-content: space-between;
    position: relative;
}

#cdd-footer>.elements>img:nth-child(1) {
    width: 524px;
    height: 156px;
}

#cdd-footer>.elements>img:nth-child(2) {
    width: 263px;
    height: 126px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 30px;
}

#cdd-footer>.elements>img:nth-child(3) {
    width: 524px;
    height: 156px;
}

#cdd-footer>.copyright {
    background-color: #072248;
    padding: 12px 20px;
}

#cdd-footer>.copyright>span {
    font-family: "HostGrotesk-Regular", sans-serif;
    font-size: 16px;
    line-height: 18px;
    color: #ffffff;
    text-align: center;
    display: block;
}

#cdd-footer>.copyright>span>b {
    font-family: "HostGrotesk-Bold", sans-serif;
}

.darkTheme .noticiasSplide h2 {
    color: #C1D5F1!important;
}

.darkTheme .noticiasSplide h3 {
    color: #FFFFFF!important;
}

.darkTheme #noticias > h2 {
    color: #FFFFFF!important;
}

.darkTheme .tituloVideoDesktop, .darkTheme .tituloVideoMobile {
    color: #FFFFFF!important;
}

.darkTheme #cidades>.info>h2 {
    color: #C1D5F1!important;
}

.darkTheme #cidades>.info>h3 {
    color: #FFFFFF!important;
}

.darkTheme #noticias>h3 {
    color: #fff!important;
}

#domingos-martins {
    top: 73%;
    left: 48%;
}

#santa-teresa {
    top: 57%;
    left: 55%;
}

@media screen and (max-width: 768px) {
    #cdd-header>.cdd-headerContainer {
        padding: 12px 0;
        display: block;
    }

    #videos>.videosContainer::before {
        display: none;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 16px;
        padding: 0 20px;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>img {
        width: 82px;
        height: 40px;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton {
        position: relative;
        width: 56px;
        height: 28px;
        bottom: unset;
        left: unset;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton>div {
        width: 24px;
        height: 24px;
        top: 1px;
        left: 2px;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton.active>div {
        transform: translateX(26px);
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton>img:first-of-type {
        top: 6px;
        left: 7px;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div>#toggleThemeButton>img:last-of-type {
        top: 6px;
        right: 7px;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div>a {
        position: static;
        transform: unset;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerTop>div>a>img {
        width: 70px;
        height: 36px;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerMenu {
        margin-right: unset;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul {
        gap: 20px;
        padding: 5px 0px;
        overflow-x: scroll;
        overflow-y: hidden;
        justify-content: center;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul::-webkit-scrollbar {
        display: none;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul>li>a {
        font-size: 12px;
        line-height: 16px;
        letter-spacing: 1.2px;
        padding: 4px 0;
    }

    #cdd-header>.cdd-headerContainer>.cdd-headerMenu>ul>li>a::after {
        bottom: -5px;
    }

    #cdd-header>.bgTopoDesktop {
        display: none;
    }

    #cdd-header>.bgTopoMobile {
        display: block;
    }

    main {
        margin-top: 220px;
    }

    #patrocinadores>.patrocinadoresContainer {
        padding: 10px;
        flex-direction: row;
        gap: 16px;
    }

    #patrocinadores>.patrocinadoresContainer>a {
        justify-content: space-between;
        gap: 10px;
    }

    #patrocinadores>.patrocinadoresContainer>a>img {
        height: 42px;
    }

    #patrocinadores>.patrocinadoresContainer>a>img#patrocinadorChinaParkDarkTheme {
        display: none;
    }

    .darkTheme #patrocinadores>.patrocinadoresContainer>a>img#patrocinadorChinaPark {
        display: none;
    }

    .darkTheme #patrocinadores>.patrocinadoresContainer>a>img#patrocinadorChinaParkDarkTheme {
        display: block;
        height: 42px;
        object-fit: contain;
    }

    #patrocinadores>.patrocinadoresContainer>a>svg:nth-child(1) {
        width: 110px;
        height: 27px;
    }

    #patrocinadores>.patrocinadoresContainer>a>svg:nth-child(2) {
        width: 76px;
        height: 24px;
    }

    #patrocinadores>.patrocinadoresContainer>a>svg:nth-child(3) {
        width: 103px;
        height: 17px;
    }

    #fotos {
        padding-top: 0px;
    }

    #fotos>.fotosHeader {
        max-width: unset;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
    }

    #fotos>.fotosHeader>h2 {
        font-size: 12px;
        line-height: 12px;
    }

    #fotos>.fotosHeader>h3 {
        font-size: 22px;
        line-height: 26px;
    }

    #fotos>.cidade-video-container {
        padding-top: 0px;
        padding-left: 20px;
        padding-right: 20px;
        display:flex;
        flex-direction: column;
        gap: 16px;
    }

    #fotos>.cidade-video-container>.cidade-text {
        margin-bottom: 0px;
        gap:4px;
    }

    #fotos>.cidade-video-container>.cidade-text> span {
        font-size: 42px;
        line-height: 46px;
    }

    #fotos>.cidade-video-container>.cidade-text>h3 {
        font-size: 16px;
        line-height: 20px;
    }

    #fotos>.cidade-video-container>.video-container {
        height: unset;
        min-height: 220px;
    }

    #fotos>.cidade-video-container>.video-container>video {
        border-radius: 12px;
        min-height: 220px;
    }

    #roteiros {
        padding: 60px 20px 0;
        flex-direction: column;
        gap: 43px;
    }

    #roteiros>.item {
        height: 295px;
        border-radius: 18px;
    }

    #roteiros>.item>div {
        padding: 0 20px 0 15px;
        border-radius: 18px 18px 0 0;
        height: 100px;
    }

    #roteiros>.item>div>h3 {
        font-size: 26px;
        line-height: 29px;
    }

    #roteiros>.item:nth-child(1)>div>svg {
        width: 48px;
        height: 48px;
    }

    #roteiros>.item:nth-child(2)>div>svg {
        width: 53px;
        height: 42px;
    }

    #roteiros>.item:nth-child(3)>div>svg {
        width: 52px;
        height: 47px;
    }

    #roteiros>.item>img {
        border-radius: 0px 0px 18px 18px;
        height: 195px;
    }

    #roteiros>.item>a {
        font-size: 16px;
        line-height: 16px;
        height: 46px;
    }

    #guias {
        max-width: 1240px;
        margin: 0 auto;
        padding: 83px 0 0;
    }

    #guias>h2 {
        display: block;
        font-family: "HostGrotesk-Bold", sans-serif;
        font-size: 18px;
        line-height: 20px;
        color: #072248;
        margin-bottom: 18px;
        padding: 0 20px;
    }

    #guias>.splide.guiasSplide {
        margin-left: 20px;
    }

    #guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide {
        width: 120px !important;
    }

    #guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>img {
        border-radius: 6px;
        height: 162px;
        margin-bottom: 12px;
    }

    #guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>h3 {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 6px;
    }

    #guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>h2 {
        font-size: 14px;
        line-height: 18px;
        margin-bottom: 12px;
    }

    #guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>a {
        font-size: 12px;
        line-height: 12px;
        gap: 8px;
        padding: 6px 14px;
    }

    #guias>.splide.guiasSplide>.splide__track>.splide__list>.splide__slide>a>img {
        width: 16px;
        height: 16px;
    }

    #guias>.splide.guiasSplide>.splide__arrows>.splide__arrow--prev {
        left: unset;
        right: 60px;
        top: -28px;
    }

    #guias>.splide.guiasSplide>.splide__arrows>.splide__arrow--next {
        right: 20px;
        top: -28px;
    }

    #videos {
        padding-top: 60px;
    }

    #videos>.videosContainer {
        max-width: 1240px;
        margin: 0 auto 30px;
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
    }

    #videos>.videosContainer > .tituloVideoDesktop {
        display: none;
    }

    #videos>.videosContainer > span.tituloVideoMobile {
        font-size: 24px;
        line-height: 26px;
        color: #072248;
        font-family: 'HostGrotesk-Regular';
        display: block;
    }

    #videos>.videosContainer > span.tituloVideoMobile > b {
        font-family: 'HostGrotesk-Bold';
    }

    #videos>.videosContainer::after {
        display: none;
    }

    #videos>.videosContainer>.info>h2 {
        font-family: "HostGrotesk-Regular", sans-serif;
        font-size: 36px;
        line-height: 42px;
        color: #072248;
        margin-bottom: 36px;
        max-width: 355px;
    }

    #videos>.videosContainer>.info>h2>b {
        font-family: "HostGrotesk-Bold", sans-serif;
    }

    #videos>.videosContainer>.info>div {
        padding-bottom: 36px;
        width: 100%;
    }

    #videos>.videosContainer>.info {
        display: block;
        padding-bottom: 36px;
        width: 100%;
        position: relative;
    }

    #videos>.videosContainer>.info>span {
        font-family: "HostGrotesk-Regular", sans-serif;
        font-size: 10px;
        line-height: 18px;
        color: #072248;
        margin-bottom: 12px;
        display: block;
    }

    #videos>.videosContainer>.info>p {
        font-family: "HostGrotesk-Regular", sans-serif;
        font-size: 14px;
        line-height: 20px;
        color: #072248;
    }

    #videos>.videosSplide>span {
        display: block;
        font-family: "HostGrotesk-Bold", sans-serif;
        font-size: 18px;
        line-height: 20px;
        color: #072248;
        margin-bottom: 12px;
        position: absolute;
        bottom: 85px;
    }

    #videos>.videosContainer>iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 640 / 360;
        border-radius: 16px;
        max-width: 100%;
    }

    #videos>.videosContainer>p {
        display: block;
    }

    #videos>h2 {
        display: block;
        font-family: "HostGrotesk-Bold", sans-serif;
        font-size: 18px;
        line-height: 20px;
        color: #072248;
        margin-bottom: 14px;
        padding: 0 20px;
    }

    #videos>.videosSplide {
        max-width: 1240px;
        padding: 0;
        margin-left: 20px;
    }

    #videos>.videosSplide>.splide__track>.splide__list>.splide__slide {
        max-width: 146px;
    }

    #videos>.videosSplide>.splide__track>.splide__list>.splide__slide>img {
        height: 82px;
        border-radius: 12px;
    }

    #videos>.videosSplide>.splide__arrows>.splide__arrow--prev {
        left: unset;
        right: 60px;
        top: -28px;
    }

    #videos>.videosSplide>.splide__arrows>.splide__arrow--next {
        right: 20px;
        top: -28px;
    }

    #guia-cidade {
        padding: 60px 20px 0;
    }

    #guia-cidade>.guia-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    #guia-cidade>.guia-container>.guia-content {
        max-width: unset;
        order: 2;
    }

    #guia-cidade>.guia-container>.guia-content>.guia-textos>h3 {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 8px;
    }

    #guia-cidade>.guia-container>.guia-content>.guia-textos>h2 {
        font-size: 32px;
        line-height: 38px;
        margin-bottom: 20px;
    }

    #guia-cidade>.guia-container>.guia-content>.guia-textos>p {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 28px;
    }

    #guia-cidade>.guia-container>.guia-content>.guia-actions {
        gap: 12px;
        justify-content: center;
    }

    #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-baixar-guia {
        font-size: 16px;
        padding: 10px 14px;
    }

    #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar {
        width: 48px;
        height: 48px;
    }

    #guia-cidade>.guia-container>.guia-content>.guia-actions>.btn-compartilhar>img {
        width: 18px;
        height: 18px;
    }

    #guia-cidade>.guia-container>.guia-image>a>.guia-foto-slot {
        width: 142px;
        height: 195px;
    }

    #cidades {
        padding: 60px 20px 0;
        gap: 40px;
        flex-direction: column;
    }

    #cidades>.info {
        max-width: unset;
        margin-top: unset;
    }

    #cidades>.info::after {
        display: none;
    }

    #cidades>.info::before {
        display: none;
    }

    #cidades>.info>h2 {
        font-size: 22px;
        line-height: 26px;
        text-align: center;
        max-width: 172px;
        margin: 0 auto 14px;
    }

    #cidades>.info>.cidadeDropdownMapa {
        max-width: unset;
        padding: 9px 16px;
        margin-bottom: unset;
    }

    #cidades>.info>.cidadeDropdownMapa>span {
        font-size: 14px;
        line-height: 16px;
    }

    #cidades>.info>h3 {
        display: none;
    }

    #cidades>.mapa {
        max-width: unset;
    }

    #cidades>.mapa>.cidade-marker>span {
        font-size: 12px;
        line-height: 14px;
        padding: 2px 5px;
    }

    #cidades>.mapa>#mucurici {
        top: -2%;
        left: 55%;
    }

    #cidades>.mapa>#boa-esperanca {
        top: 16%;
        left: 59%;
    }

    #cidades>.mapa>#linhares {
        top: 41%;
        left: 89%;
    }

    #cidades>.mapa>#colatina {
        top: 45%;
        left: 46%;
    }

    #cidades>.mapa>#vitoria {
        top: 68%;
        left: 69%;
    }

    #cidades>.mapa>#domingos-martins {
        top: 70%;
        left: 27%;
    }

    #cidades>.mapa>#guarapari {
        top: 79%;
        left: 56%;
    }

    #cidades>.mapa>#anchieta {
        top: 84%;
        left: 46%;
    }

    #cidades>.mapa>#alegre {
        top: 80%;
        left: 12%;
    }

    #cidades>.mapa>#mimoso-do-sul {
        top: 92%;
        left: 22%;
    }

    #noticias {
        padding: 60px 0 0;
    }

    #noticias>h2 {
        font-size: 24px;
        line-height: 26px;
        text-align: left;
        border-bottom: unset;
        max-width: 350px;
        margin: 0 0 24px 0;
        padding: 0 20px;
    }

    #noticias>h2::before {
        display: none;
    }

    #noticias>h3 {
        display: block;
        font-family: "HostGrotesk-Bold", sans-serif;
        font-size: 18px;
        line-height: 20px;
        color: #072248;
        margin-bottom: 14px;
        padding: 0 20px;
    }

    #noticias>.noticiasSplide .splide__track {
        margin-left: 20px;
    }

    #noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide {
        max-width: 210px;
    }

    #noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide>img {
        height: 118px;
        margin-bottom: 16px;
    }

    #noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide>h2 {
        font-size: 12px;
        line-height: 14px;
        letter-spacing: 1px;
        margin-bottom: 8px;
    }

    #noticias>.noticiasSplide>.splide__track>.splide__list>.splide__slide>h3 {
        font-size: 14px;
        line-height: 20px;
    }

    #noticias>.noticiasSplide>.splide__arrows>.splide__arrow:disabled {
        background-color: #07224870;
    }

    #noticias>.noticiasSplide>.splide__arrows>.splide__arrow--prev {
        left: unset;
        right: 60px;
        top: -28px;
    }

    #noticias>.noticiasSplide>.splide__arrows>.splide__arrow--next {
        right: 20px;
        top: -28px;
    }

    #cdd-footer {
        padding-top: 90px;
    }

    #cdd-footer>.elements>img:nth-child(1) {
        width: 119px;
        height: 48px;
    }

    #cdd-footer>.elements>img:nth-child(2) {
        width: 126px;
        height: 60px;
        bottom: 32px;
    }

    #cdd-footer>.elements>img:nth-child(3) {
        width: 119px;
        height: 48px;
    }

    #cdd-footer>.copyright {
        background-color: #072248;
        padding: 10px 20px;
    }

    #cdd-footer>.copyright>span {
        font-size: 10px;
        line-height: 12px;
    }
}

/* ===== ARTIGOS POR CIDADE ===== */

.cidade-artigos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.cidade-chamada {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(7, 34, 72, 0.08);
  transition: all 0.3s ease;
}

.cidade-chamada:hover {
  transform: translateY(-4px);
  box-shadow: 0px 12px 32px rgba(7, 34, 72, 0.12);
}

.darkTheme .cidade-chamada {
  background: #1a1a1a;
  border: 1px solid rgba(193, 213, 241, 0.1);
}

.cidade-chamada .chamada-box-container {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.cidade-chamada .chamada-box-container figure {
  margin: 0;
  height: 200px;
  overflow: hidden;
}

.cidade-chamada .chamada-box-container figure img {
  width: 100%;
  height: 100%; 
  object-fit: cover;
  transition: transform 0.3s ease;
}

.cidade-chamada:hover .chamada-box-container figure img {
  transform: scale(1.05);
}

.cidade-chamada .chamadaHome-text {
  padding: 20px;
}

.cidade-chamada .chamadaHome-text h3 {
  font-family: 'HostGrotesk-SemiBold', sans-serif;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  display: inline-block;
  color: #ffffff;
}

.cidade-chamada .chamadaHome-text h2 {
  font-family: 'HostGrotesk-Bold', sans-serif;
  font-size: 18px;
  line-height: 22px;
  color: #072248;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.darkTheme .cidade-chamada .chamadaHome-text h2 {
  color: #c1d5f1;
}

.cidade-chamada .chamadaHome-text .description {
  font-family: 'HostGrotesk-Regular', sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.darkTheme .cidade-chamada .chamadaHome-text .description {
  color: #999999;
}

/* Bot�o Carregar Mais */
.btn-carregar-mais-cidade {
  display: block;
  margin: 40px auto 60px;
  background-color: #072248;
  color: #ffffff;
  font-family: 'HostGrotesk-SemiBold', sans-serif;
  font-size: 16px;
  line-height: 18px;
  padding: 16px 32px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.btn-carregar-mais-cidade:hover {
  background-color: #00153b;
  transform: translateY(-2px);
  box-shadow: 0px 8px 24px rgba(7, 34, 72, 0.2);
}

.btn-carregar-mais-cidade:disabled {
  background-color: #cccccc;
  color: #666666;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.darkTheme .btn-carregar-mais-cidade {
  background-color: #c1d5f1;
  color: #072248;
}

.darkTheme .btn-carregar-mais-cidade:hover {
  background-color: #ffffff;
}

.darkTheme .btn-carregar-mais-cidade:disabled {
  background-color: #333333;
  color: #666666;
}

/* Loading e Estados */
.loading-artigos,
.no-content-artigos,
.error-artigos {
  text-align: center;
  padding: 60px 20px;
  font-family: 'HostGrotesk-Regular', sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: #666666;
}

.darkTheme .loading-artigos,
.darkTheme .no-content-artigos, 
.darkTheme .error-artigos {
  color: #999999;
}

.loading-artigos {
  position: relative;
}

.loading-artigos::after {
  content: '';
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #072248;
  border-radius: 50%;
  animation: loading-spin 1s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

@keyframes loading-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsivo */
@media screen and (max-width: 768px) {
  #cidade-artigos-container {
    margin: 40px auto 0;
    padding: 0 15px;
  }

  .cidade-artigos-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 30px;
  }

  .cidade-chamada .chamadaHome-text {
    padding: 16px;
  }

  .cidade-chamada .chamadaHome-text h2 {
    font-size: 16px;
    line-height: 20px;
  }

  .btn-carregar-mais-cidade {
    margin: 30px auto 40px;
    padding: 14px 24px;
    font-size: 14px;
    min-width: 180px;
  }

  .loading-artigos,
  .no-content-artigos,
  .error-artigos {
    padding: 40px 20px;
    font-size: 14px;
  }
}


/* Header da Se��o Artigos por Cidade */
#cidade-artigos-section {
  max-width: 1240px;
  margin: 80px auto 0;
  padding: 0 20px;
}

.cidade-artigos-header {
  text-align: center;
  margin-bottom: 50px;
}

.cidade-artigos-header h2 {
  font-family: 'HostGrotesk-Bold', sans-serif;
  font-size: 48px;
  line-height: 52px;
  color: #072248;
  margin-bottom: 16px;
}

.darkTheme .cidade-artigos-header h2 {
  color: #c1d5f1;
}

.cidade-artigos-header h2 span {
  color: #104b97;
}

.darkTheme .cidade-artigos-header h2 span {
  color: #6ba3f5;
}

.cidade-artigos-header p {
  font-family: 'HostGrotesk-Regular', sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: #666666;
  max-width: 600px;
  margin: 0 auto;
}

.darkTheme .cidade-artigos-header p {
  color: #999999;
}

/* Responsivo para Header */
@media screen and (max-width: 768px) {
  #cidade-artigos-section {
    margin: 60px auto 0;
    padding: 0 15px;
  }

  .cidade-artigos-header {
    margin-bottom: 40px;
  }

  .cidade-artigos-header h2 {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 12px;
  }

  .cidade-artigos-header p {
    font-size: 16px;
    line-height: 20px;
  }
}


/* ===== ARTIGO COMPLETO POR CIDADE ===== */
.cidade-article-content {
  max-width: 800px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0px 8px 24px rgba(7, 34, 72, 0.08);
}

.darkTheme .cidade-article-content {
  background: #1a1a1a;
  border: 1px solid rgba(193, 213, 241, 0.1);
}

/* Header do Artigo */
.article-header {
  margin-bottom: 30px;
}

.article-category h3 {
  font-family: 'HostGrotesk-SemiBold', sans-serif;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 6px;
  display: inline-block;
  color: #ffffff;
}

.article-title {
  font-family: 'HostGrotesk-Bold', sans-serif;
  font-size: 36px;
  line-height: 42px;
  color: #072248;
  margin-bottom: 20px;
}

.darkTheme .article-title {
  color: #c1d5f1;
}

.article-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  font-family: 'HostGrotesk-Regular', sans-serif;
  font-size: 14px;
  color: #666666;
}

.darkTheme .article-meta {
  color: #999999;
}

.article-lead {
  font-family: 'HostGrotesk-Medium', sans-serif;
  font-size: 20px;
  line-height: 28px;
  color: #072248;
  margin-bottom: 20px;
  font-style: italic;
}

.darkTheme .article-lead {
  color: #c1d5f1;
}

/* Imagem Principal */
.article-main-image {
  margin: 30px 0;
  text-align: center;
}

.main-article-img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(7, 34, 72, 0.1);
}

.article-main-image figcaption {
  font-family: 'HostGrotesk-Regular', sans-serif;
  font-size: 14px;
  line-height: 18px;
  color: #666666;
  margin-top: 12px;
  font-style: italic;
}

.darkTheme .article-main-image figcaption {
  color: #999999;
}

/* Conte�do do Artigo */
.article-body {
  font-family: 'HostGrotesk-Regular', sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #072248;
  margin: 30px 0;
}

.darkTheme .article-body {
  color: #c1d5f1;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body h2, .article-body h3, .article-body h4 {
  font-family: 'HostGrotesk-Bold', sans-serif;
  color: #072248;
  margin: 30px 0 15px 0;
}

.darkTheme .article-body h2,
.darkTheme .article-body h3, 
.darkTheme .article-body h4 {
  color: #c1d5f1;
}

/* Galeria */
.article-gallery {
  margin: 40px 0;
}

.article-gallery h3 {
  font-family: 'HostGrotesk-Bold', sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #072248;
  margin-bottom: 20px;
}

.darkTheme .article-gallery h3 {
  color: #c1d5f1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}

.gallery-item {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0px 4px 12px rgba(7, 34, 72, 0.1);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-2px);
}

.gallery-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.gallery-item figcaption {
  padding: 8px 12px;
  font-size: 12px;
  line-height: 16px;
  color: #666666;
  background: #f8f9fa;
}

.darkTheme .gallery-item figcaption {
  color: #999999;
  background: #2a2a2a;
}

/* V�deos */
.article-videos {
  margin: 40px 0;
}

.article-videos h3 {
  font-family: 'HostGrotesk-Bold', sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: #072248;
  margin-bottom: 20px;
}

.darkTheme .article-videos h3 {
  color: #c1d5f1;
}

.videos-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.video-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 24px rgba(7, 34, 72, 0.1);
}

.video-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%; /* 16:9 */
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-link a {
  display: block;
  padding: 20px;
  background: #104b97;
  color: #ffffff;
  text-decoration: none;
  font-family: 'HostGrotesk-SemiBold', sans-serif;
  text-align: center;
  transition: background 0.3s ease;
}

.video-link a:hover {
  background: #072248;
}

.video-description {
  padding: 16px;
  font-size: 14px;
  line-height: 20px;
  color: #666666;
  background: #f8f9fa;
  margin: 0;
}

.darkTheme .video-description {
  color: #999999;
  background: #2a2a2a;
}

/* Tags */
.article-tags {
  margin: 30px 0;
}

.article-tags h4 {
  font-family: 'HostGrotesk-SemiBold', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #072248;
  margin-bottom: 12px;
}

.darkTheme .article-tags h4 {
  color: #c1d5f1;
}

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-item {
  background: #e8f1fc;
  color: #072248;
  font-family: 'HostGrotesk-Medium', sans-serif;
  font-size: 12px;
  line-height: 14px;
  padding: 6px 12px;
  border-radius: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.darkTheme .tag-item {
  background: #2a3441;
  color: #c1d5f1;
}

/* Compartilhamento */
.article-share {
  margin: 40px 0 0 0;
  padding-top: 30px;
  border-top: 1px solid #e5e5e5;
}

.darkTheme .article-share {
  border-top-color: #333333;
}

.article-share h4 {
  font-family: 'HostGrotesk-SemiBold', sans-serif;
  font-size: 16px;
  line-height: 18px;
  color: #072248;
  margin-bottom: 16px;
}

.darkTheme .article-share h4 {
  color: #c1d5f1;
}

.share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-share {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-family: 'HostGrotesk-SemiBold', sans-serif;
  font-size: 14px;
  line-height: 16px;
  color: #ffffff;
  transition: all 0.3s ease;
}

.btn-share img {
  width: 16px;
  height: 16px;
  filter: brightness(0) invert(1);
}

.btn-share.facebook {
  background: #3b5998;
}

.btn-share.facebook:hover {
  background: #2d4373;
}

.btn-share.twitter {
  background: #1da1f2;
}

.btn-share.twitter:hover {
  background: #0d95e8;
}

.btn-share.whatsapp {
  background: #25d366;
}

.btn-share.whatsapp:hover {
  background: #128c7e;
}

/* Responsivo */
@media screen and (max-width: 768px) {
  .cidade-article-content {
    padding: 24px 20px;
    margin: 0 15px;
  }

  .article-title {
    font-size: 28px;
    line-height: 34px;
  }

  .article-meta {
    flex-direction: column;
    gap: 8px;
  }

  .article-lead {
    font-size: 18px;
    line-height: 24px;
  }

  .article-body {
    font-size: 16px;
    line-height: 24px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .videos-container {
    grid-template-columns: 1fr;
  }

  .share-buttons {
    justify-content: center;
  }
}


/* ===== ATUALIZA��O CONTAINER ARTIGO ===== */
#cidade-artigos-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

