/* Estilos Gerais */
:root {
    /* Cores principais */
    --primary-color: #00203F; /* Azul marinho/petróleo escuro */
    --secondary-color: #0052A5; /* Azul médio */
    --accent-color: #D4AF37; /* Dourado */
    
    /* Cores de texto */
    --text-color: #ffffff;
    --text-dark: #333333;
    
    /* Gradientes */
    --blue-gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #F2DC9E 100%);
    
    /* Cores de status dos lotes */
    --disponivel-color: #4CAF50;
    --reservado-color: #FFC107;
    --vendido-color: #F44336;
    --light-color: #F8F9FA;
    --dark-color: #0A1A2A;
}

body {
    font-family: 'Work Sans', 'Outfit', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    overflow-x: hidden;
    line-height: 1.8;
    font-size: 17px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Manrope', 'Work Sans', sans-serif;
    font-weight: 500;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

p {
    font-family: 'Work Sans', 'Outfit', sans-serif;
    font-size: 1.1em;
    line-height: 1.8;
    font-weight: 300;
}

.btn, button, a {
    font-family: 'Manrope', 'Outfit', sans-serif;
    letter-spacing: 0.5px;
}

section {
    padding: 100px 0;
    overflow: hidden;
}

/* Menu Toggle Button */
.menu-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999;
}

.menu-btn {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-btn i {
    color: #fff;
    font-size: 20px;
}

.menu-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Menu Overlay */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 57, 84, 0.98); /* Usando a cor primária com transparência */
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    overflow-y: auto;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.overlay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.overlay-logo {
    height: 60px;
}

.close-menu {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu i {
    color: #fff;
    font-size: 20px;
}

.close-menu:hover {
    background-color: var(--accent-color);
    transform: rotate(90deg);
}

.overlay-menu {
    flex: 1;
    display: flex;
    align-items: center;
}

.overlay-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.overlay-menu ul li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.menu-overlay.active .overlay-menu ul li {
    opacity: 1;
    transform: translateY(0);
}

.overlay-menu ul li a {
    font-family: 'Manrope', sans-serif;
    letter-spacing: 1.5px;
    font-weight: 400;
    font-size: 32px;
    color: #fff;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    display: inline-block;
}

.overlay-menu ul li a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
}

.overlay-menu ul li a:hover {
    color: var(--accent-color);
}

.overlay-menu ul li a:hover:before {
    width: 100%;
}

.overlay-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
}

.btn-outline-light {
    border: 2px solid #fff;
    color: #fff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Manrope', sans-serif;
}

.btn-outline-light:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
}

.overlay-social {
    display: flex;
}

.overlay-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    color: #fff;
    transition: all 0.3s ease;
}

.overlay-social a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-background-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #fff;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
}

.hero-content p {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

.hero-content .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-logo {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 100;
}

.hero-logo img {
    max-width: 220px;
}

@media (max-width: 991px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-logo img {
        max-width: 180px;
    }
}

@media (max-width: 767px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1rem;
    }
    
    .hero-logo img {
        max-width: 150px;
    }
}

/* Botões */
.btn-primary {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(201, 167, 115, 0.3);
    font-family: 'Manrope', sans-serif;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 167, 115, 0.4);
}

/* Animações para o menu */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-overlay.active .overlay-menu ul li:nth-child(1) {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.1s;
}

.menu-overlay.active .overlay-menu ul li:nth-child(2) {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.2s;
}

.menu-overlay.active .overlay-menu ul li:nth-child(3) {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.3s;
}

.menu-overlay.active .overlay-menu ul li:nth-child(4) {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.4s;
}

.menu-overlay.active .overlay-menu ul li:nth-child(5) {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.5s;
}

.menu-overlay.active .overlay-menu ul li:nth-child(6) {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.6s;
}

.menu-overlay.active .overlay-menu ul li:nth-child(7) {
    animation: fadeInUp 0.5s ease forwards;
    animation-delay: 0.7s;
}

