/* ===== CSS MOBILE - MICHELLE BISPO IMÓVEIS ===== */
/* Design mobile-first exclusivo - Paleta original */
/* Otimizado para: 360px, 375px, 390px, 412px */

/* ===== VARIÁVEIS MOBILE - PALETA ORIGINAL ===== */
:root {
    --primary: #1a5276;
    --primary-dark: #14415d;
    --secondary: #d4af37;
    --secondary-dark: #b8941f;
    --accent: #e74c3c;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --text: #333333;
    --text-light: #666666;
    --background: #ffffff;
    --surface: #f8f9fa;
    --border: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.15);
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET E BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    line-height: 1.5;
    background: var(--background);
    overflow-x: hidden;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ===== TIPOGRAFIA ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

h1 {
    font-size: clamp(1.75rem, 5vw, 2.25rem);
}

h2 {
    font-size: clamp(1.5rem, 4vw, 1.875rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 1rem auto 0;
    border-radius: 2px;
}

/* ===== BOTÕES ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    min-height: 3.5rem;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-contrast {
    background: white;
    color: var(--primary);
    border: 2px solid white;
    box-shadow: var(--shadow-sm);
}

.btn-contrast:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== WHATSAPP FLOAT MELHORADO ===== */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4.5rem;
    height: 4.5rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    animation: none;
}

.whatsapp-float i {
    font-size: 1.8rem;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) scale(1); 
    }
    50% { 
        transform: translateY(-8px) scale(1.05); 
    }
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 8px 30px rgba(37, 211, 102, 0.7);
    }
}

/* ===== HEADER MOBILE ===== */
.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 0.75rem 1rem;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 2.5rem;
    width: auto;
}

.menu-toggle {
    background: none;
    border: none;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    border-radius: 1px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== NAVEGAÇÃO MOBILE ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 300px;
    height: 100vh;
    background: var(--background);
    z-index: 1001;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -4px 0 32px rgba(0,0,0,0.1);
}

.mobile-nav[aria-hidden="false"] {
    right: 0;
}

.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.nav-logo {
    height: 2.5rem;
    width: auto;
}

.nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text);
    cursor: pointer;
}

.nav-links {
    list-style: none;
    flex: 1;
    padding: 1.5rem 0;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: var(--surface);
    border-left-color: var(--secondary);
    color: var(--primary);
}

.nav-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.nav-whatsapp {
    margin-bottom: 1rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* ===== HERO MOBILE ===== */
.mobile-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    padding-top: 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 82, 118, 0.4) 0%,
        rgba(44, 62, 80, 0.7) 100%
    );
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
    max-width: 400px;
    width: 100%;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.hero-scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ===== SERVIÇOS RÁPIDOS ===== */
