body {
    margin: 0;
    padding: 0;
    font-family: 'Comic Neue', cursive;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    position: relative;
    overflow: hidden;
    animation: bounce 2s infinite alternate;
}

h1 {
    color: #ff6b6b;
    font-size: 3em;
    margin-bottom: 20px;
    text-shadow: 3px 3px 0 #ffe66d;
}

p {
    font-size: 1.5em;
    color: #4e4e4e;
    margin-bottom: 30px;
}

.construction-icon {
    font-size: 5em;
    margin: 20px 0;
    display: inline-block;
    animation: spin 4s linear infinite, shake 0.5s ease-in-out infinite alternate;
}

.progress-container {
    width: 100%;
    height: 30px;
    background-color: #f1f1f1;
    border-radius: 15px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    border-radius: 15px;
    animation: progress 5s infinite;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-weight: bold;
    box-shadow: inset 0 0 5px rgba(0,0,0,0.2);
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    margin: 0 10px;
    color: white;
    background-color: #ff6b6b;
    border-radius: 50%;
    font-size: 1.2em;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.2);
    background-color: #ff8e8e;
}

/* Cores específicas para cada rede social */
.social-links a[title="Facebook"] { background-color: #3b5998; }
.social-links a[title="Instagram"] { 
    background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}
.social-links a[title="Twitter"] { background-color: #1da1f2; }
.social-links a[title="E-mail"] { background-color: #d44638; }

.tool {
    position: absolute;
    font-size: 2em;
    animation: float 5s infinite ease-in-out;
}

.tool:nth-child(1) {
    top: -30px;
    left: 20px;
    animation-delay: 0s;
}

.tool:nth-child(2) {
    top: -20px;
    right: 40px;
    animation-delay: 0.5s;
}

.tool:nth-child(3) {
    bottom: -30px;
    left: 50px;
    animation-delay: 1s;
}

.tool:nth-child(4) {
    bottom: -20px;
    right: 30px;
    animation-delay: 1.5s;
}

.countdown {
    font-size: 1.8em;
    margin: 20px 0;
    color: #ff6b6b;
    font-weight: bold;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes shake {
    0% { transform: translateX(-5px); }
    100% { transform: translateX(5px); }
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

@keyframes progress {
    0% { width: 10%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
    100% { transform: translateY(0) rotate(0deg); }
}