/* Reset e Definições Gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #001a33; /* Azul Escuro da Logo */
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.app-container {
    width: 100%;
    max-width: 500px; /* Mantém o aspecto de app no PC */
    background: linear-gradient(180deg, #001a33 0%, #003366 100%);
    border-radius: 30px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Logo */
.header .logo {
    width: 80%;
    max-width: 250px;
    margin-bottom: 30px;
}

/* Mascote com animação suave */
.mascote-container .mascote {
    width: 100%;
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Texto Central */
.content h1 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #ff8c00; /* Laranja EPEC */
    text-transform: uppercase;
}

.content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 15px 0 30px;
    color: #e0e0e0;
}

/* Botão Entrar */
.btn-entrar {
    display: inline-block;
    background-color: #ff8c00;
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: transform 0.3s, background 0.3s;
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.4);
    margin-bottom: 40px;
}

.btn-entrar:hover {
    transform: scale(1.05);
    background-color: #e67e00;
}

/* Botões Sociais */
.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp {
    background-color: #25d366;
}

.btn-social:hover {
    opacity: 0.9;
    transform: translateY(-3px);
}

/* Rodapé */
.footer {
    margin-top: 40px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* Ajustes para telas maiores */
@media (min-width: 768px) {
    .app-container {
        max-width: 450px;
    }
}