/* ===== PÁGINA EM CONSTRUÇÃO HV LOCAÇÕES ===== */

.hv-construcao-page {
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.hv-construcao-wrapper {
    min-height: 100vh;
    background: linear-gradient(135deg, #0d0f17 0%, #1a1d28 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.hv-construcao-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 208, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 208, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hv-construcao-content {
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 600px;
    width: 100%;
}

.hv-construcao-logo {
    margin-bottom: 40px;
    animation: fadeInDown 0.8s ease-out;
}

.hv-construcao-logo img {
    max-width: 300px;
    height: auto;
    display: inline-block;
}

.hv-construcao-title {
    font-size: clamp(36px, 8vw, 64px);
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #FFD000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hv-construcao-subtitle {
    font-size: clamp(18px, 4vw, 24px);
    font-weight: 400;
    color: #f1f1f1;
    margin: 0 0 50px;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hv-construcao-cta {
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hv-construcao-text {
    font-size: 16px;
    color: #f1f1f1;
    margin: 0 0 20px;
}

.hv-construcao-btn {
    display: inline-block;
    background-color: #FFD000;
    color: #0d0f17;
    font-weight: 600;
    font-size: 18px;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FFD000;
}

.hv-construcao-btn:hover {
    background-color: transparent;
    color: #FFD000;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(255, 208, 0, 0.3);
}

.hv-construcao-info {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hv-construcao-info p {
    font-size: 16px;
    color: #f1f1f1;
    margin: 0;
}

.hv-construcao-info a {
    color: #FFD000;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.hv-construcao-info a:hover {
    color: #ffffff;
}


/* Botão WhatsApp Flutuante */
.hv-whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 64px;
    height: 64px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    color: #ffffff;
    text-decoration: none;
    animation: pulse 2s infinite;
}

.hv-whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.7);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .hv-construcao-logo img {
        max-width: 150px;
    }

    .hv-construcao-title {
        font-size: 36px;
    }

    .hv-construcao-subtitle {
        font-size: 18px;
    }

    .hv-construcao-btn {
        font-size: 16px;
        padding: 14px 32px;
    }

    .hv-construcao-animation {
        bottom: 30px;
    }

    .hv-building-icon svg {
        width: 80px;
        height: 80px;
    }

    .hv-whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 20px;
        right: 20px;
    }

    .hv-whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hv-construcao-content {
        padding: 20px 15px;
    }

    .hv-construcao-logo {
        margin-bottom: 30px;
    }

    .hv-construcao-title {
        font-size: 28px;
    }

    .hv-construcao-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }
}

