/* ===== RESET E CONFIGURA��ES B�SICAS ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #8fa1c0;
    background-color: #181818;
    /*background-color: #f8fafc;*/
}

h1 {
    font-size: 1.1em;
}

a {
    display: inline-block;
    box-sizing: inherit;
    cursor: pointer;
    color: #c1c1c1;
    font-size: .9em;
    margin-right: 5px;
    padding: 5px 0px;
    margin: 2px;
    transition: all .1s linear 0s;
    transform-origin: center;
}

a:hover{
    color: #5676e0;
}

.infos>a {
    display: inline-block;
    box-sizing: inherit;
    cursor: pointer;
    color: #c1c1c1;
    font-size: .8em;
    margin-right: 5px;
    padding: 5px 0px;
    margin: 2px;
    transition: all .1s linear 0s;
    transform-origin: center;
}
.infos>a:hover{
    color: #5676e0;
}

#property-map{
	height: 400px; 
	width: 100%; 
	margin-bottom: 20px; 
	border-radius: 8px; 
	overflow: hidden;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0px;
}

/* ===== HEADER ===== */
.top-header {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    padding: 10px 0;
    font-size: 0.9rem;
    transition: transform 0.3s ease-in-out;
    position: relative;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.top-header.hidden {
    transform: translateY(-100%);
}

.top-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info span {
    margin-right: 20px;
    color: #e2e8f0;
    font-weight: 500;
}

.auth-links a {
    margin-left: 15px;
    text-decoration: none;
    color: #63b3ed;
    /*color: #ed6363;*/
    font-weight: 500;
    transition: color 0.3s;
}

.auth-links a:hover {
    color: #90cdf4;
    /*color: #f49090;*/
    text-decoration: underline;
}

.main-header {
    background-color: rgba(1, 0, 34, 0.6);
    box-shadow: -10px 5px 40px rgb(1, 0, 34);
    /*padding: 15px 0;
    position: sticky;*/
    position: relative;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.main-header.scrolled {
    top: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 12px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2d3748;
}

.logo img {
    height: 50px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /*background: linear-gradient(135deg, #b02b2b 0%, #e14242 100%);*/
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
	font-family: 'Montserrat', sans-serif;

}

.main-nav ul {
    display: flex;
    list-style: none;
    position: relative;
}

.main-nav > ul > li {
    margin-left: 25px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s;
    padding: 8px 12px;
    border-radius: 6px;
    position: relative;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 1);
    text-transform: uppercase;
    display: block;
    font-size: 14px;
}

.main-nav a:hover {
    text-shadow: unset;
    color: #2b55b0;
    background-color: #ebf4ff;
    transform: translateY(-2px);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #2b4ab0, #424ce1);
    border-radius: 3px;
    transition: width 0.3s;
}

.main-nav a:hover::after {
    width: 100%;
}

/* Estilos para o item com submenu */
.main-nav > ul > li:has(ul) > a {
    padding-right: 20px;
    position: relative;
}

.main-nav > ul > li:has(ul) > a::before {
    content: '▼';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) scale(0.7);
    font-size: 10px;
    transition: transform 0.3s;
}

.main-nav > ul > li:has(ul):hover > a::before {
    transform: translateY(-50%) scale(0.7) rotate(180deg);
}

/* Estilos para o submenu */
.main-nav > ul > li > ul {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background-color: rgba(43, 85, 176, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    /* Definindo colunas para quebrar a cada 5 itens */
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: row;
    gap: 0;
    width: max-content;
    max-width: 910px; /* Ajuste conforme necessário */
}

.main-nav > ul > li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Itens do submenu - definindo quebra a cada 5 itens */
.main-nav > ul > li > ul > li {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
}

.main-nav > ul > li > ul > li > a {
    padding: 10px 20px;
    color: #ffffff;
    text-transform: none;
    font-weight: 500;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.5);
    border-radius: 5px;
    white-space: nowrap;
    width: 100%;
    transition: all 0.3s;
    font-size: 13px;
}

.main-nav > ul > li > ul > li > a:hover {
    background-color: rgba(235, 244, 255, 0.2);
    color: #ffffff;
    transform: translateX(5px);
}

/* Remover efeitos do ::after para submenu */
.main-nav > ul > li > ul > li > a::after {
    display: none;
}

/* Linhas divisórias visuais entre as colunas (opcional) */
.main-nav > ul > li > ul > li:nth-child(5n) {
    position: relative;
}

.main-nav > ul > li > ul > li:nth-child(5n)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-download {
    display: inline-block;
    padding: 6px 13px;
    margin-top: 2px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    background: linear-gradient(45deg, #1e3142, #0039b3);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-download:hover {
    background: linear-gradient(135deg, #0039b3, #1e3142);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
}

.btn-download:active {
    transform: scale(0.97);
}

/* Responsividade */
@media (max-width: 1200px) {
    .main-nav > ul > li > ul {
        grid-template-columns: repeat(4, 1fr);
        max-width: 720px;
    }
    
    .main-nav > ul > li > ul > li:nth-child(5n)::after {
        display: none;
    }
    
    .main-nav > ul > li > ul > li:nth-child(4n)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10px;
        bottom: 10px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 992px) {
    .main-nav > ul > li > ul {
        grid-template-columns: repeat(3, 1fr);
        max-width: 540px;
    }
    
    .main-nav > ul > li > ul > li:nth-child(4n)::after {
        display: none;
    }
    
    .main-nav > ul > li > ul > li:nth-child(3n)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10px;
        bottom: 10px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
    }
    
    .main-nav > ul > li {
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .main-nav > ul > li > ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 5px;
        background-color: rgba(43, 85, 176, 0.8);
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
        width: 100%;
    }
    
    .main-nav > ul > li > ul > li:nth-child(3n)::after,
    .main-nav > ul > li > ul > li:nth-child(5n)::after,
    .main-nav > ul > li > ul > li:nth-child(4n)::after {
        display: none;
    }
    
    .main-nav > ul > li > ul > li:nth-child(2n)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 10px;
        bottom: 10px;
        width: 1px;
        background-color: rgba(255, 255, 255, 0.2);
    }
}

@media (max-width: 480px) {
    .main-nav > ul > li > ul {
        grid-template-columns: 1fr;
    }
    
    .main-nav > ul > li > ul > li:nth-child(2n)::after {
        display: none;
    }
}

