/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    height: 100vh;
    background-color: #ffffff;
    color: #1a2332;
}

/* Container principal */
.container {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #ffffff;
    border-top: 8px solid #1a2332;
}

/* Conteúdo central */
.content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
    max-width: 600px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* Animação de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo da Empresa */
.logo-wrapper {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.1s backwards;
}

.company-logo {
    max-width: 400px;
    max-height: 160px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 5px 10px rgba(26, 35, 50, 0.1));
}

.logo-placeholder {
    width: 400px;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f7fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0 auto;
}
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a2332;
    margin: 0 auto;
}

/* Título */
h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

/* Subtítulo */
.subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: #4a5568;
    margin-bottom: 3rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Barra de progresso */
.progress-container {
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1a2332 0%, #2d3748 100%);
    border-radius: 10px;
    animation: progressAnimation 3s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(26, 35, 50, 0.2);
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 0%;
    }
}

.progress-text {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 300;
}

/* Redes sociais */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f7fafc;
    color: #1a2332;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
}

.social-link:hover {
    background: #1a2332;
    color: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 35, 50, 0.15);
}

/* Informações de contato */
.contact-info {
    color: #4a5568;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #1a2332;
}

/* Partículas de fundo */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(26, 35, 50, 0.1);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite;
}

.particle:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle:nth-child(2) {
    left: 80%;
    top: 80%;
    animation-delay: 2s;
    animation-duration: 18s;
}

.particle:nth-child(3) {
    left: 50%;
    top: 50%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    left: 20%;
    top: 70%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 70%;
    top: 20%;
    animation-delay: 3s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    left: 90%;
    top: 50%;
    animation-delay: 5s;
    animation-duration: 16s;
}

.particle:nth-child(7) {
    left: 30%;
    top: 10%;
    animation-delay: 2.5s;
    animation-duration: 13s;
}

.particle:nth-child(8) {
    left: 60%;
    top: 90%;
    animation-delay: 4.5s;
    animation-duration: 17s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-100px) translateX(50px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-50px) translateX(-50px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-150px) translateX(100px) scale(1.3);
        opacity: 0.7;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .icon-wrapper i {
        font-size: 3.5rem;
    }
    
    .notify-form {
        flex-direction: column;
        align-items: stretch;
    }
    
    .notify-form input {
        min-width: 100%;
    }
    
    .notify-form button {
        width: 100%;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    .subtitle {
        font-size: 0.9rem;
    }
    
    .icon-wrapper i {
        font-size: 3rem;
    }
}