/* Definições de Estilo Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    background-color: #4287f5;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
}

.wrapper {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    text-align: center;
}

.main-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.main-header h2 {
    font-size: 1.2rem;
    font-weight: 300;
    margin-bottom: 50px;
    opacity: 0.85;
}

.teaser-container {
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #ffffff;
    margin: 0 auto 30px;
}

.alert-text {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.status-text {
    font-style: italic;
    font-size: 1rem;
    opacity: 0.9;
}

.social-container {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.instagram-text {
    font-size: 1rem;
    margin-bottom: 15px;
    opacity: 0.85;
}

.instagram-link {
    display: inline-block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid #ffffff;
    padding: 10px 25px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.instagram-link:hover {
    background-color: #ffffff;
    color: #4287f5;
}

.main-footer {
    margin-top: 60px;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsividade Mobile */
@media (max-width: 768px) {
  .main-header h1 { font-size: 2.2rem; }
  .alert-text { font-size: 1.4rem; }
  .instagram-link { width: 100%; }
}