/* ===== CARROSSEL PRINCIPAL ===== */
.main-carousel {
    position: relative;
    top: -80px;
    width: 100%;
    aspect-ratio: 16/8;
    /*height: 750px;*/
    overflow: hidden;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.6);
    margin-bottom: -40px;
}

.carousel-container {
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 2;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.85);
}

.carousel-caption {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
    max-width: 750px;
    background: rgba(0, 0, 0, 0.4);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
}

.carousel-caption h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2.2rem;
    padding: 15px 18px;
    cursor: pointer;
    z-index: 100;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}

.carousel-indicators {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.carousel-indicator.active {
    background-color: white;
    transform: scale(1.2);
}

.carousel-indicator:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Slides �nicos */
.main-carousel:has(.carousel-slide:only-child) .carousel-slide {
    opacity: 1 !important;
    position: relative !important;
}

.main-carousel:has(.carousel-slide:only-child) .carousel-control,
.main-carousel:has(.carousel-slide:only-child) .carousel-thumbnails {
    display: none !important;
}

/* Badge no carrossel */
.carousel-caption .property-type-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* ===== LAYOUT PRINCIPAL ===== */
.main-content {
    flex: 1;
    padding: 0px 15px 0px 0;
}

.sidebar {
    width: 320px;
    padding: 35px 0;
}

.properties-grid {
    /*color: #e9ecef;*/
    color: #e9ecef00;
    text-align: left;
    font-size: .85em;
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
    gap: 10px;
    justify-content: space-evenly;
}

.property-card {
    width: 100%;
    aspect-ratio: 210 / 400; /* 210:400 = 21:40 */
    max-width: 170px; /* largura máxima opcional */
    position: relative;
    /*background: white;*/
    background: rgba(255, 255, 255, 0);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
    /*border: 1px solid #e2e8f0;*/
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.8);
}

.property-image-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.property-card img {
    width: 100%;
    height: calc(100% - 70px);
    /* max-height: 320px; */
    object-fit: cover;
    transition: transform 0.5s;
}

.property-card:hover img {
    transform: scale(1.05);
}

