/* -------------------------------------------------------------------------- */
/* Header Profile Widget */
/* -------------------------------------------------------------------------- */
body .casHeaderWrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

body .casHeaderCover {
    width: 100%;
    background-color: var(--e-global-color-dd4f13a);
    position: relative;
    overflow: hidden;
}

body .casHeaderCoverImg {
    width: 100%;
    height: 60vh !important;
    object-fit: cover;
    object-position: center;
    display: block;
}

body .casHeaderCover::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

body .casHeaderContent {
    position: relative;
    margin-top: -50px;
    z-index: 2;
}

body .casHeaderContainer {
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 30px;
}

body .casHeaderProfileWrapper {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--e-global-color-b326ca0);
    padding: 8px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

body .casHeaderProfilePic {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
}

body .casHeaderProfilePic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body .casHeaderProfilePlaceholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: var(--e-global-color-accent);
    background: var(--e-global-color-f06a866);
}

body .casHeaderInfo {
    text-align: left;
    padding-bottom: 20px;
}

body .casHeaderTitle {
    color: var(--e-global-color-primary);
    font-size: 38px;
    font-weight: 800;
    margin: 0 0 10px;
    letter-spacing: -0.03em;
    line-height: 1;
}

body .casHeaderLocation {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--e-global-color-text);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
}

body .casHeaderLocation i,
body .casHeaderLocation svg {
    color: var(--e-global-color-accent);
    font-size: 14px;
}

