* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: hidden;
    overflow-y: auto;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeIn 1s ease-in;
    margin: auto;
}

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

.logo-container {
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out;
}

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

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.maintenance-icon {
    font-size: 80px;
    color: #D42133;
    margin-bottom: 30px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #D42133;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: slideIn 1s ease-out 0.3s both;
}

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

.message {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #e0e0e0;
    animation: slideIn 1s ease-out 0.5s both;
}

.contact-info {
    margin-top: 40px;
    animation: slideIn 1s ease-out 0.7s both;
}

.contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #ffffff;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.contact-btn i {
    font-size: 1.5rem;
}

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

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

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

.instagram:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.4);
}

.footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideIn 1s ease-out 0.9s both;
}

.footer p {
    font-size: 0.9rem;
    color: #b0b0b0;
}

/* Background Animation */
.background-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0.1;
}

.gear {
    position: absolute;
    color: #D42133;
    font-size: 100px;
    animation: rotate 20s linear infinite;
}

.gear-1 {
    top: 10%;
    left: 10%;
    animation-duration: 15s;
}

.gear-2 {
    bottom: 20%;
    right: 15%;
    font-size: 150px;
    animation-duration: 25s;
    animation-direction: reverse;
}

.gear-3 {
    top: 60%;
    left: 70%;
    font-size: 80px;
    animation-duration: 18s;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
/* Ajuste para notebooks com altura menor */
@media (max-height: 800px) {
    .content {
        padding: 30px 20px;
    }

    .logo {
        max-width: 200px;
    }

    .logo-container {
        margin-bottom: 25px;
    }

    .maintenance-icon {
        font-size: 60px;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
    }

    .message {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

    .contact-info {
        margin-top: 25px;
    }

    .contact-info h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
    }

    .footer {
        margin-top: 30px;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 40px 20px;
    }

    h1 {
        font-size: 2rem;
    }

    .message {
        font-size: 1.1rem;
    }

    .logo {
        max-width: 200px;
    }

    .maintenance-icon {
        font-size: 60px;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-btn {
        width: 100%;
        justify-content: center;
    }

    .gear {
        font-size: 60px;
    }

    .gear-2 {
        font-size: 90px;
    }

    .gear-3 {
        font-size: 50px;
    }
}

/* Ajuste extra para notebooks com telas muito baixas */
@media (max-height: 650px) {
    .container {
        padding: 20px;
    }

    .content {
        padding: 20px 25px;
    }

    .logo {
        max-width: 150px;
    }

    .logo-container {
        margin-bottom: 15px;
    }

    .maintenance-icon {
        font-size: 50px;
        margin-bottom: 15px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }

    .message {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .contact-info {
        margin-top: 20px;
    }

    .contact-info h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .contact-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .footer {
        margin-top: 20px;
        padding-top: 15px;
    }

    .footer p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    .message {
        font-size: 1rem;
    }

    .contact-info h2 {
        font-size: 1.2rem;
    }

    .contact-btn {
        font-size: 1rem;
        padding: 12px 25px;
    }
}