.property-card-badge {
    position: absolute;
    top: 7px;
    left: 5px;
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    /*background: linear-gradient(135deg, #b02b2b 0%, #e14242 100%);*/
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    /*letter-spacing: 0.5px;*/
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.property-card-badge-quali {
    position: absolute;
    bottom: 75px; /* Alterado de top para bottom */
    left: 5px;
	background: linear-gradient(135deg, #2b6cb0 40%, #429981 70%);
    /*background: linear-gradient(135deg, #ecc94b 20%, #d69e2e 40%, #b7791f 60%); */
    color: white;
    padding: 2px 9px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.carousel-caption .property-card-badge-tipo-right {    
	position: absolute;
    bottom: 25px; /* Alterado de top para bottom */
    right: 25px;
	background: linear-gradient(135deg, #2b6cb0 40%, #429981 70%);
    /*background: linear-gradient(135deg, #ecc94b 20%, #d69e2e 40%, #b7791f 60%); */
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.property-card:hover .property-card-badge {
    transform: translateY(-2px);
}

.property-image-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.property-card:hover .property-image-link::before {
    opacity: 1;
}

.property-info {
    padding: 5px;
}

/*.property-info h3 {
    margin-bottom: 0px;
    font-size: 1.2rem;
    color: #2d3748;
    font-weight: 300;
    line-height: 1;
}*/
.property-info h3 {
    display: block;
    box-sizing: border-box;
    color: #efe9e9;
    font-family: "Segoe UI", "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1.1em !important;
    font-weight: 400 !important;
    text-align: left;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    background-color: var(--main-background-color);
}

.footer-year {
    box-sizing: border-box;
    font-family: Roobert, Arial, Helvetica, sans-serif;
    display: inline-block;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 10px 5px;
    margin-right: 4px;
    font-size: .8em;
    line-height: 0;
    color: white;
    filter: drop-shadow(0px 0px 6px #0e1723f5);
    text-shadow: 0 0 5px #026d14;
    background-image: linear-gradient(to bottom, #79c142, #62a82c);
}

.property-price {
    color: #2b6cb0;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.property-details {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.property-feature {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #4a5568;
    font-weight: 500;
    font-size: 0.9rem;
}

.property-feature.property-area {
    font-weight: 600;
    color: #2d3748;
}

/* ===== BOT�ES ===== */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(66, 153, 225, 0.5);
}

.btn:active {
    transform: translateY(0);
}

.btn-filter {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
}

/* ===== FILTROS ===== */
/*.filters-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}*/

.filters-widget {
	background: white;
	padding: 20px;
	border-radius: 12px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	margin-bottom: 20px;
}

.filters-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    color: #2d3748;
    font-size: 1.4rem;
    font-weight: 700;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #4a5568;
}

.filter-group select,
.filter-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f7fafc;
}

.filter-group select:focus,
.filter-group input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    outline: none;
}

/* ===== SIDEBAR WIDGETS ===== */
.sidebar-widget {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 25px;
    border: 1px solid #e2e8f0;
}

.sidebar-widget h3 {
    margin-bottom: 18px;
    color: #2d3748;
    font-size: 1.3rem;
    font-weight: 700;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 12px;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-form input:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    outline: none;
}

.newsletter-form button {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 153, 225, 0.5);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.about-section h2 {
    margin-bottom: 25px;
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

.about-section h1 {
    margin-bottom: 25px;
    color: #2d3748;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.feature {
    text-align: center;
    padding: 30px 25px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.feature .icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.feature h3 {
    margin-bottom: 15px;
    color: #2b6cb0;
    font-size: 1.4rem;
    font-weight: 700;
}

.feature p {
    color: #333333;
    font-size: 1rem;
    margin: 0;
}

/* ===== FOOTER ===== */
.main-footer {
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    padding: 60px 0 25px;
    margin-top: 70px;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #90cdf4;
    border-bottom: 2px solid #4a5568;
    padding-bottom: 12px;
}

.footer-column p {
    color: #cbd5e0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-column a:hover {
    color: #90cdf4;
    text-decoration: underline;
}

.social-links a {
    margin-right: 15px;
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    transition: all 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 0.9rem;
}

/* ===== PROPERTY DETAILS ===== */
.property-details-container {
    flex-direction: column;
    align-items: center;
}

.property-gallery {
    width: 100%;
    max-width: 1100px;
    height: 550px;
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.property-carousel {
    height: 550px;
}

.carousel-thumbnails {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    gap: 12px;
    padding: 0 20px;
}

.carousel-thumbnails img {
    width: 90px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.carousel-thumbnails img.active,
.carousel-thumbnails img:hover {
    opacity: 1;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.property-info-page {
    max-width: 850px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    border: 1px solid #e2e8f0;
}

.property-info-page h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2d3748;
    font-weight: 700;
}

.property-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.property-type-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2px 9px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.type-icon {
    font-size: 1.2rem;
}

.property-price-large {
    font-size: 2rem;
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.property-address {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 30px;
    font-weight: 500;
    padding-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

/* ===== PROPERTY FEATURES (AJUSTADO) ===== */
.property-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.feature {
    /*display: flex; */
    align-items: center;
    gap: 10px;
    background: #f7fafc;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    min-width: 140px;
}

.feature-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-text {
    font-weight: 600;
    color: #4a5568;
    font-size: 0.95rem;
}

.property-characteristics {
    margin: 35px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid #4299e1;
}

.property-characteristics h2 {
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 1.5rem;
}

.characteristics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.characteristic-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.characteristic-item:hover {
    transform: translateY(-2px);
}

.characteristic-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.characteristic-text {
    font-weight: 500;
    color: #4a5568;
}

.property-description {
    margin: 40px 0;
    padding: 30px;
    background: #f7fafc;
    border-radius: 12px;
    border-left: 5px solid #4299e1;
}

.property-description h2 {
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
}

.property-description p {
    line-height: 1.8;
    color: #4a5568;
    font-size: 1.1rem;
}

.property-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 35px 0;
}

.detail-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
}

.detail-card h3 {
    margin-bottom: 20px;
    color: #2b6cb0;
    font-size: 1.3rem;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.detail-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #f1f3f4;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: #4a5568;
}

.detail-value {
    font-weight: 500;
    color: #2d3748;
    text-align: right;
}

.contact-agent {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 35px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

.contact-agent h2 {
    margin-bottom: 20px;
    color: #2d3748;
    font-size: 1.8rem;
    font-weight: 700;
}

.contact-agent p {
    color: #718096;
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    background: white;
    font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
    outline: none;
}

.form-footer {
    text-align: center;
}

.form-note {
    font-size: 0.9rem;
    color: #718096;
    margin-top: 15px;
    font-style: italic;
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: block;
    opacity: 1;
}

.modal-content {
    margin: auto;
    display: block;
    width: auto;
    max-width: 90%;
    max-height: 80vh;
    animation: zoom 0.3s;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.close-modal:hover {
    color: #bbb;
    transform: scale(1.1);
}

.modal-caption {
    margin: 15px auto;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.download-btn {
    position: absolute;
    bottom: 30px;
    right: 35px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.zoomable-image {
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.zoomable-image:hover {
    transform: scale(1.02);
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    font-size: 2.5rem;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 2001;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.modal-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.modal-nav.prev {
    left: 25px;
}

.modal-nav.next {
    right: 25px;
}

/* ===== LOADING ===== */
#loading {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    display: none;
}

#loading::after {
    content: '...';
    animation: dots 1.5s infinite;
}

#no-more-results {
    background: #e9ecef;
    border-radius: 8px;
    font-weight: 500;
    margin: 20px 0;
    text-align: center;
    padding: 20px;
    color: #718096;
    display: none;
}

.results-count {
    color: 718096;
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/******** Menu Perfil/
/* Menu Perfil */
.menu-toggle-perfil {
	/*display: block;
	position: fixed; */
	top: 20px;
	right: 20px;
	z-index: 1001;
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 4px;
	padding: 0;
}

.menu-toggle-perfil span {
	display: block;
	width: 24px;
	height: 3px;
	background: white;
	border-radius: 2px;
	transition: all 0.3s ease;
}

.menu-toggle-perfil.active span:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.menu-toggle-perfil.active span:nth-child(2) {
	opacity: 0;
}

.menu-toggle-perfil.active span:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}
/* Sidebar Perfil */
.perfil-sidebar {
	position: fixed;
	/*top: 0; 
    width: 280px; */
	right: -300px;
	border-radius: 10px;
	background: white;
	box-shadow: 5px 0 15px rgba(0, 0, 0, 0.4);
	z-index: 1000;
	transition: right 0.3s ease;
	padding: 20px 20px 20px;
	overflow-y: auto;
}

.perfil-sidebar.active {
	right: 0;
}
/* Overlay Perfil*/
.overlay-Perfil {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

.overlay-Perfil.active {
	opacity: 1;
	visibility: visible;
}
.perfil-nav {
	list-style: none;
	margin-bottom: 10px;
}

/*.perfil-nav li {
	margin-bottom: 15px;
}*/

.perfil-nav a {
	display: block;
	padding: 12px 15px;
	text-decoration: none;
	color: #4a5568;
	font-weight: 600;
	border-radius: 6px;
	transition: all 0.3s;
}

.perfil-nav a:hover {
	background-color: #ebf4ff;
	color: #2b6cb0;
}

/* ===== BOT�O DE FAVORITO ===== */
.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    /*border-radius: 50%;*/
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid transparent;
}

.nota-imdb {
    text-align: left;
    margin: 0;
    list-style: none;
    text-decoration: none;
    position: absolute;
    right: 7px;
    top: 7px;
    z-index: 100;
    color: white;
    filter: drop-shadow(0px 0px 6px #0e1723f5);
    background-color: #0000004d;
    border-radius: 10px;
    padding: 0px 5px;
    font-family: Roobert, Arial, Helvetica, sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    line-height: 1.7em;
    font-size: 1em;
    border: solid 3px rgba(252, 214, 0, 0.795);
}

.footer-audio-type {
    box-sizing: border-box;
    font-family: Roobert, Arial, Helvetica, sans-serif;
    display: inline-block;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.651);
    border: solid 1px rgba(255, 255, 255, 0.349);
    border-radius: 4px;
    padding: 10px 5px;
    font-size: .78em;
    line-height: 0;
    text-transform: uppercase;
}

.favorite-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.favorite-btn.favorited {
    background: rgba(255, 215, 0, 0.8);
    border-color: #ffd700;
    color: #ffd700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.favorite-btn.favorited:hover {
    background: rgba(255, 215, 0, 0.3);
}

.favorite-btn.animating {
    animation: pulse 0.5s ease;
}

/* Para usu�rios n�o logados */
.favorite-btn:not(.favorited) {
    opacity: 0.7;
}

.favorite-btn:not(.favorited):hover {
    opacity: 1;
}

/* Estado desabilitado */
.favorite-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.favorite-btn.disabled:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.9);
}

/* MAPAS */

/* Estilos para os clusters de marcadores */
.marker-cluster {
    background-color: rgba(231, 76, 60, 0.7);
    border-radius: 50%;
    text-align: center;
    color: white;
    font-weight: bold;
    border: 3px solid white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.marker-cluster div {
    width: 30px;
    height: 30px;
    margin-left: 5px;
    margin-top: 5px;
    border-radius: 50%;
    background-color: rgba(231, 76, 60, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
}

.marker-cluster span {
    line-height: 30px;
}


/*****  Page Inscrever *****/
.profile-container {
	max-width: 800px;
	width: 100%;
	margin: 40px auto;
	padding: 30px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
	border: 1px solid #e2e8f0;
}

.profile-header {
	text-align: center;
	margin-bottom: 30px;
}

.profile-header h1 {
	color: #2d3748;
	font-size: 2.2rem;
	margin-bottom: 10px;
}

.profile-avatar {
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
	margin: 0 auto 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	font-size: 3rem;
	font-weight: bold;
}

.form-group {
	margin-bottom: 20px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #4a5568;
}

.form-group input {
	width: 100%;
	padding: 12px 15px;
	border: 2px solid #e2e8f0;
	border-radius: 8px;
	font-size: 1rem;
	transition: all 0.3s;
}

.form-group input:focus {
	border-color: #4299e1;
	box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
	outline: none;
}

.password-section {
	margin-top: 30px;
	padding-top: 20px;
	border-top: 2px solid #e2e8f0;
}

.password-section h3 {
	color: #2d3748;
	margin-bottom: 20px;
	font-size: 1.4rem;
}

.btn-update {
	background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
	color: white;
	padding: 14px 28px;
	border: none;
	border-radius: 8px;
	font-weight: 600;
	font-size: 1.1rem;
	cursor: pointer;
	transition: all 0.3s;
	width: 100%;
	margin-top: 20px;
}

.btn-update:hover {
	background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
	transform: translateY(-2px);
}

.alert {
	padding: 15px;
	border-radius: 8px;
	margin-bottom: 20px;
}

.alert-error {
	background-color: #fed7d7;
	color: #c53030;
	border: 1px solid #feb2b2;
}

.alert-success {
	background-color: #c6f6d5;
	color: #2f855a;
	border: 1px solid #9ae6b4;
}

/******** LOGIN e INSCREVACE ******/
/* ===== MODAL DE LOGIN ===== */
.login-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.login-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 450px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

.close-login-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    color: #718096;
    cursor: pointer;
    transition: color 0.3s;
}

.close-login-modal:hover {
    color: #2d3748;
}

.login-modal h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #2d3748;
    font-size: 1.8rem;
}

.login-message {
    padding: 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    text-align: center;
    display: none;
}

.login-message.error {
    background-color: #fed7d7;
    color: #c53030;
    border: 1px solid #feb2b2;
    display: block;
}

.login-message.success {
    background-color: #c6f6d5;
    color: #2f855a;
    border: 1px solid #9ae6b4;
    display: block;
}

.btn-login-modal {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-login-modal:hover {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
    transform: translateY(-2px);
}

.login-register-link {
    text-align: center;
    margin-top: 20px;
    color: #718096;
}

.login-register-link a {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
}

.login-register-link a:hover {
    text-decoration: underline;
}

/* Estilos para o sistema de recupera��o */
.login-forgot-link {
    text-align: center;
    margin: 15px 0;
}

.login-forgot-link a {
    color: #007bff;
    text-decoration: none;
}

.login-forgot-link a:hover {
    text-decoration: underline;
}

/* Estilos para as etapas do processo */
.forgot-step {
    transition: all 0.3s ease;
}

/* FILTROS */
.additional-filters {
	display: none;
	padding-top: 5px;
	border-top: 1px solid #eee;
	margin-top: 5px;
}

.amenities-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 10px;
	margin-top: 10px;
}

.amenity-checkbox {
	display: flex;
	align-items: center;
}

.amenity-checkbox input {
	margin-right: 8px;
	width: auto;
}

.loading {
	color: #7f8c8d;
	font-style: italic;
}
		
/* controle do slider de pre�o */
.price-slider {
    margin-top: 20px;
}

.slider-values {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.slider-container {
    position: relative;
    height: 30px;
    background: #ddd;
    border-radius: 10px;
}

.slider-track {
    position: absolute;
    height: 100%;
    background:  linear-gradient(135deg, #2b6cb0 40%, #429981 70%);
    border-radius: 10px;
    z-index: 1;
}

.slider-container input[type="range"] {
	left: -4%;
    position: absolute;
    width: 108%;
    height: 100%;
    background: transparent;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 2;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.slider-container input[type="range"]::-moz-range-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #2b6cb0;
    cursor: pointer;
    pointer-events: all;
    position: relative;
    z-index: 2;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
/* FIM FILTROS */

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* Propor��o 16:9 */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f5f5f5;
    border: 1px solid #ddd;
    margin-top: 15px;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-style: italic;
}

.capa {
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    position: relative;
    font-size: 1em;
    flex-wrap: wrap;
}
.capa-img {
    border-radius: 10px;
    box-sizing: border-box;
    display: block;
    width: 230px;
    min-width: 230px;
    height: 339px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .2);
    box-shadow: 0px 15px 60px rgb(7, 34, 43);
}
.capa-img > div {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.post-description {
    display: block;
    font-size: 1em;
    box-sizing: border-box;
    margin: 0 30px;
}
.meta {
    margin-bottom: 1em;
    font-size: 1.1em;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
.sl-quality {
    box-sizing: border-box;
    display: block;
    position: relative;
    margin-right: 1em;
    background-color: #565c67;
    color: white;
    border-radius: .3em;
    padding: 0 .2em;
    box-shadow: 0 0 15px #00000091;
    font-weight: 400;
    font-size: .95em;
}
.sl-imdb {
    box-sizing: border-box;
    color: #e6e6e6;
    position: relative;
    font-weight: 600;
    font-size: 1em;
    text-align: center;
    margin-right: 1em;
    display: block;
    float: left;
    white-space: nowrap;
}
.sl-imdb-ico, .heart {
    display: block;
    width: 1.4em;
    height: 1.4em;
    position: relative;
    float: left;
    margin-right: 2px;
    top: 15%;
}
.sl-imdb-ico::before, .heart::before {
    content: '';
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100%' height='100%' fill='rgb(201, 201, 201)' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M17.56 20.996a1 1 0 0 1-.46-.11l-5.1-2.67-5.1 2.67a1 1 0 0 1-1.45-1.06l1-5.63-4.12-4a1 1 0 0 1-.25-1 1 1 0 0 1 .81-.68l5.7-.83 2.51-5.13a1 1 0 0 1 1.8 0l2.54 5.12 5.7.83a1 1 0 0 1 .81.68 1 1 0 0 1-.25 1l-4.12 4 1 5.63a1 1 0 0 1-.4 1 1 1 0 0 1-.62.18Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}
.post-description>p>span:nth-of-type(1) {
    display: block;
    box-sizing: border-box;
    font-weight: 500;
    line-height: 1.8;
    text-align: left;
    font-size: 1em;
    float: left;
    color: #b3b9be;
}
.post-description>p>span:nth-of-type(2) {
    display: block;
    box-sizing: border-box;
    font-weight: 300;
    line-height: 1.8;
    text-align: left;
    font-size: 1em;
    margin-left: 12em;
    color: #838c95;
}
.sinopse {
    display: block;
    box-sizing: border-box;
    font-weight: 300;
    font-size: 1.2em;
    margin: 1.5em 0;
    text-shadow: 1px 2px #000000;
    position: relative;
}
.sinopse>span:nth-of-type(1) {
    display: block;
    color: white;
    font-weight: 600;
    font-size: 1em;
}
.sinopse>span:nth-of-type(2) {
    box-sizing: border-box;
    color: #9aa2a9;
    font-weight: 300;
    font-size: 0.8em;
    line-height: 1.5;
}
.post-title {
    text-align: left;
    font-weight: 600;
    line-height: 1.2;
    font-size: 1.4em;
    color: #e9ecef;
    box-sizing: border-box;
    text-shadow: 0 0 4px #0000008a;
    margin-bottom: .4em;
}
.iframe-container {
    width: 500px;
    aspect-ratio: 450/315;
    margin: 4em auto;
    padding: 0;
}
.trailer {
    position: relative;
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 50px 90px rgba(13, 176, 185, 0.2));
    padding-top: 20px;
}
.post-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 1em;
    margin: 2em 0;
}
.buttons-content {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    font-size: 1em;
    padding: .5em;
    width: 15em;
    height: 7em;
    position: relative;
}
.btn-down {
    display: flex;
    margin: 1px;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    box-sizing: border-box;
    border-radius: .3em;
    color: white;
    cursor: pointer;
    transition-property: background-color, color;
    position: relative;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, #131f85, #960c0c);
}
.buttons-content > span > a {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    height: 100%;
}
.mm-down-ico {
    display: block;
    width: 40px;
    height: 40px;
    margin-right: 3px;
    background-image: url("data:image/svg+xml,%3Csvg width='40px' height='40px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Ctitle%3Edownload_3_fill%3C/title%3E%3Cg stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg transform='translate(-912.000000, -144.000000)' fill-rule='nonzero'%3E%3Cg id='download_3_fill' transform='translate(912.000000, 144.000000)'%3E%3Cpath d='M24,0 L24,24 L0,24 L0,0 L24,0 Z M12.5934901,23.257841 L12.5819402,23.2595131 L12.5108777,23.2950439 L12.4918791,23.2987469 L12.4918791,23.2987469 L12.4767152,23.2950439 L12.4056548,23.2595131 C12.3958229,23.2563662 12.3870493,23.2590235 12.3821421,23.2649074 L12.3780323,23.275831 L12.360941,23.7031097 L12.3658947,23.7234994 L12.3769048,23.7357139 L12.4804777,23.8096931 L12.4953491,23.8136134 L12.4953491,23.8136134 L12.5071152,23.8096931 L12.6106902,23.7357139 L12.6232938,23.7196733 L12.6232938,23.7196733 L12.6266527,23.7031097 L12.609561,23.275831 C12.6075724,23.2657013 12.6010112,23.2592993 12.5934901,23.257841 L12.5934901,23.257841 Z M12.8583906,23.1452862 L12.8445485,23.1473072 L12.6598443,23.2396597 L12.6498822,23.2499052 L12.6498822,23.2499052 L12.6471943,23.2611114 L12.6650943,23.6906389 L12.6699349,23.7034178 L12.6699349,23.7034178 L12.678386,23.7104931 L12.8793402,23.8032389 C12.8914285,23.8068999 12.9022333,23.8029875 12.9078286,23.7952264 L12.9118235,23.7811639 L12.8776777,23.1665331 C12.8752882,23.1545897 12.8674102,23.1470016 12.8583906,23.1452862 L12.8583906,23.1452862 Z M12.1430473,23.1473072 C12.1332178,23.1423925 12.1221763,23.1452606 12.1156365,23.1525954 L12.1099173,23.1665331 L12.0757714,23.7811639 C12.0751323,23.7926639 12.0828099,23.8018602 12.0926481,23.8045676 L12.108256,23.8032389 L12.3092106,23.7104931 L12.3186497,23.7024347 L12.3186497,23.7024347 L12.3225043,23.6906389 L12.340401,23.2611114 L12.337245,23.2485176 L12.337245,23.2485176 L12.3277531,23.2396597 L12.1430473,23.1473072 Z' id='MingCute' fill-rule='nonzero'%3E%3C/path%3E%3Cpath d='M12.0000009,11 C12.5523,11 13.0000009,11.4477 13.0000009,12 L13.0000009,18.5838 L14.2934,17.2923 C14.6843,16.9021 15.3174,16.9026 15.7077,17.2934 C16.0979,17.6843 16.0974,18.3174 15.7066,18.7077 L12.8832,21.5266 C12.6301,21.7793 12.3839,22 12.0000009,22 C11.6640876,22 11.4336016,21.8310266 11.2116715,21.6194939 L8.29345,18.7077 C7.90262,18.3174 7.90212,17.6843 8.29234,17.2934 C8.68256,16.9026 9.31572,16.9021 9.70655,17.2923 L11.0000009,18.5838 L11.0000009,12 C11.0000009,11.4477 11.4477,11 12.0000009,11 Z M11.5,2 C14.2845,2 16.6601,3.7509 17.5858,6.2118 C20.13,6.90722 22,9.23523 22,12 C22,14.6194 20.3215,16.8468 17.9814,17.6651 C17.9086,17.0132 17.6225,16.3806 17.123,15.8803 C16.5903636,15.3468455 15.9068182,15.0557876 15.2094786,15.0072767 L15,15 L15,12 C15,10.3431 13.6569,9 12,9 C10.402275,9 9.09633597,10.2488774 9.00509252,11.8237227 L9,12 L9,15 C8.23145,15 7.46294,15.2935 6.87701,15.8803 C6.31762,16.4406 6.02588,17.1669 6.00165,17.9003 C3.71859,17.4377 2,15.4195 2,13 C2,10.9495 3.23434,9.18724 5.00053,8.41581 C5.04561,4.86476 7.93825,2 11.5,2 Z' fill='black'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: cover;
    transition: all .2s linear 0s;
}
.btn-down>.text {
    font-size: 1em;
    position: relative;
}
.btn-down>.text>span:nth-of-type(1) {
    display: block;
    font-weight: 700;
    color: var(--main-background-color);
    font-size: .67em;
    line-height: 1.3em;
    font-style: italic;
}
.btn-down>.text>span:nth-of-type(2) {
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--main-background-color);
    font-size: .9em;
    line-height: 1.2em;
}
.btn-down>.text>span:nth-of-type(3) {
    display: block;
    font-weight: 700;
    color: var(--main-background-color);
    font-size: .7em;
    line-height: 1.2em;
}
.btn-down>.text>span>strong {
    display: inline-block;
    font-weight: 700;
    font-size: 1em;
    font-style: normal;
    line-height: 1.2em;
    color: var(--main-background-color);
    padding: 0 .1em;
    border: solid 2px #000000;
    border-radius: 3px;
    margin-left: 4px;
    transition: all .2s linear 0s;
}
.btn-down>.text>span {
    transition: all .2s linear 0s;
}
.post-buttons>.epsodios>p {
    margin: 5px;
}

.header-actions {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
	flex-wrap: wrap;
	gap: 15px;
}

.btn-group {
	display: flex;
	gap: 10px;
}

.filtro-toggle {
	background: linear-gradient(135deg, #718096 0%, #a0aec0 100%);
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-weight: 600;
	font-size: 1rem;
	transition: all 0.3s;
	box-shadow: 0 4px 12px rgba(160, 174, 192, 0.4);
	margin-left: 10px;
}

.filtro-toggle:hover {
	background: linear-gradient(135deg, #4a5568 0%, #718096 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(160, 174, 192, 0.5);
}

.filtro-container {
	margin-bottom: 20px;
	transition: all 0.3s ease;
}

.filters-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
	gap: 15px;
	margin-bottom: 5px;
}

.paginacao {
    display: flex;
    justify-content: center;
    font-weight: 900;
    align-items: center;
    margin: 20px 0;
    gap: 5px;
}

.paginacao a, .paginacao span {
    display: inline-block;
    padding: 8px 12px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #c2c2c2;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.paginacao a:hover {
    background-color: #f0f0f0;
    color: #363636;
}

.paginacao .ativa {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.paginacao .desabilitado {
    color: #6c757d;
    pointer-events: none;
    background-color: #e9ecef;
}

.setas {
    font-weight: bold;
}

#iform-busca {
    transition-duration: 0.1s;
    background-color: rgba(255, 255, 255, 0.256);
    border-radius: 22.5px;
    color: #e9ecef;
    box-sizing: border-box;
    width: 340px;
    height: 45px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    font-size: 15px;
    font-style: normal;
    position: relative;
    display: inline-block;
    vertical-align: top;
}
#input-busca {
    display: block;
    background-color: transparent;
    color: #fff;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    resize: none;
    border: 0;
    outline: 0;
    border-radius: inherit;
    width: 100%;
    height: 100%;
    line-height: 100%;
    padding-left: 45px;
    padding-right: 20px;
    transition-duration: 0.3s;
    box-sizing: border-box;
}
.btn-desk-search {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    border: none;
    outline: 0;
    width: 45px;
    height: 45px;
    background-color: transparent;
}
.btn-desk-search::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: relative;
    top: 3px;
    left: 10px;
    width: 16px;
    height: 16px;
    border: 2px rgba(255, 255, 255, 0.886) solid;
    border-radius: 100%;
}
.btn-desk-search::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: relative;
    border-radius: 3px;
    top: -1px;
    left: 25px;
    width: 3px;
    height: 9px;
    background-color: #ffffffe2;
    transform: rotate(-45deg);
}


#iform-busca:hover .btn-desk-search::after {
    background-color: #0000007f;
}

#iform-busca:hover .btn-desk-search::before {
    border-color: #0000007f;
}

#iform-busca input:focus+.btn-desk-search::after {
    background-color: #0000007f;
}

#iform-busca input:focus+.btn-desk-search::before {
    border-color: #0000007f;
}

#iform-busca input::placeholder {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 0.9em;
    color: #dfdfdf;
    opacity: 1;
}

#iform-busca input:focus {
    color: #080808;
    background-color: #e9e3e3;
}

#iform-busca:hover input::placeholder {
    color: #6b6b6b;
}

#iform-busca input:focus::placeholder {
    color: #6b6b6b;
}

