/**
 * AlmeidaImob - Homepage Premium Design
 * Melhorias de UX/UI e animações
 * Versão: 1.0.0
 */

/* ===== HERO SECTION PREMIUM ===== */
.hero-premium {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/layout/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 0;
}

.hero-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, rgba(248, 250, 252, 1) 0%, transparent 100%);
    z-index: 1;
}

/* Partículas animadas no background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float-particle 15s infinite;
}

.hero-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.hero-particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.hero-particle:nth-child(3) {
    left: 35%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.hero-particle:nth-child(4) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 18s;
}

.hero-particle:nth-child(5) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 25s;
}

.hero-particle:nth-child(6) {
    left: 80%;
    animation-delay: 5s;
    animation-duration: 17s;
}

.hero-particle:nth-child(7) {
    left: 90%;
    animation-delay: 2.5s;
    animation-duration: 21s;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1);
    }

    100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeInDown 0.8s ease-out;
}

.hero-badge i {
    color: var(--secondary-color);
}

.hero-title-main {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title-main span {
    display: block;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #f0d861 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 30px rgba(26, 95, 74, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(26, 95, 74, 0.5);
    color: #fff;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #fff;
}

/* Stats no Hero */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat-item {
    text-align: center;
    position: relative;
}

.hero-stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 8px;
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.hero-scroll-indicator a:hover {
    color: #fff;
}

.hero-scroll-indicator i {
    font-size: 1.5rem;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MELHORIAS NAS SEÇÕES ===== */

/* Espaçamento entre seções */
/* Featured section removed — search now follows hero directly */

/* Search section styling moved to search-modern.css */

/* Títulos de seção premium */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--neutral-900);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header .section-subtitle {
    color: var(--neutral-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 20px auto 0;
}

/* ===== ANIMAÇÕES DE SCROLL ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.delay-1 {
    transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
    transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
    transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
    transition-delay: 0.4s;
}

/* ===== QUICK LINKS (Atalhos rápidos) ===== */
.quick-links-section {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

.quick-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.quick-links-section .quick-link,
.quick-links .quick-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f3f4f6 !important;
    border-radius: 50px;
    color: #374151 !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb !important;
}

.quick-links-section .quick-link:visited,
.quick-links .quick-link:visited {
    background: #f3f4f6 !important;
    color: #374151 !important;
}

.quick-links-section .quick-link:focus,
.quick-links-section .quick-link:active,
.quick-links .quick-link:focus,
.quick-links .quick-link:active {
    background: #f3f4f6 !important;
    color: #374151 !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.2);
}

.quick-links-section .quick-link:hover,
.quick-links .quick-link:hover {
    background: #1a5f4a !important;
    color: #fff !important;
    border-color: #1a5f4a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.3);
}

.quick-links-section .quick-link i,
.quick-links .quick-link i {
    font-size: 1rem;
}

/* ===== SEÇÃO WHY CHOOSE - MELHORIAS ===== */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--neutral-50) 0%, #fff 50%, var(--neutral-50) 100%);
}

.why-choose-header {
    text-align: center;
    margin-bottom: 60px;
}

.why-choose-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.why-choose-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--neutral-900);
    margin-bottom: 16px;
}

.why-choose-title span {
    color: var(--primary-color);
}

.why-choose-subtitle {
    color: var(--neutral-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--neutral-200);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    box-shadow: 0 8px 25px rgba(26, 95, 74, 0.3);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-icon-green {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.benefit-icon-blue {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.benefit-icon-gold {
    background: linear-gradient(135deg, var(--secondary-color), #d4a537);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.3);
}


.benefit-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.benefit-description {
    color: var(--neutral-600);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.benefit-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--neutral-200);
}

.benefit-stats span {
    font-size: 0.85rem;
    color: var(--neutral-500);
}

.benefit-stats strong {
    color: var(--primary-color);
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #0d3d2e 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: #fff;
    margin-bottom: 20px;
}

.cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-primary {
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    color: var(--primary-color);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}

/* ===== NEWSLETTER SECTION ===== */
.newsletter-section {
    padding: 80px 0;
    background: var(--neutral-100);
}

.newsletter-box {
    background: #fff;
    border-radius: 24px;
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--neutral-200);
}

.newsletter-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--neutral-900);
    margin-bottom: 12px;
}

