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

body {
    font-family: 'Arial Black', 'Arial Bold', Gadget, sans-serif;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

/* Fundo com listras diagonais */
.diagonal-stripes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: repeating-linear-gradient(
        45deg,
        #000000,
        #000000 60px,
        #f5f5f5 60px,
        #f5f5f5 120px
    );
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.content {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 60px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    text-align: center;
    max-width: 800px;
    width: 100%;
    border: 5px solid #000;
}

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

.logo {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.title {
    font-size: 4rem;
    color: #dc143c;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 
        3px 3px 0 #000,
        -1px -1px 0 #000,
        1px -1px 0 #000,
        -1px 1px 0 #000,
        1px 1px 0 #000,
        4px 4px 0 #000;
    font-weight: 900;
    line-height: 1.2;
}

.subtitle {
    font-size: 2rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
    font-weight: 700;
}

.message {
    margin: 40px 0;
}

.message p {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.coming-soon {
    font-size: 1.2rem !important;
    color: #666;
    font-weight: 400 !important;
    text-transform: none !important;
}

.cta-button {
    display: inline-block;
    background-color: #dc143c;
    color: #fff;
    text-decoration: none;
    padding: 20px 50px;
    font-size: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 4px solid #000;
    box-shadow: 
        0 8px 0 #000,
        0 12px 20px rgba(0, 0, 0, 0.4);
    margin: 20px 0;
    position: relative;
    top: 0;
}

.cta-button:hover {
    background-color: #b01030;
    transform: translateY(-5px);
    box-shadow: 
        0 13px 0 #000,
        0 17px 25px rgba(0, 0, 0, 0.5);
}

.cta-button:active {
    transform: translateY(4px);
    box-shadow: 
        0 4px 0 #000,
        0 8px 15px rgba(0, 0, 0, 0.3);
}

.social-info {
    margin-top: 40px;
}

.social-info p {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Responsividade */
@media (max-width: 768px) {
    .content {
        padding: 40px 30px;
    }
    
    .title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .subtitle {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }
    
    .message p {
        font-size: 1.2rem;
    }
    
    .coming-soon {
        font-size: 1rem !important;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .logo {
        max-height: 150px;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .message p {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .diagonal-stripes {
        background: repeating-linear-gradient(
            45deg,
            #000000,
            #000000 40px,
            #f5f5f5 40px,
            #f5f5f5 80px
        );
    }
}
