/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #009cbc;
    --secondary-color: #00758c;
    --accent-color: #00d4ff;
    --text-light: #ffffff;
    --text-shadow: rgba(0, 0, 0, 0.8);
    --overlay-dark: rgba(0, 20, 40, 0.85);
    --glow-color: rgba(0, 156, 188, 0.4);
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
    background: #001520;
}

/* Container Principal */
.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: url('../imagens/BG_MAPA.png') center center / cover no-repeat fixed;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

/* Conteúdo */
.content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
    max-width: 1200px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

/* Logo */
.logo-container {
    margin-bottom: 1.5rem;
    animation: floatAnimation 3s ease-in-out infinite;
}

.logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 5px 15px var(--glow-color));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Mensagem */
.message-container {
    background: rgba(0, 30, 50, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem 1.5rem;
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 156, 188, 0.3);
}

.title {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 15px var(--glow-color);
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.divider {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    margin: 1rem auto;
    animation: pulse 2s ease-in-out infinite;
}

.subtitle {
    font-family: 'Cinzel', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px var(--text-shadow);
}

.description {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-item {
    flex: 0 1 120px;
    text-align: center;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    animation: bounce 2s ease-in-out infinite;
}

.feature-item p {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Countdown */
.countdown {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.countdown-item {
    background: rgba(0, 117, 140, 0.3);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1rem 0.75rem;
    min-width: 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}

.countdown-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--glow-color);
    background: rgba(0, 156, 188, 0.4);
}

.countdown-number {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-shadow: 0 0 10px var(--glow-color);
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.countdown-separator {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}

/* Contato */
.contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 156, 188, 0.3);
}

.contact-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.75rem;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    background: rgba(0, 156, 188, 0.2);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.contact-email:hover {
    background: rgba(0, 156, 188, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--glow-color);
}

.email-icon {
    font-size: 1.2rem;
}

/* Partículas */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 50%;
    opacity: 0.6;
    animation: particleFloat linear infinite;
    box-shadow: 0 0 5px var(--accent-color);
}

/* Animações */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatAnimation {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .description {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 220px;
    }

    .features {
        gap: 1.5rem;
    }

    .feature-icon {
        font-size: 1.8rem;
    }

    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        min-width: 65px;
        padding: 0.75rem 0.5rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }

    .message-container {
        padding: 1.5rem 1.25rem;
    }

    .contact-email {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .logo {
        max-width: 180px;
    }

    .features {
        gap: 1rem;
    }

    .feature-icon {
        font-size: 1.5rem;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.6rem 0.4rem;
    }

    .countdown-number {
        font-size: 1.3rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .countdown-separator {
        font-size: 1.3rem;
    }

    .message-container {
        padding: 1.25rem 1rem;
    }

    .contact-email {
        font-size: 0.85rem;
    }
}