.newsletter-description {
    color: var(--neutral-600);
    margin-bottom: 32px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: 2px solid var(--neutral-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.newsletter-form button {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(26, 95, 74, 0.4);
}

/* ===== RESPONSIVIDADE ===== */
@media (max-width: 768px) {
    .hero-premium {
        min-height: 100vh;
        padding: 100px 0 80px;
    }

    .hero-stats {
        gap: 32px;
    }

    .hero-stat-item:not(:last-child)::after {
        display: none;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-box {
        padding: 32px 20px;
        margin: 0 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== GLASSMORPHISM EFFECTS ===== */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== HOVER EFFECTS PREMIUM ===== */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.hover-glow:hover {
    box-shadow: 0 0 30px rgba(26, 95, 74, 0.3);
}

/* ===== SKELETON LOADING ===== */
.skeleton {
    background: linear-gradient(90deg, var(--neutral-200) 25%, var(--neutral-100) 50%, var(--neutral-200) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 8px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    width: 60%;
    margin-bottom: 12px;
}

.skeleton-image {
    height: 200px;
    border-radius: 12px;
}

/* ===== HOME MAP SECTION ===== */
.home-map-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.home-map {
    height: 400px;
    width: 100%;
    border-radius: 0 0 8px 8px;
}

.home-map-container {
    position: relative;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.home-map-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--gradient-brand, linear-gradient(135deg, #1a5f4a 0%, #2d8b6e 100%));
    color: white;
}

.home-map-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
}

.home-map-header .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    transition: all 0.3s ease;
}

.home-map-header .btn-outline-light:hover {
    background-color: white;
    color: #1a5f4a;
}

.home-map-legend {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 12px 14px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    max-width: 180px;
    z-index: 500;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.legend-title {
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    padding-bottom: 8px;
    border-bottom: 1px solid #e2e8f0;
}

.legend-title i {
    color: #64748b;
}

.legend-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.legend-marker {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
    flex-shrink: 0;
}

.legend-text {
    font-size: 0.8rem;
    color: #475569;
    font-weight: 500;
}

@media (max-width: 767px) {
    .home-map {
        height: 300px;
    }

    .home-map-legend {
        bottom: 10px;
        right: 10px;
        max-width: 160px;
        padding: 10px;
    }

    .legend-marker {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }

    .legend-text {
        font-size: 0.75rem;
    }
}

/* ===== HERO MAPA FLUTUANTE (PHASE 8) ===== */
.home-map-section-full {
    position: relative;
    height: 550px;
    min-height: 550px;
    width: 100%;
    margin-top: 0;
    overflow: visible;
}

.home-map-container-full {
    width: 100%;
    height: 100%;
    position: relative;
    box-shadow: none;
    margin-bottom: 0;
    border-radius: 0;
}

#home-map {
    width: 100%;
    height: 100%;
    z-index: 1;
    border-radius: 0;
}

/* Overlay Header (Topo Esquerda) */
.map-floating-header {
    position: absolute;
    top: 30px;
    left: 40px;
    z-index: 1000;
    max-width: 400px;
    background: rgba(15, 45, 34, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 24px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    animation: slideInLeft 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.map-floating-header h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.map-floating-header h3 i {
    color: var(--secondary-color);
    margin-right: 12px;
}

.map-floating-header p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== MOBILE MAP CTA (Substitui mapa em mobile) ===== */
.mobile-map-cta {
    display: none;
    /* Oculto por padrão (desktop) */
}

.desktop-map-container {
    display: block;
    /* Visível por padrão (desktop) */
}

@media (max-width: 767px) {

    /* Ocultar mapa em mobile */
    .desktop-map-container {
        display: none !important;
    }

    /* Mostrar CTA em mobile */
    .mobile-map-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
        background: linear-gradient(135deg, #f8faf9 0%, #e8f0ed 50%, #f0f5f3 100%);
        position: relative;
        overflow: hidden;
    }

    .mobile-map-cta::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M25,50 L45,30 L65,45 L85,25' stroke='%231a5f4a' stroke-width='0.5' fill='none' opacity='0.1'/%3E%3Ccircle cx='25' cy='50' r='3' fill='%231a5f4a' opacity='0.15'/%3E%3Ccircle cx='45' cy='30' r='2' fill='%231a5f4a' opacity='0.1'/%3E%3Ccircle cx='65' cy='45' r='2.5' fill='%231a5f4a' opacity='0.12'/%3E%3Ccircle cx='85' cy='25' r='2' fill='%231a5f4a' opacity='0.1'/%3E%3C/svg%3E") repeat;
        background-size: 150px;
        opacity: 0.6;
    }

    .mobile-map-cta-content {
        position: relative;
        z-index: 1;
        text-align: center;
        padding: 2rem;
        max-width: 320px;
    }

    .mobile-map-cta-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #1a5f4a 0%, #2d8b6e 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 8px 24px rgba(26, 95, 74, 0.25);
    }

    .mobile-map-cta-icon i {
        font-size: 2rem;
        color: white;
    }

    .mobile-map-cta-content h3 {
        font-family: var(--font-display, 'Playfair Display', serif);
        font-size: 1.5rem;
        font-weight: 700;
        color: #1a365d;
        margin-bottom: 0.75rem;
    }

    .mobile-map-cta-content p {
        font-size: 0.9375rem;
        color: #64748b;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .mobile-map-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        background: linear-gradient(135deg, #1a5f4a 0%, #2d8b6e 100%);
        color: white;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1rem;
        text-decoration: none;
        box-shadow: 0 4px 16px rgba(26, 95, 74, 0.3);
        transition: all 0.3s ease;
        min-height: 48px;
    }

    .mobile-map-cta-btn:hover,
    .mobile-map-cta-btn:active {
        background: linear-gradient(135deg, #155a43 0%, #267a5f 100%);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(26, 95, 74, 0.4);
        color: white;
    }

    .mobile-map-quick-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
        flex-wrap: wrap;
    }

    .mobile-map-quick-links a {
        display: inline-flex;
        align-items: center;
        gap: 0.375rem;
        padding: 0.5rem 0.875rem;
        background: white;
        border: 1px solid #e2e8f0;
        border-radius: 20px;
        color: #475569;
        font-size: 0.8125rem;
        font-weight: 500;
        text-decoration: none;
        transition: all 0.2s ease;
        min-height: 40px;
    }

    .mobile-map-quick-links a:hover,
    .mobile-map-quick-links a:active {
        background: #f1f5f9;
        border-color: #1a5f4a;
        color: #1a5f4a;
    }

    .mobile-map-quick-links a i {
        font-size: 0.875rem;
        color: #1a5f4a;
    }

    /* Ajustar altura da seção em mobile */
    .home-map-section-full {
        height: auto;
        min-height: auto;
    }
}

/* Breakpoint 480px - Mobile pequeno */
@media (max-width: 480px) {
    .mobile-map-cta {
        min-height: 350px;
    }

    .mobile-map-cta-content {
        padding: 1.5rem;
    }

    .mobile-map-cta-icon {
        width: 64px;
        height: 64px;
        border-radius: 16px;
    }

    .mobile-map-cta-icon i {
        font-size: 1.5rem;
    }

    .mobile-map-cta-content h3 {
        font-size: 1.35rem;
    }

    .mobile-map-cta-content p {
        font-size: 0.875rem;
    }

    .mobile-map-cta-btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    .mobile-map-quick-links {
        gap: 0.625rem;
    }

    .mobile-map-quick-links a {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}

/* Breakpoint 375px - Mobile muito pequeno */
@media (max-width: 375px) {
    .mobile-map-cta {
        min-height: 320px;
    }

    .mobile-map-cta-icon {
        width: 56px;
        height: 56px;
    }

    .mobile-map-cta-content h3 {
        font-size: 1.25rem;
    }

    .mobile-map-quick-links a {
        padding: 0.375rem 0.625rem;
        font-size: 0.7rem;
    }
}

/* Floating Navigation Dock (Rodapé Centro) */
.map-floating-dock {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 1000;
    display: flex;
    gap: 12px;
    padding: 10px;
    background: rgba(15, 45, 34, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s backwards;
}

.dock-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.dock-item i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.dock-item:hover {
    background: rgba(201, 162, 39, 0.15);
    color: var(--secondary-color);
    transform: translateY(-4px);
}

.dock-item:hover i {
    transform: scale(1.2);
}

.dock-item.active {
    background: var(--secondary-color);
    color: #0f2d22;
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.4);
}

/* Floating Legend (Direita) */
.map-floating-legend {
    position: absolute;
    top: 30px;
    right: 40px;
    z-index: 1000;
    background: rgba(15, 45, 34, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 16px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.12);
    max-width: 200px;
    animation: slideInRight 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.1s backwards;
}

.floating-legend-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.floating-legend-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.floating-legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
}

.floating-legend-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.legend-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translate(-50%, 50px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* Responsividade Mobile */
@media (max-width: 992px) {
    .home-map-section-full {
        height: 70vh;
    }

    .map-floating-header {
        top: 20px;
        left: 20px;
        right: 20px;
        max-width: none;
        padding: 16px;
    }

    .map-floating-header h3 {
        font-size: 1.25rem;
    }

    .map-floating-header p {
        display: none;
    }

    .map-floating-dock {
        bottom: 20px;
        width: 90%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 10px;
        border-radius: 16px;
    }

    .dock-item {
        padding: 10px 16px;
        flex-shrink: 0;
    }

    .map-floating-legend {
        top: auto;
        bottom: 100px;
        right: 20px;
        transform: scale(0.9);
        transform-origin: bottom right;
    }
}

/* ===== SCROLL REVEAL & INDICATOR ===== */

/* Scroll Indicator */
/* Scroll Indicator */
/* Scroll Indicator (Stamp Style) */
/* Scroll Indicator */
/* Scroll Indicator (Stamp Style) */
.scroll-indicator {
    position: absolute;
    top: 50%;
    /* Center in Header */
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 900;
    cursor: pointer;
    transition: opacity 0.8s ease, transform 0.8s ease;
    opacity: 1;
    pointer-events: auto;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Force visibility when NOT revealed (at top) */
#featured-section:not(.revealed) .scroll-indicator {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

/* Hide Stamp when revealed */
#featured-section.revealed .scroll-indicator {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.5);
    /* Scale down effect */
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Stamp Container */
.stamp-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.scroll-indicator:hover .stamp-container {
    transform: scale(1.1);
}

/* SVG Text Ring */
.stamp-text-ring {
    width: 100%;
    height: 100%;
    animation: spin-slow 20s linear infinite;
}

.stamp-text-ring text {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0.15em;
    fill: #1a5f4a;
    /* Primary Green */
    text-transform: uppercase;
}

/* Stamp Center Icon */
.stamp-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: #1a5f4a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(26, 95, 74, 0.2);
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Featured Section Content Reveal */
/* Initially Hidden Content (Header Text & Carousel) */
#featured-section:not(.revealed) .section-header h2,
#featured-section:not(.revealed) .section-header p,
#featured-section:not(.revealed) .featured-carousel-container {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Revealed Content */
#featured-section.revealed .section-header h2,
#featured-section.revealed .section-header p,
#featured-section.revealed .featured-carousel-container {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* ===== MOBILE ENHANCEMENTS (480px) ===== */
@media (max-width: 480px) {

    /* Hero ajustes para mobile pequeno */
    .hero-premium {
        min-height: 90vh;
        padding: 80px 0 60px;
    }

    .hero-content {
        padding: 0 var(--mobile-padding-sm, 12px);
    }

    .hero-badge {
        padding: 6px 14px;
        font-size: 0.75rem;
        margin-bottom: 16px;
    }

    .hero-title-main {
        font-size: 1.75rem;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 24px;
        line-height: 1.6;
    }

    .hero-stats {
        gap: 20px;
        flex-direction: column;
        align-items: center;
    }

    .hero-stat-item:not(:last-child)::after {
        display: none;
    }

    .hero-stat-number {
        font-size: 1.75rem;
    }

    .hero-stat-label {
        font-size: 0.8rem;
    }

    .hero-btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
    }

    /* Quick Links - Scroll Horizontal */
    .quick-links-section {
        padding: 24px 0;
    }

    .quick-links {
        justify-content: flex-start;
        gap: 10px;
        padding: 0 var(--mobile-padding-sm, 12px);
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .quick-links::-webkit-scrollbar {
        display: none;
    }

    .quick-links-section .quick-link,
    .quick-links .quick-link {
        flex-shrink: 0;
        padding: 10px 18px;
        font-size: 0.8125rem;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 32px;
        padding: 0 var(--mobile-padding-sm, 12px);
    }

    .section-header .section-subtitle {
        font-size: 0.9375rem;
    }

    /* Why Choose Section */
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-header {
        margin-bottom: 40px;
        padding: 0 var(--mobile-padding-sm, 12px);
    }

    .why-choose-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .why-choose-title {
        font-size: 1.5rem;
    }

    .benefits-grid {
        gap: 20px;
        padding: 0 var(--mobile-padding-sm, 12px);
    }

    .benefit-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .benefit-icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
        border-radius: 16px;
    }

    .benefit-title {
        font-size: 1.1rem;
    }

    .benefit-description {
        font-size: 0.875rem;
    }

    /* CTA Section */
    .cta-section {
        padding: 60px 0;
    }

    .cta-content {
        padding: 0 var(--mobile-padding-sm, 12px);
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-description {
        font-size: 0.9375rem;
        margin-bottom: 24px;
    }

    .cta-btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
        width: 100%;
        max-width: 280px;
    }

    /* Newsletter */
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-box {
        padding: 24px 16px;
        margin: 0 var(--mobile-padding-sm, 12px);
        border-radius: 16px;
    }

    .newsletter-title {
        font-size: 1.35rem;
    }

    .newsletter-description {
        font-size: 0.875rem;
        margin-bottom: 24px;
    }

    .newsletter-form input {
        padding: 14px 16px;
        font-size: 1rem;
    }

    .newsletter-form button {
        padding: 14px 24px;
        width: 100%;
    }

    /* Map Section */
    .home-map-section-full {
        height: 400px;
        min-height: 400px;
    }

    .map-floating-header {
        top: 16px;
        left: 12px;
        right: 12px;
        max-width: calc(100% - 24px);
        padding: 16px;
        border-radius: 12px;
    }

    .map-floating-header h3 {
        font-size: 1.25rem;
    }

    .map-floating-header p {
        font-size: 0.8125rem;
    }
}

/* ===== MOBILE ENHANCEMENTS (375px) ===== */
@media (max-width: 375px) {
    .hero-premium {
        padding: 70px 0 50px;
    }

    .hero-title-main {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-btn {
        padding: 12px 20px;
        font-size: 0.875rem;
    }

    .quick-links-section .quick-link,
    .quick-links .quick-link {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .why-choose-title {
        font-size: 1.35rem;
    }

    .benefit-card {
        padding: 20px 16px;
    }

    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 1.25rem;
    }

    .cta-title {
        font-size: 1.35rem;
    }

    .newsletter-title {
        font-size: 1.25rem;
    }

    .home-map-section-full {
        height: 350px;
        min-height: 350px;
    }
}

/* ===== MOBILE EXTREME SMALL (320px) ===== */
@media (max-width: 320px) {
    .hero-title-main {
        font-size: 1.35rem;
    }

    .hero-cta-group {
        gap: 10px;
    }

    .hero-btn {
        padding: 10px 16px;
    }

    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .home-map-section-full {
        height: 300px;
        min-height: 300px;
    }

    .map-floating-header {
        padding: 12px;
    }

    .map-floating-header h3 {
        font-size: 1.1rem;
    }
}

/* ===== TOUCH OPTIMIZATION ===== */
@media (hover: none) and (pointer: coarse) {
    .quick-links .quick-link:active {
        transform: scale(0.97);
    }

    .hero-btn:active {
        transform: scale(0.98);
    }

    .benefit-card:active {
        transform: scale(0.99);
    }

    .cta-btn:active {
        transform: scale(0.98);
    }
}

/* ===== MAP POPUP MINI CARDS ===== */

/* Override Leaflet popup defaults */
.leaflet-popup-content-wrapper {
    padding: 0 !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18), 0 4px 12px rgba(0, 0, 0, 0.08) !important;
    border: none !important;
    overflow: hidden;
}

.leaflet-popup-content {
    margin: 0 !important;
    min-width: 260px !important;
    max-width: 280px !important;
    line-height: 1.5 !important;
}

.leaflet-popup-tip {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12) !important;
}

/* Mini Card Container */
.mc-popup {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    overflow: hidden;
}

/* Image wrapper */
.mc-img-wrap {
    position: relative;
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.mc-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mc-popup:hover .mc-img-wrap img {
    transform: scale(1.05);
}

/* Gradient overlay on image */
.mc-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
    pointer-events: none;
}

/* Badges (over image) */
.mc-badges {
    position: absolute;
    bottom: 8px;
    left: 8px;
    right: 8px;
    display: flex;
    gap: 6px;
    z-index: 2;
}

.mc-badge-tipo {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    background: var(--mc-cor, #6c757d);
    backdrop-filter: blur(4px);
    letter-spacing: 0.02em;
}

.mc-badge-op {
    display: inline-flex;
    align-items: center;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mc-badge-op.mc-sale {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
}

.mc-badge-op.mc-rent {
    background: rgba(59, 130, 246, 0.9);
    color: #fff;
}

/* Body */
.mc-body {
    padding: 12px 14px 14px;
}

.mc-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1a1f2e;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.mc-loc {
    font-size: 0.72rem;
    color: #6b7280;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.mc-loc i {
    color: #ef4444;
    font-size: 0.65rem;
}

/* Features row */
.mc-feats {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.mc-feats span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    color: #4b5563;
    font-weight: 500;
}

.mc-feats span i {
    color: #9ca3af;
    font-size: 0.65rem;
}

/* Footer (price + button) */
.mc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.mc-price {
    font-size: 0.95rem;
    font-weight: 800;
    color: #059669;
    letter-spacing: -0.02em;
}

.mc-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #fff !important;
    background: linear-gradient(135deg, #1a5f4a, #22845e);
    text-decoration: none !important;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.mc-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(26, 95, 74, 0.35);
    color: #fff !important;
}

.mc-btn i {
    font-size: 0.6rem;
    transition: transform 0.2s ease;
}

.mc-btn:hover i {
    transform: translateX(2px);
}

/* Responsive */
@media (max-width: 480px) {
    .leaflet-popup-content {
        min-width: 220px !important;
        max-width: 240px !important;
    }
    .mc-img-wrap {
        height: 110px;
    }
    .mc-title {
        font-size: 0.8rem;
    }
    .mc-price {
        font-size: 0.85rem;
    }
}