#iform-busca:hover>input {
    background-color: #e9e3e3;
    color: #190707;
}

@keyframes zoom {
    from {transform: scale(0.8); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

@keyframes dots {
    0%, 20% { content: '.'; }
    40% { content: '..'; }
    60%, 100% { content: '...'; }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@keyframes modalFadeIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVIDADE ===== */
/* ===== AJUSTES PARA TELAS GRANDES (1920px+) ===== */
@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        padding: 0 20px;
    }
    
    /* Aumentar o tamanho do carrossel */
    .main-carousel {
        width: 100%;
        aspect-ratio: 16/7;
        /*height: 850px;*/
        margin-bottom: -60px;
    }
    
    .carousel-caption {
        left: 80px;
        max-width: 850px;
        padding: 35px;
    }
    
    .carousel-caption h2 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }
    
    .carousel-caption p {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .carousel-control {
        font-size: 2.5rem;
        padding: 18px 22px;
    }
    
    /* Aumentar grid para 4 colunas */
    /*.properties-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 10px;
        margin: 40px 0;
    }*/

    
    /*.property-card img {
        height: 260px;
    }*/
    
    .property-info h3 {
        font-size: 1.4rem;
    }
    
    .property-price {
        font-size: 1.7rem;
    }
    
    /* Aumentar sidebar */
    .sidebar {
        width: 380px;
        padding: 40px 0 40px 40px;
    }
    
    .main-content {
        padding: 0px 0px 0px 0;
    }
    
    /* Ajustar about section */
    .about-section {
        margin: 80px 0;
        padding: 50px;
    }
    
    .about-section h2 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .about-section h1 {
        font-size: 2.5rem;
        margin-bottom: 30px;
    }
    
    .about-section p {
        font-size: 1.2rem;
        margin-bottom: 50px;
        max-width: 1000px;
    }
    
    .about-features {
        gap: 30px;
        margin-top: 50px;
    }
    
    .feature {
        padding: 35px 30px;
    }
    
    .feature .icon {
        font-size: 3.5rem;
        margin-bottom: 25px;
    }
    
    .feature h3 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    
    .feature p {
        font-size: 1.1rem;
    }
    
    /* Ajustar footer */
    .footer-columns {
        gap: 50px;
        margin-bottom: 50px;
    }
    
    .footer-column h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .footer-column p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }
    
    /* Property details page adjustments */
    .property-gallery {
        width: 1400px;
        height: 650px;
    }
    
    .property-carousel {
        height: 650px;
    }
    
    .property-info-page {
        max-width: 1100px;
        padding: 50px;
    }
    
    .property-info-page h1 {
        font-size: 3rem;
        margin-bottom: 20px;
    }
    
    .property-price-large {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .property-address {
        font-size: 1.4rem;
        margin-bottom: 40px;
        padding-bottom: 25px;
    }
    
    .property-features {
        gap: 30px;
        margin: 40px 0;
    }
    
    .feature {
        padding: 18px 25px;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .feature-text {
        font-size: 1.1rem;
    }
    
    .property-characteristics {
        margin: 45px 0;
        padding: 35px;
    }
    
    .property-characteristics h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }
    
    .characteristics-grid {
        gap: 20px;
    }
    
    .characteristic-item {
        padding: 15px 20px;
    }
    
    .characteristic-icon {
        font-size: 1.5rem;
    }
    
    .characteristic-text {
        font-size: 1.1rem;
    }
    
    .property-description {
        margin: 50px 0;
        padding: 40px;
    }
    
    .property-description h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .property-description p {
        font-size: 1.2rem;
        line-height: 1.9;
    }
    
    .property-details-grid {
        gap: 30px;
        margin: 45px 0;
    }
    
    .detail-card {
        padding: 30px;
    }
    
    .detail-card h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
    
    .detail-item {
        padding: 10px 0;
    }
    
    .detail-label,
    .detail-value {
        font-size: 1.1rem;
    }
    
    .contact-agent {
        padding: 45px;
        margin-top: 50px;
    }
    
    .contact-agent h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .contact-agent p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .contact-form input,
    .contact-form textarea {
        padding: 16px 20px;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }
    
    .contact-form button {
        padding: 18px 35px;
        font-size: 1.2rem;
    }
    
    /* Modal adjustments */
    .modal-content {
        max-width: 80%;
        max-height: 85vh;
    }
    
    .close-modal {
        top: 30px;
        right: 50px;
        font-size: 50px;
    }
    
    .modal-caption {
        font-size: 1.4rem;
        padding: 15px 25px;
        margin: 20px auto;
    }
    
    .download-btn {
        bottom: 40px;
        right: 50px;
        padding: 15px 25px;
        font-size: 18px;
    }
    
    .modal-nav {
        font-size: 3rem;
        padding: 20px 25px;
    }
    
    .modal-nav.prev {
        left: 35px;
    }
    
    .modal-nav.next {
        right: 35px;
    }
}

@media (max-width: 1200px) {
    /*.properties-grid {
        grid-template-columns: repeat(3, 1fr);
    }*/
    
    .container {
        padding: 0 15px;
    }
    
    
    /* Aumentar o tamanho do carrossel */
    .main-carousel {
        width: 100%;
        aspect-ratio: 16/8;
        margin-bottom: -60px;
    }
}

@media (max-width: 992px) {
    .container {
        flex-direction: column;
    }
    /* Aumentar o tamanho do carrossel */
    .main-carousel {
        width: 100%;
        aspect-ratio: 16/8;
        margin-bottom: -60px;
    }
    
    .main-content {
        padding: 30px 0;
    }
    
    .sidebar {
        width: 100%;
        padding: 30px 0;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .property-info-page {
        padding: 30px 25px;
    }
    
    /*.properties-grid {
        grid-template-columns: repeat(2, 1fr);
    }*/
}

@media (max-width: 768px) {
    .main-header .container {
        flex-direction: column;
        text-align: center;
    }
    /* Aumentar o tamanho do carrossel */
    .main-carousel {
        height: 450px;
        aspect-ratio: 16/10;
        margin-bottom: -60px;
    }
    .logo {
        margin-bottom: 15px;
    }
    
    .logo img {
        height: 45px;
    }
    
    .logo h1 {
        font-size: 1.6rem;
    }
    
    .main-nav ul {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .main-nav li {
        margin: 5px 10px;
    }
    
    .carousel-caption {
        left: 20px;
        bottom: 40px;
        padding: 20px;
        max-width: 85%;
    }
    
    .carousel-caption h2 {
        font-size: 1.2rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    /*.properties-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }*/
    
    .top-header .container {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .contact-info span {
        display: block;
        margin: 5px 0;
    }
    
    .auth-links a {
        margin: 0 8px;
    }
    
    .about-section {
        padding: 30px 20px;
        margin: 40px 0;
    }
    
    .about-section h2 {
        font-size: 1.8rem;
    }

    .about-section h1 {
        font-size: 1.8rem;
    }
    
    .property-gallery {
        margin-bottom: 30px;
        height: 400px;
    }
    
    .property-carousel {
        height: 400px;
    }
    
    .carousel-thumbnails {
        flex-wrap: wrap;
        padding: 0 10px;
    }
    
    .carousel-thumbnails img {
        width: 70px;
        height: 55px;
    }
    
    .property-info-page h1 {
        font-size: 2rem;
    }
    
    .property-price-large {
        font-size: 1.7rem;
    }
    
    .property-features {
        justify-content: center;
        gap: 10px;
    }
    
    .feature {
        flex: 1;
        min-width: 120px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        padding: 10px;
    }
    
    .property-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .characteristics-grid {
        grid-template-columns: 1fr;
    }
    
    .property-details-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .detail-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-value {
        text-align: left;
    }
    
    .modal-content {
        max-width: 95%;
        max-height: 70vh;
    }
    
    .close-modal {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    
    .modal-nav {
        font-size: 2rem;
        padding: 12px 16px;
    }
    
    .modal-nav.prev {
        left: 15px;
    }
    
    .modal-nav.next {
        right: 15px;
    }
    
    .download-btn {
        bottom: 20px;
        right: 20px;
        padding: 10px 16px;
        font-size: 14px;
    }
    
    .property-gallery {
        width: 100%;
        height: 350px;
    }
    .top-header {
        display: none;
    }
    
    /* Menu Hamburguer */
    .menu-toggle {
        display: block;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        cursor: pointer;
        box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.9);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        padding: 0;
    }
    
    .menu-toggle span {
        display: block;
        width: 24px;
        height: 3px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    /* Sidebar Mobile */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -300px;
        width: 280px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        transition: right 0.3s ease;
        padding: 20px 20px 20px;
        overflow-y: auto;
    }
    
    .mobile-sidebar.active {
        right: 0;
    }
    
    .mobile-nav {
        list-style: none;
        margin-bottom: 30px;
    }
    
    .mobile-nav li {
        margin-bottom: 15px;
    }
    
    .mobile-nav a {
        display: block;
        padding: 12px 15px;
        text-decoration: none;
        color: #4a5568;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s;
    }
    
    .mobile-nav a:hover {
        background-color: #ebf4ff;
        color: #2b6cb0;
    }
    
    .mobile-auth {
        padding: 20px 0;
        border-top: 1px solid #e2e8f0;
    }
    
    .mobile-auth a {
        display: block;
        padding: 12px 15px;
        text-decoration: none;
        color: #63b3ed;
        font-weight: 600;
        border-radius: 6px;
        transition: all 0.3s;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .mobile-auth a.login {
        background: linear-gradient(135deg, #2b6cb0 0%, #4299e1 100%);
        color: white;
    }
    
    .mobile-auth a.register {
        border: 2px solid #63b3ed;
        color: #63b3ed;
    }
    
    .user-info-mobile {
        padding: 15px;
        background: #f7fafc;
        border-radius: 8px;
        margin-bottom: 20px;
    }
    
    .user-info-mobile p {
        margin: 0;
        font-weight: 600;
        color: #2d3748;
    }
    
    .user-info-mobile a {
        display: block;
        text-align: center;
        padding: 8px;
        background: #e53e3e;
        color: white;
        border-radius: 4px;
        text-decoration: none;
        margin-top: 10px;
    }
    
    /* Overlay */
    .overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s;
    }
    
    .overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Ajustes no header principal para mobile */
    .main-header .container {
        padding: 10px 15px;
    }
    
    .logo h1 {
        font-size: 1.4rem;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Ocultar navega��o principal no mobile */
    .main-header {
        display: none;
    }
    
	.profile-container {
		/* margin: 20px; */
		padding: 20px;
	}
	
	.profile-header h1 {
		font-size: 1.8rem;
	}
	
	.profile-avatar {
		width: 100px;
		height: 100px;
		font-size: 2.5rem;
	}

    .login-modal-content {
        width: 90%;
        padding: 25px 20px;
        margin: 20px;
    }
    
    .login-modal h2 {
        font-size: 1.5rem;
    }
    
	.filters-grid {
		grid-template-columns: 1fr;
	}

}

/* Ajustes para telas maiores */
@media (min-width: 769px) {
    .menu-toggle,
    .mobile-sidebar,
    .overlay {
        display: none;
    }
}

@media (max-width: 480px) {
	.carousel-caption .property-card-badge-tipo-right {    
		bottom: 13px;
		right: 10px;
	}
	
	.property-info h1 {
        font-size: 1.4rem;
    }
	
    .property-characteristics h2, .property-description h2, .property-map-section h2 {
        font-size: 1rem;
    }

    .carousel-caption {
        left: 0;
		right: 0;
		margin: 0 auto;
        bottom: 30px;
        padding: 10px;
    }
    
    .carousel-caption h2 {
        font-size: 1.3rem;
    }
    
    .carousel-caption p {
        font-size: 0.9rem;
    }
    
    .carousel-control {
        font-size: 1.2rem;
        padding: 5px 10px;
    }
    
	.carousel-control.prev {
		left: 10px;
	}

	.carousel-control.next {
		right: 10px;
	}
	
	.carousel-indicators {
		bottom: 10px;
	}
	
    .property-info-page {
        padding: 25px 20px;
    }
    
    .property-info-page h1 {
        font-size: 1.8rem;
    }
    
    .property-price-large {
        font-size: 1.5rem;
    }
    
    .contact-agent {
        padding: 25px 20px;
    }
    
    .property-characteristics {
        padding: 20px;
    }
	
    
    .detail-card {
        padding: 20px;
    }
    
    .characteristic-item {
        padding: 10px;
    }
    
    .property-gallery {
        height: 300px;
    }
    
    .results-count,
    #loading,
    #no-more-results {
        font-size: 1rem;
        padding: 15px;
    }
    
    .property-features {
        flex-direction: column;
    }
    
    .feature {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }
	
	.btn {
		padding: 5px 10px;
	}
	
	.favorite-btn.bottom{
		top: unset;
		bottom: 15px;
	}
    .iframe-container {
        width: calc(100% - 10px);
        aspect-ratio: 450 / 315;
    }
    .post-description {
        margin: unset;
    }
    .post-title{
        margin-top: 20px;
    }.post-description>p>span:nth-of-type(1) {
        font-size: .85em;
    }
    .post-description>p>span:nth-of-type(2) {
        font-size: .85em;
    }
    .meta {
        font-size: .85em;
    }
    /*.infos>a {
        display: inline-block;
        box-sizing: inherit;
        cursor: pointer;
        color: #c1c1c1;
        font-size: .9em;
        margin-right: 5px;
        padding: 5px 0px;
        margin: 2px;
        transition: all .1s linear 0s;
        transform-origin: center;
    }*/
}