/* Reset e Fontes */

@font-face {
    font-family: 'Thoro';
    src: url('Thoro.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



/* Variáveis */
:root {
    --primary-ice: #64c8ff;
    --secondary-ice: #96dcff;
    --dark-blue: #0a1628;
    --medium-blue: #1a2942;
    --light-ice: #e0f4ff;
    --glow-blue: rgba(100, 200, 255, 0.6);
    --glow-intense: rgba(100, 200, 255, 0.9);
}

/* Base */
body {
    font-family: 'Thoro', sans-serif;
    background-color: var(--dark-blue);
    color: var(--light-ice);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    background-image: 
        url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?w=1920&q=80'),
        linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f1f38 100%);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: overlay;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, transparent 0%, rgba(10, 22, 40, 0.8) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Overlay de gelo */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(100, 200, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(150, 220, 255, 0.06) 0%, transparent 40%);
    pointer-events: none;
    z-index: 2;
}

/* Partículas de gelo */
.ice-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

/* Container principal */
.container {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Header */
.header {
    text-align: center;
    padding: 3rem 0 2rem;
    animation: fadeInDown 1s ease-out;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.ice-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulseGlow 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.2); }
}

.logo {
    font-family: 'Thoro', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: var(--secondary-ice);
    text-shadow: 
        0 0 30px var(--glow-intense),
        0 0 60px var(--glow-blue),
        2px 2px 8px rgba(0, 0, 0, 0.8);
    letter-spacing: 0.3em;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #fff 0%, var(--secondary-ice) 50%, var(--primary-ice) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-family: 'Thoro', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    color: var(--secondary-ice);
    text-shadow: 0 0 15px var(--glow-blue);
    letter-spacing: 0.2em;
    opacity: 0.9;
    font-weight: 400;
}

/* Conteúdo principal */
.main-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card principal */
.frost-card {
    position: relative;
    background: rgba(15, 31, 56, 0.85);
    border: 2px solid rgba(100, 200, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    max-width: 700px;
    width: 100%;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 60px rgba(100, 200, 255, 0.2),
        inset 0 0 60px rgba(0, 100, 200, 0.1),
        0 20px 60px rgba(0, 0, 0, 0.5);
}

.frost-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent, rgba(100, 200, 255, 0.4), transparent);
    border-radius: 24px;
    z-index: -1;
    opacity: 0;
    animation: borderPulse 4s ease-in-out infinite;
}

@keyframes borderPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.card-glow {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--glow-blue) 0%, transparent 70%);
    filter: blur(50px);
    opacity: 0.4;
    animation: floatGlow 6s ease-in-out infinite;
}

@keyframes floatGlow {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -20px); }
}

/* Ícone */
.icon-wrapper {
    text-align: center;
    margin-bottom: 2rem;
}

.ice-icon {
    width: 80px;
    height: 80px;
    color: var(--primary-ice);
    filter: drop-shadow(0 0 20px var(--glow-blue));
    animation: rotateIcon 20s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Textos */
.title {
    font-family: 'Thoro', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--secondary-ice);
    text-align: center;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--glow-blue);
    font-weight: 700;
}

.description {
    font-size: clamp(1rem, 1.8vw, 1.1rem);
    line-height: 1.8;
    color: rgba(224, 244, 255, 0.9);
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Barra de progresso */
.progress-section {
    margin-bottom: 2.5rem;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--secondary-ice);
    font-weight: 500;
}

.progress-value {
    font-weight: 600;
    color: var(--primary-ice);
    text-shadow: 0 0 10px var(--glow-blue);
}

.progress-bar {
    width: 100%;
    height: 32px;
    background: rgba(0, 50, 100, 0.4);
    border-radius: 16px;
    padding: 4px;
    box-shadow: 
        inset 0 2px 10px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(100, 200, 255, 0.1);
    border: 1px solid rgba(100, 200, 255, 0.2);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4da8ff, #64c8ff, #96dcff);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 0 20px var(--glow-blue),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: width 1s ease-out;
}

.progress-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    to { left: 200%; }
}

/* Grid de status */
.status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.status-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(100, 200, 255, 0.05);
    border: 1px solid rgba(100, 200, 255, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.status-item:hover {
    background: rgba(100, 200, 255, 0.1);
    border-color: rgba(100, 200, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(100, 200, 255, 0.2);
}

.status-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px var(--glow-blue));
}

.status-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.status-text strong {
    font-size: 0.95rem;
    color: var(--secondary-ice);
    font-weight: 600;
}

.status-text span {
    font-size: 0.85rem;
    color: rgba(224, 244, 255, 0.7);
}

/* Seção de contato */
.contact-section {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(100, 200, 255, 0.2);
}

.contact-title {
    font-size: 1rem;
    color: var(--secondary-ice);
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(100, 200, 255, 0.05));
    border: 2px solid rgba(100, 200, 255, 0.4);
    border-radius: 12px;
    color: var(--secondary-ice);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(100, 200, 255, 0.1);
}

.contact-button:hover {
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.25), rgba(100, 200, 255, 0.15));
    border-color: rgba(100, 200, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 5px 30px rgba(100, 200, 255, 0.3);
}

.contact-button svg {
    transition: transform 0.3s ease;
}

.contact-button:hover svg {
    transform: translateX(5px);
}

/* Footer */
.footer {
    padding: 2rem 0 1.5rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.footer-divider {
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(100, 200, 255, 0.4), transparent);
    margin: 0 auto 1.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(224, 244, 255, 0.6);
    line-height: 1.6;
}

.separator {
    margin: 0 0.5rem;
    opacity: 0.5;
}

.footer-runes {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.rune {
    font-size: 1.5rem;
    color: var(--primary-ice);
    opacity: 0.5;
    text-shadow: 0 0 10px var(--glow-blue);
    animation: runeFloat 3s ease-in-out infinite;
}

.rune:nth-child(2) {
    animation-delay: 0.5s;
}

.rune:nth-child(3) {
    animation-delay: 1s;
}

@keyframes runeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Responsividade */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .header {
        padding: 2rem 0 1.5rem;
    }

    .logo {
        letter-spacing: 0.2em;
    }

    .subtitle {
        letter-spacing: 0.15em;
    }

    .frost-card {
        padding: 2rem 1.5rem;
    }

    .ice-icon {
        width: 60px;
        height: 60px;
    }

    .status-grid {
        grid-template-columns: 1fr;
    }

    .contact-button {
        width: 100%;
        justify-content: center;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .separator {
        display: block;
        margin: 0.3rem 0;
    }
}

@media (max-width: 480px) {
    .frost-card {
        padding: 1.5rem 1rem;
    }

    .description {
        font-size: 0.95rem;
    }

    .footer-runes {
        gap: 1rem;
    }

    .rune {
        font-size: 1.2rem;
    }
}