/* Responsividade Header Profile */
@media (max-width: 992px) {
    body .casHeaderTitle {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    body .casHeaderCover {
        height: 50vh;
    }

    body .casHeaderContent {
        margin-top: -60px;
    }

    body .casHeaderContainer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

    body .casHeaderProfileWrapper {
        width: 130px;
        height: 130px;
    }

    body .casHeaderInfo {
        text-align: center;
        padding-bottom: 0;
    }

    body .casHeaderTitle {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    body .casHeaderTitle {
        font-size: 28px;
    }

}

/* Values List styles */
body .casValuesList {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

body .casValueItem {
    display: flex;
    align-items: center;
    background: var(--e-global-color-f06a866);
    border: 1px solid var(--e-global-color-dc369ab);
    border-radius: 14px;
    padding: 12px 16px;
}

body .casValueIcon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--e-global-color-a296c72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
}

body .casValueIcon i {
    color: var(--e-global-color-accent);
    font-size: 16px;
}

body .casValueIcon svg {
    color: var(--e-global-color-accent);
    fill: var(--e-global-color-accent);
}

body .casValueLabel {
    flex-grow: 1;
    color: var(--e-global-color-173da71);
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.3px;
}

body .casValuePrice {
    color: var(--e-global-color-52cc5dd);
    font-weight: 800;
    font-size: 16px;
    text-align: right;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

body .casValuePrice span {
    font-size: 13px;
    font-weight: 700;
    opacity: 0.9;
}

body .casValueItem.casStartingFrom {
    background: linear-gradient(135deg, var(--e-global-color-f06a866) 0%, var(--e-global-color-dd4f13a) 100%);
    border-color: var(--e-global-color-accent);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

body .casValueItem.casStartingFrom .casValueLabel {
    color: var(--e-global-color-primary);
    font-weight: 700;
}

/* Responsividade */

@media (max-width: 480px) {
    body .casValueItem {
        padding: 14px 16px;
    }

    body .casValueLabel {
        font-size: 15px;
    }

    body .casValuePrice {
        font-size: 18px;
    }
}

/* -------------------------------------------------------------------------- */
/* Gallery Styles
/* -------------------------------------------------------------------------- */
body .casGalleryWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body .casGalleryTabs {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

body .casGalleryTabBtn {
    flex: 1;
    background: var(--e-global-color-f6e5745);
    color: var(--e-global-color-173da71);
    border: 1px solid var(--e-global-color-dc369ab);
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

body .casGalleryTabBtn.casActive {
    background: var(--e-global-color-996f441);
    color: var(--e-global-color-52cc5dd);
    border-color: var(--e-global-color-996f441);
}

body .casGalleryTabBtn:hover {
    background: var(--e-global-color-996f441);
}

body .casGalleryContent {
    display: none;
}

body .casGalleryContent.casActive {
    display: block;
    animation: casFadeIn 0.3s ease;
}

body .casGalleryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

body .casGalleryItem {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    background: var(--e-global-color-f06a866);
}

body .casGalleryItem img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

body .casGalleryItem:hover img {
    transform: scale(1.05);
}

body .casGalleryItem.casHiddenItem {
    display: none;
}

body .casGalleryMoreBtnWrapper {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

body .casGalleryMoreBtn {
    background: var(--e-global-color-f06a866);
    color: var(--e-global-color-text);
    border: 1px solid var(--e-global-color-dc369ab);
    padding: 10px 64px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s ease;
}

body .casGalleryMoreBtn:hover {
    background: var(--e-global-color-a296c72);
    color: #fff;
}

body .casGalleryEmpty {
    text-align: center;
    color: var(--e-global-color-text);
    padding: 24px 0;
    font-size: 14px;
    opacity: 0.7;
}

/* Lightbox */
body .casLightbox {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

body .casLightboxContent {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: casZoomIn 0.3s;
    object-fit: contain;
}

body .casLightboxClose {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

body .casLightboxClose:hover,
body .casLightboxClose:focus {
    color: var(--e-global-color-accent);
    text-decoration: none;
    cursor: pointer;
}

@keyframes casZoomIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes casFadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* Gallery Responsive */
@media (max-width: 768px) {
    body .casGalleryGrid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* Lightbox Navigation & Icons */
body .casLightboxPrev,
body .casLightboxNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #f1f1f1;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    user-select: none;
    padding: 16px;
    z-index: 100000;
}

body .casLightboxPrev {
    left: 20px;
}

body .casLightboxNext {
    right: 20px;
}

body .casLightboxPrev:hover,
body .casLightboxNext:hover {
    color: var(--e-global-color-accent);
}

body .casGalleryTabBtn i {
    margin-right: 6px;
    font-size: 14px;
}

body .casLightboxContent {
    transition: opacity 0.2s ease;
}

/* -------------------------------------------------------------------------- */
/* Video Styles
/* -------------------------------------------------------------------------- */
body .casVideoList {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body .casVideoWrapper {
    width: 100%;
}

body .casVideoIframeWrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* Proporção 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    background: var(--e-global-color-f06a866);
    border: 1px solid var(--e-global-color-dc369ab);
}

body .casVideoIframeWrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

body .casVideoWrapper.casHiddenVideo {
    display: none;
}

body .casVideoMoreBtnWrapper {
    display: flex;
    justify-content: center;
    margin-top: 16px;
}

/* -------------------------------------------------------------------------- */
/* Tag List Styles (Reusable) */
body .casTagList {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

body .casTagItem {
    display: inline-flex;
    align-items: center;
    background: var(--e-global-color-dd4f13a);
    border: 1px solid var(--e-global-color-dc369ab);
    border-radius: 30px;
    padding: 12px 16px;
}

body .casTagIcon {
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .casTagIcon i,
body .casTagIcon svg {
    font-size: 14px;
    color: var(--e-global-color-accent);
    fill: var(--e-global-color-accent);
}

body .casTagLabel {
    color: var(--e-global-color-173da71);
    font-size: 14px;
    font-weight: 500;
}

/* Responsividade */
@media (max-width: 480px) {
    body .casTagList {
        gap: 6px;
    }

    body .casTagItem {
        padding: 10px 14px;
    }
}

/* -------------------------------------------------------------------------- */
/* Comments Styles */
/* -------------------------------------------------------------------------- */
body .casCommentList {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

body .casCommentItem {
    background: var(--e-global-color-dd4f13a);
    border: 1px solid var(--e-global-color-845c07a);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s ease;
}

body .casCommentItem:hover {
    transform: translateY(-2px);
}

body .casCommentHeader {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

body .casCommentAuthorInfo {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

body .casCommentAuthor {
    color: var(--e-global-color-primary);
    font-weight: 700;
    font-size: 16px;
}

body .casCommentDate {
    color: var(--e-global-color-text);
    font-size: 12px;
    opacity: 0.7;
}

body .casCommentScore {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

body .casScoreLabel {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--e-global-color-accent);
    background: var(--e-global-color-a296c72);
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

body .casCommentContent {
    color: var(--e-global-color-text);
    font-size: 14px;
    line-height: 1.6;
}

body .casCommentContent p {
    margin: 0;
}

body .casCommentsEmpty {
    text-align: center;
    padding: 40px 20px;
    background: var(--e-global-color-f06a866);
    border: 1px dashed var(--e-global-color-dc369ab);
    border-radius: 16px;
    color: var(--e-global-color-text);
    opacity: 0.8;
}

/* Responsividade de comentários */
@media (max-width: 480px) {
    body .casCommentItem {
        padding: 16px;
    }

    body .casCommentHeader {
        flex-direction: column;
        gap: 10px;
    }

    body .casCommentScore {
        align-items: flex-start;
    }
}

/* -------------------------------------------------------------------------- */
/* Post Content Styles */
/* -------------------------------------------------------------------------- */
body .casPostContentWrapper {
    width: 100%;
    background: var(--e-global-color-dd4f13a);
    border: 1px solid var(--e-global-color-845c07a);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

body .casPostContent {
    color: var(--e-global-color-text);
    font-size: 15px;
    line-height: 1.7;
    transition: max-height 0.4s ease;
}

body .casPostContent p {
    margin-bottom: 20px;
}

body .casPostContent p:last-child {
    margin-bottom: 0;
}

body .casPostContent img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

body .casPostContent.casIsTruncated {
    max-height: 120px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

body .casPostContent.casIsTruncated::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--e-global-color-dd4f13a));
    pointer-events: none;
}

body .casReadMoreBtnWrapper {
    display: flex;
    justify-content: center;
}

body .casReadMoreBtn {
    background: var(--e-global-color-f6e5745);
    color: var(--e-global-color-0c800bc);
    border: 1px solid var(--e-global-color-dc369ab);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
}

body .casReadMoreBtn:hover {
    background: var(--e-global-color-0f9e6ff);
    transform: translateY(-2px);
}

body .casReadMoreBtn i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

body .casPostContentWrapper.casExpanded .casReadMoreBtn i {
    transform: rotate(180deg);
}

@media (max-width: 480px) {
    body .casPostContentWrapper {
        padding: 16px;
    }

    body .casPostContent {
        font-size: 14px;
    }
}

/* -------------------------------------------------------------------------- */
/* Selo List Styles */
/* -------------------------------------------------------------------------- */
body .casSeloList {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

body .casSeloItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: var(--e-global-color-dd4f13a);
    border: 1px solid var(--e-global-color-845c07a);
    border-radius: 16px;
    padding: 12px;
    transition: all 0.2s ease;
    width: 90px;
    text-align: center;
}

body .casSeloItem:hover {
    transform: translateY(-2px);
    background: var(--e-global-color-f06a866);
    border-color: var(--e-global-color-accent);
}

body .casSeloImage {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .casSeloImage img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

body .casSeloName {
    color: var(--e-global-color-text);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

/* Responsividade de Selos */
@media (max-width: 480px) {
    body .casSeloList {
        gap: 8px;
    }

    body .casSeloItem {
        padding: 10px;
        width: 80px;
    }

    body .casSeloImage {
        width: 48px;
        height: 48px;
    }

    body .casSeloName {
        font-size: 10px;
    }
}

/* -------------------------------------------------------------------------- */
/* Page Grid Posts Styles */
/* -------------------------------------------------------------------------- */
body .casPageWrapper {
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    display: inline-grid;
}

body .casPageGridContainer {
    width: 100%;
    margin: 0 auto;
    gap: 20px;
    display: inline-grid;
}

body .casPageSectionTitle {
    color: var(--e-global-color-primary);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

body .casGridPosts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

body .casGridPosts_smaller {
    grid-template-columns: repeat(4, 1fr);
}

body .casGridItem {
    display: flex;
    flex-direction: column;
    background: var(--e-global-color-dd4f13a);
    border: 1px solid var(--e-global-color-845c07a);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body .casGridItem:hover {
    border-color: var(--e-global-color-accent);
}

body .casGridImageWrapper {
    width: 100%;
    aspect-ratio: 4 / 5;
    background: var(--e-global-color-f06a866);
    position: relative;
    overflow: hidden;
}

body img.casGridImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

body .casGridContent {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

body .casGridTitle {
    color: var(--e-global-color-primary);
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

body .casGridBairro {
    color: var(--e-global-color-text);
    font-size: 13px;
    font-weight: 500;
    opacity: 0.8;
}

body .casGridBairro i,
body .casGridBairro svg {
    margin-right: 4px;
    color: var(--e-global-color-accent);
}

/* Responsividade Page Grid */
@media (max-width: 768px) {
    body .casGridPosts {
        grid-template-columns: repeat(1, 1fr);
        gap: 12px;
    }

    body .casGridPosts_smaller {
        grid-template-columns: repeat(2, 1fr);
    }

    body .casGridContent {
        padding: 12px;
    }

    body .casGridTitle {
        font-size: 16px;
    }

    body .casGridBairro {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    body .casGridPosts {
        gap: 10px;
    }
}

/* -------------------------------------------------------------------------- */
/* Slider Styles */
/* -------------------------------------------------------------------------- */
body .casGrid_sliderWrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

body .casGrid_sliderContainer {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.4s ease-in-out;
}

body .casGrid_sliderSlide {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
}

body .casGrid_sliderSlide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body .casGrid_sliderPrev,
body .casGrid_sliderNext {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 1;
    transition: background 0.3s ease;
    font-size: 12px;
}

body .casGrid_sliderPrev:hover,
body .casGrid_sliderNext:hover {
    background: var(--e-global-color-accent);
}

body .casGrid_sliderPrev {
    left: 8px;
}

body .casGrid_sliderNext {
    right: 8px;
}

/* -------------------------------------------------------------------------- */
/* Info Box Styles */
/* -------------------------------------------------------------------------- */
.casInfoBox_message {
    margin-bottom: 15px;
    padding: 14px 18px;
    background: var(--e-global-color-dd4f13a);
    border: 1px solid var(--e-global-color-845c07a);
    color: var(--e-global-color-text);
    border-radius: 10px;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
}

/* -------------------------------------------------------------------------- */
/* Load More Button Styles */
/* -------------------------------------------------------------------------- */
body .casLoadMoreWrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 20px;
}

body .casLoadMoreBtn {
    background: var(--e-global-color-f6e5745);
    color: var(--e-global-color-0c800bc);
    border: 1px solid var(--e-global-color-dc369ab);
    padding: 10px 40px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

body .casLoadMoreBtn:hover {
    background: var(--e-global-color-0f9e6ff);
    transform: translateY(-2px);
}

body .casLoadMoreBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* -------------------------------------------------------------------------- */
/* Dynamic Search City Widget */
/* -------------------------------------------------------------------------- */
body .casSearchCityWrapper {
    display: flex;
    justify-content: center;
}

body .casSearchCityBtn {
    background: var(--e-global-color-f6e5745);
    color: var(--e-global-color-0c800bc);
    border: 1px solid var(--e-global-color-dc369ab);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

body .casSearchCityBtn:hover {
    background: var(--e-global-color-0f9e6ff);
    transform: translateY(-2px);
}

body .casSearchCityModal {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
}

body .casSearchCityModalContent {
    background-color: var(--e-global-color-dd4f13a);
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--e-global-color-845c07a);
}

body .casSearchCityModalClose {
    color: var(--e-global-color-173da71);
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

body .casSearchCityModalClose:hover,
body .casSearchCityModalClose:focus {
    color: var(--e-global-color-accent);
    text-decoration: none;
    cursor: pointer;
}

body .casSearchCityInputWrapper {
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
}

body .casSearchCityInputWrapper i,
body .casSearchCityInputWrapper svg {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--e-global-color-173da71);
    fill: var(--e-global-color-173da71);
}

body .casSearchCityInput {
    width: 100% !important;
    padding: 12px 15px 12px 40px !important;
    border-radius: 30px !important;
    border: 1px solid var(--e-global-color-dc369ab) !important;
    background: var(--e-global-color-b326ca0) !important;
    color: var(--e-global-color-text) !important;
    font-size: 16px !important;
    outline: none !important;
}

body .casSearchCityInput:focus {
    border-color: var(--e-global-color-accent) !important;
}

body .casSearchCityResults {
    max-height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

body .casSearchCityResultItem {
    background: var(--e-global-color-f06a866);
    padding: 12px 15px;
    border-radius: 12px;
    color: var(--e-global-color-text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

body .casSearchCityResultItem:hover {
    background: var(--e-global-color-b326ca0);
    border-color: var(--e-global-color-accent);
    color: var(--e-global-color-accent);
}

body .casSearchCityNoResults {
    text-align: center;
    color: var(--e-global-color-text);
    padding: 15px;
    opacity: 0.7;
}

body .casSearchCityLoading {
    text-align: center;
    color: var(--e-global-color-text);
    padding: 15px;
}

/*--------------------------------------------------------------
# Single Cadastro - Bottom Infos
--------------------------------------------------------------*/
body .casBottomInfosContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 15px 0;
    flex-wrap: wrap;
}

body .casBottomInfoItem {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--e-global-color-text);
    font-size: 14px;
    font-weight: 500;
}

body .casBottomInfoIcon,
body .casBottomInfoIcon svg {
    color: var(--e-global-color-accent);
    fill: var(--e-global-color-accent);
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

body .casBottomInfoLabel {
    color: var(--e-global-color-text);
}

/* -------------------------------------------------------------------------- */
/* City Grid Styles */
/* -------------------------------------------------------------------------- */
body .casGridCities {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 0;
}

body .casCityItem {
    background: var(--e-global-color-dd4f13a);
    border: 1px solid var(--e-global-color-845c07a);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

body .casCityItem:hover {
    transform: translateY(-8px);
    border-color: var(--e-global-color-accent);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    background: var(--e-global-color-f06a866);
}

body .casCityName {
    color: var(--e-global-color-primary);
    font-size: 24px;
    font-weight: 800;
    margin: 0;
    letter-spacing: -0.02em;
}

body .casCityBtn {
    background: var(--e-global-color-f6e5745);
    color: var(--e-global-color-0c800bc) !important;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    width: 100%;
    justify-content: center;
}

body .casCityBtn:hover {
    background: var(--e-global-color-accent);
    color: #fff !important;
    transform: scale(1.02);
}

body .casCityBtn i {
    font-size: 12px;
}

/* Responsividade City Grid */
@media (max-width: 768px) {
    body .casGridCities {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 16px;
    }

    body .casCityItem {
        padding: 24px;
    }

    body .casCityName {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    body .casGridCities {
        grid-template-columns: 1fr;
    }
}