﻿.construction-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.construction-background-image {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(10px);
    z-index: 0;
}

.construction-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.construction-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.construction-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    padding: 20px;
    max-width: 1200px;
    width: 100%;
    margin: auto;
}

.construction-brasao {
    max-width: 220px;
    width: 100%;
    height: auto;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease-out;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.construction-text {
    font-size: 1.5rem;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out 0.3s both;
    font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 400;
}

.construction-subtitle {
    font-size: 3.4rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out 0.6s both;
    font-family: "Teko", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.construction-contacts {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: stretch;
    animation: fadeInUp 1s ease-out 0.9s both;
}

    .construction-contacts .contact-item {
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 15px;
        text-align: left;
        background: rgba(0, 0, 0, 0.4);
        padding: 20px;
        border-radius: 8px;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, background 0.3s ease;
        flex: 1;
        min-width: 200px;
        max-width: 100%;
    }

        .construction-contacts .contact-item:hover {
            transform: translateY(-5px);
            background: rgba(0, 0, 0, 0.6);
        }

        .construction-contacts .contact-item i {
            font-size: 1.5rem;
            color: #FFFFFF;
            margin-top: 5px;
            min-width: 30px;
        }

        .construction-contacts .contact-item div {
            flex: 1;
            font-family: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            font-size: 1rem;
            line-height: 1.6;
        }

        .construction-contacts .contact-item strong {
            font-weight: 600;
            display: block;
            margin-bottom: 5px;
        }

        .construction-contacts .contact-item a {
            color: #FFFFFF;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .construction-contacts .contact-item a:hover {
                color: #0070c9;
                text-decoration: underline;
            }

        .construction-contacts .contact-item small {
            font-size: 0.85rem;
            opacity: 0.8;
            display: block;
            margin-top: 5px;
        }

.construction-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    animation: fadeInUp 1s ease-out 1.2s both;
}

    .construction-social .social-link {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        color: #FFFFFF;
        font-size: 1.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

        .construction-social .social-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-5px) scale(1.1);
            border-color: rgba(255, 255, 255, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .construction-social .social-link i {
            transition: transform 0.3s ease;
        }

        .construction-social .social-link:hover i {
            transform: scale(1.2);
        }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .construction-page {
        padding: 10px;
        min-height: 100vh;
        overflow-y: auto;
    }

    .construction-content {
        max-width: 100%;
        padding: 15px;
    }

    .construction-brasao {
        max-width: 160px;
    }

    .construction-text {
        font-size: 0.9rem;
    }

    .construction-subtitle {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .construction-contacts {
        margin-top: 10px;
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

        .construction-contacts .contact-item {
            padding: 15px;
            flex-direction: column;
            text-align: center;
            align-items: center;
            min-width: 100%;
            max-width: 100%;
        }

            .construction-contacts .contact-item i {
                margin-top: 0;
            }

            .construction-contacts .contact-item div {
                font-size: 0.8rem;
            }

    .construction-social {
        margin-top: 20px;
        gap: 15px;
    }

        .construction-social .social-link {
            width: 45px;
            height: 45px;
            font-size: 1.2rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }
}