/* Media Queries */
@media (max-width: 991px) {
    .menu-overlay-content {
        padding: 30px;
    }
    
    .overlay-menu ul li a {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 48px;
    }
    
    .hero-content p {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .menu-toggle {
        top: 20px;
        right: 20px;
    }
    
    .menu-btn {
        width: 45px;
        height: 45px;
    }
    
    .overlay-menu ul li a {
        font-size: 24px;
    }
    
    .overlay-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .overlay-social {
        margin-top: 20px;
    }
    
    .overlay-social a {
        margin-left: 0;
        margin-right: 15px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .hero-content .subtitle {
        font-size: 16px;
    }
}

/* Sobre Section */
.sobre .features-list {
    padding: 0;
    list-style: none;
}

.sobre .features-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sobre .features-list i {
    color: var(--accent-color);
    margin-right: 15px;
}

.sobre-img img {
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Lotes Section */
.lotes-map-container {
    position: relative;
    margin-bottom: 50px;
}

.lotes-map img {
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.lotes-legenda {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.legenda-item {
    display: flex;
    align-items: center;
    margin: 0 20px;
}

.legenda-item span {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    border-radius: 0;
}

.legenda-item .disponivel {
    background-color: var(--disponivel-color);
}

.legenda-item .reservado {
    background-color: var(--reservado-color);
}

.legenda-item .vendido {
    background-color: var(--vendido-color);
}

.lote-card {
    background: var(--secondary-color);
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    position: relative;
    transition: 0.3s;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.lote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.lote-status {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px 15px;
    border-radius: 0;
    font-size: 12px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lote-status.disponivel {
    background-color: var(--disponivel-color);
}

.lote-status.reservado {
    background-color: var(--reservado-color);
}

.lote-status.vendido {
    background-color: var(--vendido-color);
}

.lote-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--light-color);
}

.lote-area, .lote-preco {
    font-size: 16px;
    margin-bottom: 15px;
    color: var(--text-color);
}

.lote-preco {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 20px;
}

.btn-interesse {
    background: var(--accent-color);
    color: var(--dark-color);
    border: none;
    padding: 12px 25px;
    border-radius: 0;
    cursor: pointer;
    transition: 0.3s;
    width: 100%;
    margin-top: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-interesse:hover {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
}

.btn-interesse:disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* Localização Section */
.localizacao-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.localizacao-content {
    padding-right: 30px;
}

.localizacao-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.localizacao-info .info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.localizacao-info .info-item .icon i {
    color: #fff;
    font-size: 20px;
}

.localizacao-info .info-item .content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.localizacao-info .info-item .content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

.localizacao-cta {
    margin-top: 30px;
}

.localizacao-map {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Counter Section */
.counter-section {
    padding: 100px 0;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.counter-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 32, 63, 0.85);
}

.counter-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--accent-color);
}

.counter-icon i {
    color: var(--accent-color);
    font-size: 30px;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.counter-item h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 400;
}

/* Depoimentos Section */
.depoimentos-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.depoimento-item {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 20px 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.depoimento-content {
    margin-bottom: 20px;
    position: relative;
}

.depoimento-content:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 24px;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: -10px;
}

.depoimento-content p {
    font-size: 16px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.depoimento-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid var(--accent-color);
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info span {
    font-size: 14px;
    color: #777;
}

.depoimentos-slider .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: var(--primary-color);
    opacity: 0.5;
}

.depoimentos-slider .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: var(--accent-color);
}

/* Contato Section */
.contato-section {
    padding: 100px 0;
}

.contato-info {
    margin-bottom: 30px;
}

.contato-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contato-info .info-item .icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.contato-info .info-item .icon i {
    color: #fff;
    font-size: 20px;
}

.contato-info .info-item .content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.contato-info .info-item .content p {
    font-size: 15px;
    color: #666;
    margin-bottom: 0;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
}

.contato-form {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    display: block;
    color: var(--primary-color);
}

.form-control {
    height: 50px;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 10px 15px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

textarea.form-control {
    height: auto;
}

.form-check-input:checked {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Footer */
#footer {
    background-color: var(--primary-color);
    color: #fff;
    padding-top: 70px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-info p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-info strong {
    color: var(--accent-color);
}

.footer-links h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li i {
    font-size: 12px;
    color: var(--accent-color);
    margin-right: 8px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-newsletter h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-newsletter p {
    font-size: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input[type="email"] {
    border: 0;
    padding: 12px 15px;
    width: calc(100% - 110px);
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
}

.footer-newsletter input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background-color: var(--accent-color);
    color: #fff;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
    background-color: #d4af37;
}

.copyright {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.copyright span {
    color: var(--accent-color);
}

.credits {
    text-align: center;
    padding-bottom: 25px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.credits a {
    color: var(--accent-color);
    text-decoration: none;
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 90px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #fff;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    width: 40px;
    height: 40px;
    bottom: 30px;
    right: 30px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    color: #fff;
}

/* Responsividade */
@media (max-width: 1199px) {
    .hero-content h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background-color: var(--primary-color);
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .localizacao-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .contato-info {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .counter-item {
        margin-bottom: 30px;
    }
    
    .footer-info, .footer-links, .footer-newsletter {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .btn-primary, .btn-outline {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .section-heading h2 {
        font-size: 28px;
    }
    
    .counter-number {
        font-size: 36px;
    }
    
    .counter-item h4 {
        font-size: 16px;
    }
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading .subtitle {
    display: inline-block;
    color: var(--accent-color);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    font-weight: 500;
}

.section-heading h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-heading h2:after {
    content: '';
    position: absolute;
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: calc(50% - 30px);
}

.section-heading p {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Botões */
.btn-primary {
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #fff;
    padding: 12px 35px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 2px 10px rgba(201, 165, 92, 0.3);
    font-family: 'Manrope', sans-serif;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    padding: 10px 30px;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.btn-outline:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.4);
}

/* Seção de Benefícios - REMOVIDA */

/* Localização */
.localizacao-section {
    position: relative;
}

.localizacao-mapa {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.localizacao-info {
    padding-left: 30px;
}

.info-box {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
}

.info-box .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(201, 165, 92, 0.1);
    border-radius: 50%;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-box .icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.info-box h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-box p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

/* Counter Section */
.counter-section {
    position: relative;
    padding: 100px 0;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.counter-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 54, 93, 0.9);
}

.counter-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.counter-box .icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(201, 165, 92, 0.2);
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    margin-bottom: 20px;
}

.counter-box .icon i {
    font-size: 36px;
    color: var(--accent-color);
}

.counter-box .counter {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.counter-box h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0;
    font-weight: 500;
}

/* Depoimentos */
.depoimentos-section {
    background-color: #fff;
    position: relative;
}

.depoimento-item {
    background: #F7FAFC;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    height: 100%;
}

.depoimento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.depoimento-content {
    margin-bottom: 20px;
}

.depoimento-content p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    font-style: italic;
    position: relative;
    padding-left: 20px;
}

.depoimento-content p:before {
    content: '"';
    font-size: 60px;
    color: var(--accent-color);
    position: absolute;
    left: -10px;
    top: -20px;
    opacity: 0.3;
    font-family: 'Playfair Display', serif;
}

.depoimento-author {
    display: flex;
    align-items: center;
}

.author-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.author-info span {
    font-size: 14px;
    color: var(--accent-color);
}

/* Contato */
.contato-section {
    position: relative;
}

.contato-info {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(201, 165, 92, 0.1);
    border-radius: 50%;
    text-align: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-item .icon i {
    font-size: 24px;
    color: var(--accent-color);
}

.info-item .content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.info-item .content p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.6;
}

.contato-form {
    background: #F7FAFC;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-control {
    height: 50px;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #E2E8F0;
    border-radius: 3px;
    background-color: #fff;
    width: 100%;
    color: var(--text-dark);
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(201, 165, 92, 0.2);
    outline: none;
}

textarea.form-control {
    height: auto;
    resize: vertical;
}

/* Footer */
#footer {
    background: var(--primary-color);
    color: var(--text-color);
    padding: 0;
}

.footer-top {
    padding: 80px 0 40px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.7;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 12px;
}

.footer-links h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li i {
    margin-right: 10px;
    color: var(--accent-color);
    font-size: 12px;
}

.footer-links ul li a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-newsletter h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #fff;
}

.footer-newsletter h4:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-newsletter p {
    font-size: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-newsletter form {
    position: relative;
}

.footer-newsletter input[type="email"] {
    border: 0;
    padding: 12px 15px;
    width: calc(100% - 110px);
    border-radius: 5px 0 0 5px;
    outline: none;
    font-size: 14px;
    font-family: 'Work Sans', sans-serif;
}

.footer-newsletter input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: 0;
    background-color: var(--accent-color);
    color: #fff;
    padding: 0 20px;
    border-radius: 0 5px 5px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
    background-color: #d4af37;
}

.copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    font-size: 14px;
}

.copyright strong {
    color: var(--accent-color);
}

/* WhatsApp Flutuante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 30px;
    bottom: 100px;
    z-index: 996;
    width: 44px;
    height: 44px;
    background: var(--accent-color);
    border-radius: 50%;
    transition: all 0.4s;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(201, 165, 92, 0.3);
}

.back-to-top i {
    font-size: 20px;
    color: #fff;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 54, 93, 0.3);
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: var(--primary-color);
    color: #fff;
    border-bottom: none;
    padding: 20px 30px;
}

.modal-title {
    font-size: 24px;
    color: #fff;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: none;
    padding: 20px 30px;
}

.btn-close {
    background-color: var(--accent-color);
    opacity: 1;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    margin: -5px;
}

/* Lotes */
.lote-status-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
}

.lote-status-badge.disponivel {
    background-color: rgba(56, 161, 105, 0.1);
    color: var(--disponivel-color);
}

.lote-status-badge.reservado {
    background-color: rgba(214, 158, 46, 0.1);
    color: var(--reservado-color);
}

.lote-status-badge.vendido {
    background-color: rgba(229, 62, 62, 0.1);
    color: var(--vendido-color);
}

/* Responsivo */
@media (max-width: 991px) {
    .section-heading h2 {
        font-size: 36px;
    }
    
    .counter-box .counter {
        font-size: 36px;
    }
    
    .counter-box h4 {
        font-size: 16px;
    }
    
    .localizacao-info {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 767px) {
    .section-heading h2 {
        font-size: 30px;
    }
    
    .btn-primary, .btn-outline {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .counter-section {
        padding: 80px 0;
    }
    
    .counter-box {
        margin-bottom: 40px;
    }
    
    .beneficio-card {
        padding: 30px 20px;
    }
    
    .contato-form {
        padding: 30px 20px;
    }
}

/* Imagens do Empreendimento Section */
.imagens-section {
    background-color: var(--dark-color);
    color: #fff;
    padding: 100px 0;
}

.imagens-section .section-title h2 {
    color: #fff;
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.imagens-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
}

.imagens-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
}

.imagens-gallery {
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 57, 84, 0.9), rgba(11, 57, 84, 0.3));
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-info {
    color: #fff;
}

.gallery-info h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 20px;
}

.gallery-info p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 14px;
}

/* Lotes Section */
.lotes-section {
    padding: 100px 0;
    background-color: #fff;
}

.lotes-section .section-title h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.lotes-section .section-title h2:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
}

.lotes-mapa-container {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
}

.lotes-mapa-wrapper {
    flex: 1 1 60%;
    padding-right: 30px;
}

.lotes-mapa {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.lotes-mapa img {
    width: 100%;
    height: auto;
    display: block;
}

.lotes-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.lotes-legenda {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.legenda-item {
    display: flex;
    align-items: center;
    margin: 0 15px;
}

.legenda-cor {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
}

.legenda-item.disponivel .legenda-cor {
    background-color: var(--disponivel-color);
}

.legenda-item.reservado .legenda-cor {
    background-color: var(--reservado-color);
}

.legenda-item.vendido .legenda-cor {
    background-color: var(--vendido-color);
}

.legenda-texto {
    font-size: 14px;
    font-weight: 500;
}

.lotes-info {
    flex: 1 1 40%;
    background-color: #f8f9fa;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.lotes-info-content {
    padding: 30px;
}

.lotes-info-content h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.lotes-info-content p {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.lote-detalhes {
    background-color: #fff;
    border-radius: 0;
    padding: 20px;
    margin-bottom: 20px;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lote-placeholder {
    text-align: center;
    color: #aaa;
}

.lote-placeholder i {
    font-size: 40px;
    margin-bottom: 15px;
}

.lote-actions {
    display: flex;
    flex-direction: column;
}

.lote-actions a {
    margin-bottom: 15px;
    text-align: center;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 12px 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    background: transparent;
    font-family: 'Manrope', sans-serif;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(11, 57, 84, 0.2);
}

@media (max-width: 991px) {
    .lotes-mapa-container {
        flex-direction: column;
    }
    
    .lotes-mapa-wrapper {
        flex: 1 1 100%;
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .lotes-info {
        flex: 1 1 100%;
    }
}

/* Conheça o Residencial Premium Section */
.imagens-section {
    background-color: var(--light-color);
    padding: 100px 0;
}

.galeria-filtros {
    margin: 30px 0;
    text-align: center;
}

.filtros-lista {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.filtro-item {
    cursor: pointer;
    padding: 8px 20px;
    margin: 5px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Manrope', sans-serif;
}

.filtro-item:hover {
    color: #D4AF37 !important;
}

.filtro-item.active {
    font-weight: 600;
    position: relative;
}

.filtro-item.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 70%;
    height: 2px;
    background-color: #D4AF37;
    transform: translateX(-50%);
}

.galeria-grid {
    margin-top: 30px;
}

.galeria-item {
    margin-bottom: 30px;
}

.galeria-card {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.galeria-imagem {
    position: relative;
    overflow: hidden;
}

.galeria-imagem img {
    transition: all 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.galeria-card:hover .galeria-imagem img {
    transform: scale(1.05);
}

.galeria-info {
    padding: 20px;
    background-color: #fff;
}

.galeria-info h4 {
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Marcellus', serif;
}

.galeria-info p {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-dark);
    font-family: 'Work Sans', sans-serif;
}

.galeria-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.galeria-link:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .filtros-lista {
        flex-direction: column;
    }
    
    .filtro-item {
        margin: 2px 0;
    }
}

/* Modal da Galeria */
.galeria-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeria-modal-content {
    position: relative;
    max-width: 80%;
    max-height: 80vh;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.galeria-modal-content img {
    display: block;
    width: 100%;
    max-height: 60vh;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.galeria-modal-info {
    padding: 20px;
    background-color: #fff;
}

.galeria-modal-info h3 {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    font-family: 'Marcellus', serif;
}

.galeria-modal-info p {
    margin-bottom: 0;
    font-size: 16px;
    color: var(--text-dark);
    font-family: 'Work Sans', sans-serif;
}

.galeria-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 1;
    transition: all 0.3s ease;
}

.galeria-modal-close:hover {
    background-color: var(--primary-color);
    transform: rotate(90deg);
}

@media (max-width: 767px) {
    .galeria-modal-content {
        max-width: 95%;
    }
    
    .galeria-modal-content img {
        max-height: 50vh;
    }
}

/* Estilos específicos para a seção de imagens */
.imagens-section {
    background-color: #f8f9fa;
}

.imagens-section .section-title {
    margin-bottom: 30px;
}

.imagens-section .section-title h2 {
    color: var(--primary-color) !important;
    font-size: 32px !important;
    letter-spacing: 1px !important;
    margin-bottom: 15px !important;
    font-family: 'Cinzel', serif;
}

/* Garantir contraste em todas as seções */
.section-padding {
    padding: 100px 0;
    position: relative;
}

.section-padding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.02);
    z-index: -1;
}

/* Estilos para o menu de filtros da galeria */
.filtros-lista {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.filtro-item {
    cursor: pointer;
    padding: 8px 20px;
    margin: 5px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Manrope', sans-serif;
}

.filtro-item:hover {
    color: #D4AF37 !important;
}

.filtro-item.active {
    font-weight: 600;
    position: relative;
}

.filtro-item.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 70%;
    height: 2px;
    background-color: #D4AF37;
    transform: translateX(-50%);
}

/* Estilos para os itens da galeria */

/* Conceito Section - Estilos específicos */
.conceito-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.conceito-features .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.conceito-features .feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-color);
}

.conceito-features .feature-item i {
    font-size: 30px;
    color: var(--accent-color);
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    background-color: rgba(201, 167, 115, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.conceito-features .feature-item h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-family: 'Marcellus', serif;
}

.conceito-features .feature-item p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 0;
    font-family: 'Work Sans', sans-serif;
}

/* Media query para dispositivos móveis */
@media (max-width: 767px) {
    .conceito-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Media query para tablets */
@media (min-width: 768px) and (max-width: 991px) {
    .conceito-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Estilos para imagens clicáveis da galeria */
.galeria-img-clicavel {
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeria-img-clicavel:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Estilos para o modal de imagem ampliada */
#imagemModal .modal-content {
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

#imagemModal .modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 20px;
}

#imagemModal .modal-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 22px;
    font-family: 'Cinzel', serif;
}

#imagemModal .modal-body {
    padding: 20px;
}

#imagemModal #imagemAmpliada {
    max-height: 70vh;
    object-fit: contain;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

#imagemModal #imagemDescricao {
    margin-top: 15px;
    color: var(--text-dark);
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
}

#imagemModal .btn-close {
    background-color: var(--accent-color);
    opacity: 1;
    color: #fff;
    border-radius: 50%;
    padding: 10px;
    margin: -5px;
}

#imagemModal .btn-close:hover {
    background-color: var(--primary-color);
    transform: rotate(90deg);
    transition: all 0.3s ease;
}

/* Estilos para categorias vazias na galeria */
.categoria-vazia {
    padding: 60px 20px;
    margin: 30px 0;
    background-color: rgba(26, 54, 93, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.categoria-vazia-conteudo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.categoria-vazia-icone {
    margin-top: 20px;
    background-color: rgba(26, 54, 93, 0.05);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulsar 2s infinite;
}

@keyframes pulsar {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* Responsividade para Localização e Contato */
@media (max-width: 991.98px) {
    .contato-section .row {
        flex-direction: column;
        gap: 40px;
    }
    
    .localizacao-map iframe {
        width: 100%;
        height: 400px;
    }
    
    .contato-form {
        padding: 20px;
    }
    
    .contato-form h3 {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .contato-form .form-control {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }
    
    .contato-form .btn-primary {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        margin-top: 15px;
    }
}

@media (max-width: 767.98px) {
    .localizacao-map iframe {
        height: 300px;
    }
    
    .contato-form .form-control {
        padding: 8px;
        font-size: 13px;
    }
    
    .contato-form .btn-primary {
        padding: 10px;
        font-size: 13px;
    }
}

/* Responsividade para Localização e Contato */
@media (max-width: 991.98px) {
    .contato-section .row {
        flex-direction: column;
        gap: 40px; /* Aumentando o espaçamento entre elementos */
    }
    
    .localizacao-map {
        position: relative;
        margin-bottom: 30px;
    }
    
    .localizacao-map iframe {
        width: 100%;
        height: 400px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .contato-form {
        padding: 30px;
        background: rgba(255, 255, 255, 0.95);
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .contato-form h3 {
        text-align: center;
        margin-bottom: 30px;
        color: var(--primary-color);
    }
    
    .contato-form .form-control {
        width: 100%;
        padding: 12px;
        font-size: 14px;
        margin-bottom: 15px;
        border-radius: 8px;
    }
    
    .contato-form .btn-primary {
        width: 100%;
        padding: 14px;
        font-size: 14px;
        margin-top: 20px;
        border-radius: 8px;
    }
    
    .contato-form .btn-primary:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 767.98px) {
    .localizacao-map iframe {
        height: 300px;
    }
    
    .contato-form {
        padding: 25px;
    }
    
    .contato-form .form-control {
        padding: 10px;
        font-size: 13px;
        margin-bottom: 12px;
    }
    
    .contato-form .btn-primary {
        padding: 12px;
        font-size: 13px;
    }
}

/* Estilos específicos para o menu */
.menu-toggle {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 9999;
    display: block !important;
    visibility: visible !important;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 9998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.menu-overlay-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 500px;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.menu-overlay ul {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.menu-overlay ul li {
    margin-bottom: 20px;
}

.menu-overlay ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.menu-overlay ul li a:hover {
    color: var(--accent-color);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
}

/* Ajustes para mobile */
@media (max-width: 768px) {
    .menu-toggle {
        top: 20px;
        right: 20px;
    }
    
    .menu-overlay-content {
        width: 95%;
        padding: 20px;
    }
    
    .menu-overlay ul li {
        margin-bottom: 15px;
    }
}

/* Footer Partners */
.footer-partners {
    background-color: var(--primary-color);
    padding: 40px 0 30px;
}

.footer-partners .container {
    max-width: 1100px;
}

.partner-titles {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
    padding: 0;
}

.partner-titles h5 {
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-align: center;
    flex: 1;
    font-weight: 600;
    padding: 0 5px;
}

.partner-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.partner-logos > a {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 5px;
}

.partner-logos img, 
.partner-logos a img {
    max-width: 160px;
    max-height: 70px;
    width: auto;
    height: auto;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
    object-fit: contain;
}

.partner-logos a {
    display: block;
    text-align: center;
}

.partner-logos img:hover, 
.partner-logos a:hover img {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .footer-partners {
        padding: 25px 0 20px;
    }
    
    .partner-titles {
        flex-wrap: nowrap;
    }
    
    .partner-titles h5 {
        flex: 1;
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .partner-logos {
        flex-wrap: nowrap;
    }
    
    .partner-logos > a {
        flex: 1;
        margin-bottom: 15px;
        text-align: center;
        height: 50px;
    }
    
    .partner-logos img, 
    .partner-logos a img {
        max-width: 130px;
        max-height: 65px;
    }
}

@media (max-width: 767px) {
    .partner-titles h5 {
        font-size: 11px;
    }
    
    .partner-logos > a {
        height: 40px;
    }
    
    .partner-logos img, 
    .partner-logos a img {
        max-width: 100px;
        max-height: 50px;
    }
}

@media (max-width: 576px) {
    .partner-titles h5 {
        font-size: 10px;
    }
    
    .partner-logos > a {
        height: 35px;
    }
    
    .partner-logos img, 
    .partner-logos a img {
        max-width: 80px;
        max-height: 40px;
    }
}

.disclaimer {
    padding: 20px 0;
    color: #fff;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--primary-color);
}

@media (max-width: 767px) {
    .disclaimer {
        font-size: 10px;
        padding: 15px 10px;
    }
}

/* Mapa */
#mapa-lotes-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.mapa-lotes-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.mapa-modal .mapa-lotes-img {
    max-height: calc(100vh - 100px);
    width: auto;
    max-width: 100%;
    margin: 0 auto;
}

/* Botão de visualização do mapa */
.btn-visualizar-mapa {
    margin-top: 20px;
    background-color: var(--color-primary);
    color: white;
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
}

.btn-visualizar-mapa:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Cores para ícones de redes sociais */
.instagram:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: white;
    box-shadow: 0 10px 15px rgba(0,0,0,0.2);
    transform: translateY(-3px);
}

/* Estilos para notificações e alertas */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 5px;
    background-color: var(--color-success);
    color: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 1000;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.3s ease-in-out;
}



