/* Custom CSS - Novo Design do Menu */

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Header e navegação principal */
.header-nav {
    background: linear-gradient(135deg, #4a4a4a 0%, #666666 100%);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Logos à esquerda */
.left-logos {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 0 0 auto;
}

.couple-img {
    object-fit: cover;
    border-radius: 8px;
    border: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.logo-img {
    width: auto;
    object-fit: contain;
}

.brand-highlight {
    color: #007bff;
}

/* Menu de navegação */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 12px 24px;
    background: #ffffff;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-link:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: #007bff;
    text-decoration: none;
}

/* Link de contato com estilo especial */
.contact-link {
    position: relative;
}

.contact-link.scrolling {
    background: #FFD700 !important;
    color: #333 !important;
    animation: pulse 0.6s ease-in-out;
}

@keyframes pulse {
    0% { transform: translateY(-2px) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
    100% { transform: translateY(-2px) scale(1); }
}

/* Botão ativo/destacado */
.nav-link.active {
    background: #FFD700;
    color: #333;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.nav-link.active:hover {
    background: #FFC107;
    color: #333;
    transform: translateY(-2px);
}

/* Ícones de redes sociais */
.social-icons {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #007bff;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
}

.social-link:hover {
    background: #0056b3;
    transform: scale(1.1);
    text-decoration: none;
    color: #ffffff;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.facebook:hover {
    background: #2d4373;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Barra de informações superior (se necessário) */
.top-bar {
    background: #ffee02;
    color: #333;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.top-bar-text {
    animation: scroll-left 20s linear infinite;
    white-space: nowrap;
    -webkit-animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Responsividade */
@media (max-width: 992px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .left-logos {
        order: 1;
        justify-content: center;
        width: 100%;
    }
    
    .main-navigation {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
    
    .social-icons {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 6px;
    }
    
    .nav-link {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    
}

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .left-logos {
        order: 1;
        width: 100%;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .main-navigation {
        order: 2;
        width: 100%;
        justify-content: center;
        margin-left: 0;
    }
    
    .social-icons {
        display: none;
    }
    
    .nav-menu {
        justify-content: center;
        gap: 8px;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 11px;
    }
  
    
    /* Mostrar apenas 3 botões principais */
    .nav-menu .nav-item:nth-child(n+4) {
        display: none;
    }
}

@media (max-width: 576px) {
    .nav-container {
        padding: 0 15px;
    }
    
    .left-logos {
        gap: 10px;
    }

    
    .nav-link {
        padding: 6px 10px;
        font-size: 10px;
    }
}

/* Hero Banner Simplificado */
.hero-banner-new {
    position: relative;
    width: 100%;
    min-height: 400px;
    background-image: url('../images/imagem_desktop.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero-banner-new {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .hero-banner-new {
        min-height: 250px;
    }
}

/* Texto sobre a imagem */
.hero-text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 10;
    width: 90%;
}

.hero-title,
.hero-subtitle {
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 5px;
    line-height: 1.1;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 4.2rem;
    line-height: 0.9;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

/* Responsividade do texto */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
        margin-bottom: 4px;
    }
    
    .hero-subtitle {
        font-size: 3.4rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 3px;
    }
    
    .hero-subtitle {
        font-size: 2.8rem;
    }
    
    .hero-text-overlay {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .hero-banner-new {
        margin-top: 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 2px;
    }
    
    .hero-subtitle {
        font-size: 2.4rem;
    }
}

/* Seção Últimos Imóveis */
.latest-properties {
    margin-top: -60px;
    position: relative;
    z-index: 15;
    padding: 0 0 60px 0;
}

.property-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-content {
    padding: 20px;
    text-align: center;
    background: #ffffff;
}

.property-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.property-price {
    font-size: 14px;
    font-weight: 700;
    color: #D3B300;
    margin: 0;
}

.property-link-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    text-decoration: none;
}

/* Responsividade */
@media (max-width: 768px) {
    .latest-properties {
        margin-top: -25px;
        padding: 0 0 40px 0;
    }
    
    .property-image {
        height: 150px;
    }
    
    .property-content {
        padding: 15px;
    }
    
    .property-content h4 {
        font-size: 14px;
    }
    
    .property-price {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .latest-properties {
        margin-top: -15px;
    }
    
    .property-image {
        height: 120px;
    }
    
    .property-content {
        padding: 12px;
    }
    
    .property-content h4 {
        font-size: 13px;
    }
    
    .property-price {
        font-size: 12px;
    }
}

/* Seção Quem Somos */
.quem-somos-section {
    background: #ffee02;
    padding: 80px 0;
    overflow: hidden;
}

.couple-photo-container {
    text-align: center;
    margin-bottom: 40px;
}

.couple-photo-large {
    max-width: 400px;
    width: 90%;
    height: auto;
    border-radius: 15px;
    border: 8px solid #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.couple-photo-large:hover {
    transform: scale(1.02);
}

.corretores-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 0 20px;
}

.corretor-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.corretor-card.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.corretor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.corretor-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.corretor-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    margin: 0;
}

/* Responsividade da seção Quem Somos */
@media (max-width: 768px) {
    .quem-somos-section {
        padding: 60px 0;
    }
    
    .couple-photo-container {
        margin-bottom: 30px;
    }
    
    .couple-photo-large {
        max-width: 300px;
    }
    
    .corretores-cards {
        gap: 20px;
        padding: 0 10px;
    }
    
    .corretor-card {
        padding: 20px;
    }
    
    .corretor-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .corretor-card p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .quem-somos-section {
        padding: 40px 0;
    }
    
    .couple-photo-large {
        max-width: 250px;
    }
    
    .corretor-card {
        padding: 15px;
    }
    
    .corretor-card h3 {
        font-size: 18px;
    }
    
    .corretor-card p {
        font-size: 12px;
    }
}

/* Seção Serviços */
.servicos-section {
    background: #333333;
    padding: 80px 0;
    overflow: hidden;
}

.servico-card {
    background: #ffffff;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.servico-card.aos-animate {
    transform: translateY(0);
    opacity: 1;
}

.servico-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.servico-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
    line-height: 1.3;
}

.servico-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: justify;
    margin: 0;
    flex-grow: 1;
}

/* Card específico para Venda (laranja) */
.venda-card {
    background: linear-gradient(135deg, #ff6b47 0%, #ff4757 100%);
    color: #ffffff;
}

.venda-card h3 {
    color: #ffffff;
}

.venda-card p {
    color: #ffffff;
}

/* Seção do logo da Caixa */
.servico-logo {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.caixa-logo {
    display: block;
    width: 200px;
    height: auto;
    margin: 25px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.caixa-logo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
}

/* Responsividade da seção Serviços */
@media (max-width: 992px) {
    .servicos-section {
        padding: 60px 0;
    }
    
    .servico-card {
        min-height: 350px;
        padding: 25px 20px;
    }
    
    .servico-card h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .servico-card p {
        font-size: 13px;
    }
    
    .caixa-logo {
        width: 160px;
        margin: 20px auto;
    }
}

@media (max-width: 768px) {
    .servicos-section {
        padding: 50px 0;
    }
    
    .servico-card {
        min-height: 300px;
        padding: 20px 15px;
        margin-bottom: 20px;
    }
    
    .servico-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .servico-card p {
        font-size: 12px;
    }
    
    .caixa-logo {
        width: 140px;
        margin: 18px auto;
    }
}

@media (max-width: 576px) {
    .servicos-section {
        padding: 40px 0;
    }
    
    .servico-card {
        min-height: 280px;
        padding: 15px 12px;
    }
    
    .servico-card h3 {
        font-size: 15px;
        margin-bottom: 10px;
    }
    
    .servico-card p {
        font-size: 11px;
    }
    
    .caixa-logo {
        width: 120px;
        margin: 15px auto;
    }
}

/* Seção Contato */
.contato-section {
    background: #f8f9fa;
    padding: 80px 0;
    overflow: hidden;
}

.contato-form-wrapper h2,
.contato-info-wrapper h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

/* Formulário de Contato */
.contato-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    background: #ffffff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    width: 100%;
    padding: 15px 30px;
    background: #ffd700;
    color: #333;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-enviar:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Informações de Contato */
.contato-info-wrapper {
    padding-left: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #007bff;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.info-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Redes Sociais */
.social-section {
    margin-top: 20px;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.social-section h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsividade da Seção Contato */
@media (max-width: 992px) {
    .contato-section {
        padding: 60px 0;
    }
    
    .contato-form-wrapper h2,
    .contato-info-wrapper h2 {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .contato-form {
        padding: 30px;
    }
    
    .contato-info-wrapper {
        padding-left: 0;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .contato-section {
        padding: 50px 0;
    }
    
    .contato-form-wrapper h2,
    .contato-info-wrapper h2 {
        font-size: 24px;
        margin-bottom: 20px;
        text-align: center;
    }
    
    .contato-form {
        padding: 25px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
        font-size: 15px;
    }
    
    .btn-enviar {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .info-item {
        padding: 15px;
    }
    
    .info-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-right: 15px;
    }
    
    .info-content h4 {
        font-size: 16px;
    }
    
    .info-content p {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .contato-section {
        padding: 40px 0;
    }
    
    .contato-form {
        padding: 20px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }
    
    .btn-enviar {
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .info-item {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .social-links {
        gap: 10px;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* Página de Detalhes do Imóvel */
.property-type-banner {
    background: #ffd700;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.property-type-content h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
}

.property-detail-section {
    padding: 60px 0;
    background: #f8f9fa;
}

/* Galeria de Fotos */
.property-gallery {
    background: #ffffff;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.main-photo {
    position: relative;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
}

.photo-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    transform: translateY(-50%);
}

.nav-btn {
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.thumbnail-gallery {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 0;
}

.thumbnail-image {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail-image:hover,
.thumbnail-image.active {
    border-color: #ffd700;
    transform: scale(1.05);
}

/* Informações do Imóvel */
.property-info {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: fit-content;
}

.price-section {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 10px;
    color: #ffffff;
}

.property-price {
    font-size: 36px;
    font-weight: 700;
    margin: 0;
}

.reference-section {
    text-align: center;
    margin-bottom: 30px;
}

.reference-label {
    background: #6c757d;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    display: inline-block;
}

.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    padding: 15px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-whatsapp {
    background: #25d366;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.btn-whatsapp:hover {
    background: #128c7e;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-info {
    background: #28a745;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
}

.btn-info:hover {
    background: #1e7e34;
    transform: translateY(-2px);
}

.btn-favorite {
    background: #ffffff;
    color: #dc3545;
    border: 2px solid #dc3545;
}

.btn-favorite:hover {
    background: #dc3545;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Detalhes Simples */
.property-details-simple {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detail-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.detail-label {
    font-size: 14px;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.detail-value {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.property-description {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.property-description h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 24px;
}

.property-description p {
    color: #666;
    line-height: 1.8;
    font-size: 16px;
}

/* Responsividade da Página de Detalhes */
@media (max-width: 992px) {
    .property-type-content h1 {
        font-size: 28px;
    }
    
    .property-detail-section {
        padding: 40px 0;
    }
    
    .property-info {
        margin-top: 30px;
    }
    
    .property-price {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .property-type-content h1 {
        font-size: 24px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .property-price {
        font-size: 26px;
    }
    
    .property-gallery,
    .property-info,
    .property-details-simple,
    .property-description {
        padding: 20px;
    }
    
    .detail-item {
        padding: 15px;
    }
    
    .detail-value {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .property-type-content h1 {
        font-size: 20px;
    }
    
    .main-image {
        height: 200px;
    }
    
    .property-price {
        font-size: 22px;
    }
    
    .btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .detail-item {
        padding: 12px;
        margin-bottom: 10px;
    }
    
    .detail-label {
        font-size: 12px;
        margin-bottom: 5px;
    }
    
    .detail-value {
        font-size: 18px;
    }
}

/* Sem fotos disponíveis */
.no-photos {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 2px dashed #dee2e6;
}

.no-photos img {
    max-width: 300px;
    opacity: 0.6;
}

.no-photos p {
    color: #6c757d;
    font-style: italic;
    margin-top: 15px;
}

/* Footer Novo Design */
.footer-novo {
    background: #000000;
    padding: 20px 0 10px 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-copyright {
    margin-bottom: 5px;
}

.footer-copyright p {
    color: #ffffff;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
}

.footer-corretores {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.corretor-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
}

.corretor-nome {
    color: #ffee02;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.1;
}

.corretor-creci {
    color: #ffee02;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
}


.footer-tag span {
    color: #ffee02;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.1;
}

/* Responsividade do Footer */
@media (max-width: 768px) {
    .footer-novo {
        padding: 15px 0 8px 0;
    }
    
    .footer-content {
        gap: 6px;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
    
    .corretor-nome {
        font-size: 13px;
    }
    
    .corretor-creci {
        font-size: 11px;
    }
    
    .footer-tag span {
        font-size: 11px;
    }
}

@media (max-width: 576px) {
    .footer-novo {
        padding: 12px 0 6px 0;
    }
    
    .footer-content {
        gap: 4px;
    }
    
    .footer-copyright p {
        font-size: 12px;
    }
    
    .corretor-nome {
        font-size: 12px;
    }
    
    .corretor-creci {
        font-size: 10px;
    }
    
    .footer-tag span {
        font-size: 10px;
        letter-spacing: 0.3px;
    }
}

/* Efeitos especiais */
.nav-link {
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.nav-link:hover::before {
    left: 100%;
}

/* Layout responsivo sem menu mobile separado */

/* Hero Banner Styles */
.hero-banner {
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    animation: fadeInUp 1s ease-out;
}

.hero-content h2 {
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-content p {
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-content .theme-btn {
    animation: fadeInUp 1s ease-out 0.9s both;
    transition: all 0.3s ease;
}

.hero-content .theme-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.3);
    text-decoration: none;
}

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

/* Responsividade do Hero Banner */
@media (max-width: 992px) {
    .hero-banner {
        min-height: 400px !important;
    }
    
    .hero-content h1 {
        font-size: 2.8rem !important;
    }
    
    .hero-content h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 350px !important;
    }
    
    .hero-content h1 {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }
    
    .hero-content h2 {
        font-size: 1.6rem !important;
        margin-bottom: 20px !important;
    }
    
    .hero-content p {
        font-size: 1rem !important;
        margin-bottom: 30px !important;
    }
    
    .hero-content .theme-btn {
        padding: 12px 25px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 576px) {
    .hero-banner {
        min-height: 300px !important;
    }
    
    .hero-content h1 {
        font-size: 1.8rem !important;
    }
    
    .hero-content h2 {
        font-size: 1.4rem !important;
    }
    
    .hero-content p {
        font-size: 0.9rem !important;
    }
}

/* ========================================
   ESTILOS DA PÁGINA DE LISTAGEM
======================================== */

/* Seção de Filtros */
.property-filters {
    background: #f8f9fa;
    padding: 60px 0;
}

.filters-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-bottom: 30px;
}

.filters-card h3 {
    color: #333;
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.filters-card h3 i {
    color: #FFD700;
    font-size: 1.2rem;
}

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

.filter-form label {
    color: #555;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.filter-form .form-control {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    height: auto;
}

.filter-form .form-control:focus {
    border-color: #FFD700;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.filter-form .btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    height: auto;
    margin-top: 28px;
}

.filter-form .btn-primary:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Seção de Resultados */
.property-results {
    padding: 60px 0;
}

.results-header {
    margin-bottom: 40px;
    text-align: center;
}

.results-info h4 {
    color: #333;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.results-info p {
    color: #666;
    font-size: 1.1rem;
}

/* Cards dos Imóveis */
.property-grid {
    margin-top: 40px;
}

.property-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.property-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.property-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 20px;
}

.property-type {
    background: rgba(255, 215, 0, 0.9);
    color: #333;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.property-price {
    color: white;
    font-size: 1.3rem;
    font-weight: bold;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.property-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.property-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-location i {
    color: #FFD700;
    font-size: 0.8rem;
}

.property-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.property-features .feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.property-features .feature i {
    color: #FFD700;
    font-size: 1.1rem;
}

.property-features .feature span {
    color: #666;
    font-size: 0.85rem;
    font-weight: 500;
}

.property-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.property-views {
    color: #999;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.property-views i {
    color: #FFD700;
}

.property-bottom .btn {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border: none;
    color: #333;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.property-bottom .btn:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Paginação */
.pagination-section {
    background: #f8f9fa;
    padding: 40px 0;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
}

.pagination {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    margin: 0;
}

.pagination .page-item {
    margin: 0 2px;
}

.pagination .page-link {
    border: none;
    color: #666;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #333;
    font-weight: 600;
}

.pagination .page-link:hover {
    background: #f8f9fa;
    color: #333;
}

.pagination .page-item.disabled .page-link {
    color: #ccc;
}

/* Responsividade */
@media (max-width: 768px) {
    .property-filters,
    .property-results {
        padding: 40px 0;
    }
    
    .filters-card {
        padding: 25px;
    }
    
    .property-features {
        flex-direction: column;
        gap: 10px;
    }
    
    .property-features .feature {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
    }
    
    .property-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: stretch;
    }
    
    .property-bottom .btn {
        text-align: center;
    }
}

@media (max-width: 576px) {
    .filters-card h3 {
        font-size: 1.3rem;
    }
    
    .property-image {
        height: 200px;
    }
    
    .property-content {
        padding: 20px;
    }
    
    .results-info h4 {
        font-size: 1.5rem;
    }
}

/* ========================================
   ESTILOS PARA ALERTAS DO FORMULÁRIO
======================================== */

.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.alert i {
    font-size: 1.2rem;
}

.alert-success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.alert-success i {
    color: #28a745;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffc107;
    color: #856404;
}

.alert-warning i {
    color: #ffc107;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

.alert-danger i {
    color: #dc3545;
}

/* Melhorias no botão de envio */
.btn-enviar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-enviar:hover {
    transform: translateY(-2px);
}

.btn-enviar i {
    transition: transform 0.3s ease;
}

.btn-enviar:hover i {
    transform: translateX(3px);
}

/* Validação de campos */
.campo-valido {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.campo-invalido {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.campo-erro {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.campo-erro::before {
    content: "⚠";
    font-size: 0.8rem;
}

/* Animações para alertas */
.alert {
    animation: slideIn 0.3s ease-out;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Botão desabilitado */
.btn-enviar:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none !important;
}

/* ========================================
   MODAL DE COMPARTILHAMENTO
======================================== */

.share-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.share-modal-content {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideIn 0.3s ease;
}

.share-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #eee;
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    border-radius: 15px 15px 0 0;
}

.share-modal-header h3 {
    margin: 0;
    color: #333;
    font-weight: 600;
    font-size: 1.2rem;
}

.share-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.share-modal-close:hover {
    background: rgba(0, 0, 0, 0.1);
}

.share-modal-body {
    padding: 25px;
}

.share-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 15px;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.share-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.share-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #166FE5 100%);
}

.share-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0D8BD9 100%);
}

.share-btn.email {
    background: linear-gradient(135deg, #EA4335 0%, #D33B2C 100%);
}

.share-btn.copy {
    background: linear-gradient(135deg, #6C757D 0%, #5A6268 100%);
}

.share-btn i {
    font-size: 1.1rem;
}

/* Melhorias nos botões de ação da página de detalhes */
.action-buttons {
    display: flex;
    gap: 15px;
    margin: 25px 0;
    flex-wrap: wrap;
}

.action-buttons .btn {
    flex: 1;
    min-width: 150px;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #0F7A6B 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-share {
    background: linear-gradient(135deg, #FFD700 0%, #FFC107 100%);
    color: #333;
}

.btn-share:hover {
    background: linear-gradient(135deg, #FFC107 0%, #FFB300 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-favorite {
    background: linear-gradient(135deg, #6C757D 0%, #5A6268 100%);
    color: white;
}

.btn-favorite:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(108, 117, 125, 0.4);
}

/* Responsividade do modal */
@media (max-width: 576px) {
    .share-modal-content {
        width: 95%;
        margin: 10px;
    }
    
    .share-options {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        min-width: auto;
        width: 100%;
    }
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}