.quick-services {
    padding: 3rem 0;
    background: var(--surface);
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.service-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.service-content {
    padding: 1.5rem;
    text-align: center;
}

.service-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-cta {
    width: 100%;
}

/* ===== SOBRE MOBILE ===== */
.mobile-about {
    padding: 3rem 0;
    background: var(--background);
}

.about-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.about-image-full {
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.about-image-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.about-content {
    padding: 1.5rem;
}

.about-content h2 {
    margin-bottom: 0.5rem;
}

.creci {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ===== SELO COMEMORATIVO ===== */
.anniversary-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #fff9e6, #fff);
    border: 2px solid var(--secondary);
    border-radius: var(--border-radius-sm);
    margin-top: 1.5rem;
}

.badge-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-content {
    display: flex;
    flex-direction: column;
}

.badge-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
}

.badge-subtitle {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===== IMÓVEIS DESTAQUE ===== */
.mobile-featured {
    padding: 3rem 0;
    background: var(--surface);
}

.featured-properties {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.property-card {
    background: var(--background);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.property-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, var(--accent), #c0392b);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.property-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.property-content {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.property-title {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.property-description {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.property-features {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.property-contact {
    width: 100%;
}

.featured-cta {
    text-align: center;
    padding: 1.5rem;
    background: var(--background);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.featured-cta p {
    margin-bottom: 1rem;
    font-weight: 600;
}

/* ===== CONTATO MOBILE ===== */
.mobile-contact {
    padding: 3rem 0;
    background: var(--background);
}

.contact-card {
    background: var(--surface);
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-header {
    margin-bottom: 2rem;
    text-align: center;
}

.contact-logo {
    height: 5rem;
    width: auto;
    margin: 0 auto;
}

/* ===== MENSAGEM EMOCIONAL ===== */
.contact-message {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: var(--border-radius-sm);
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary);
}

.message-icon {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.message-text {
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: left;
}

.message-text strong {
    color: var(--primary);
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-details {
    flex: 1;
    text-align: left;
}

.contact-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-weight: 600;
    color: var(--text);
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-action {
    width: 100%;
}

/* ===== FOOTER MOBILE ATUALIZADO (LOGO REMOVIDA) ===== */
.mobile-footer {
    background: var(--dark);
    color: white;
    padding: 2rem 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-info h3 {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.footer-info p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary);
    transform: translateY(-2px);
}

.footer-credits {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
}

.footer-credits p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVIDADE ===== */
@media (min-width: 375px) {
    .hero-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons .btn {
        width: auto;
        min-width: 160px;
    }
}

@media (min-width: 412px) {
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .contact-actions {
        flex-direction: row;
    }
    
    .contact-action {
        width: auto;
        flex: 1;
    }
}

/* ===== ANIMAÇÕES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== BOTÃO TODOS OS IMÓVEIS NA PLANTA ===== */
.all-properties-btn-container {
    text-align: center;
    margin: 3rem auto 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(26, 82, 118, 0.05), rgba(212, 175, 55, 0.05));
    border-radius: var(--border-radius);
    border: 2px dashed var(--border);
    max-width: 500px;
}

.btn-all-properties {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
    min-height: 3.75rem;
    width: auto;
    border: 2px solid var(--primary-dark);
}

.btn-all-properties::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: 0.5s;
}

.btn-all-properties:hover::before {
    left: 100%;
}

.btn-all-properties:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 40px rgba(26, 82, 118, 0.4);
    background: linear-gradient(135deg, var(--primary-dark), #0d2e43);
}

.btn-all-properties:active {
    transform: translateY(-1px);
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-all-properties:hover .btn-icon {
    transform: translateX(6px);
}

.all-properties-description {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.4;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Efeito de brilho pulsante */
@keyframes subtlePulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(26, 82, 118, 0.3);
    }
    50% {
        box-shadow: 0 12px 40px rgba(26, 82, 118, 0.5);
    }
}

.btn-all-properties {
    animation: subtlePulse 3s infinite ease-in-out;
}


/* ===== BOTÃO SIMULAÇÃO - CORES DIFERENTES ===== */
.btn-simulacao {
    background: linear-gradient(135deg, #B8860B, #8B6508) !important;
    border: 2px solid #D4A843 !important;
}

.btn-simulacao .btn-text {
    color: #fff !important;
}

.btn-simulacao .btn-icon {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #fff !important;
}

/* Container da simulação com cor diferente */
.all-properties-btn-container:has(.btn-simulacao) {
    background: linear-gradient(135deg, rgba(184, 134, 11, 0.08), rgba(212, 175, 55, 0.08)) !important;
    border: 2px dashed #B8860B !important;
}

/* ===== ACESSIBILIDADE ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visível */
button:focus-visible,
a:focus-visible {
    outline: 3px solid var(--secondary);
    outline-offset: 2px;
}

.btn-enviar {
    padding: 16px;
    border: none;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, var(--whatsapp), var(--whatsapp-dark));
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-enviar:active {
    transform: scale(0.97);
}
/* Botão de simulação com destaque */
.btn-simulacao {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 2px solid var(--secondary);
}

.btn-simulacao .btn-text {
    font-weight: 700;
}

