/* Reset e Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variáveis CSS - Identidade Visual SZ Energy */
:root {
    --cor-laranja: #ff6900;
    --cor-azul-claro: #f6ffff;
    --cor-texto: #333333;
    --cor-texto-claro: #666666;
    
    /* Fontes */
    --fonte-titulo: 'Playfair Display', serif; /* Similar à Comodo - serif moderna */
    --fonte-texto: 'Josefin Sans', sans-serif;
}

/* Body */
body {
    font-family: var(--fonte-texto);
    background-color: var(--cor-azul-claro);
    color: var(--cor-texto);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    line-height: 1.6;
}

/* Container Principal */
.container {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

/* Conteúdo */
.content {
    background-color: transparent;
    padding: 40px 20px;
    animation: fadeIn 1s ease-in;
}

/* Logo */
.logo-container {
    margin-bottom: 40px;
    animation: slideDown 0.8s ease-out;
}

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Título */
.title {
    font-family: var(--fonte-titulo);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--cor-laranja);
    margin-bottom: 30px;
    letter-spacing: 2px;
    animation: fadeIn 1s ease-in 0.3s both;
}

/* Mensagem Principal */
.message {
    font-family: var(--fonte-texto);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--cor-texto-claro);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 1s ease-in 0.5s both;
}

/* Tagline */
.tagline {
    font-family: var(--fonte-texto);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-laranja);
    letter-spacing: 4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    animation: fadeIn 1s ease-in 0.7s both;
}

/* Divisor */
.divider {
    width: 100px;
    height: 2px;
    background-color: var(--cor-laranja);
    margin: 30px auto;
    animation: expand 1s ease-in 0.9s both;
}

/* Mensagem Secundária */
.sub-message {
    font-family: var(--fonte-texto);
    font-size: 1rem;
    font-weight: 300;
    color: var(--cor-texto-claro);
    font-style: italic;
    animation: fadeIn 1s ease-in 1s both;
}

/* Animações */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes expand {
    from {
        width: 0;
    }
    to {
        width: 100px;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
        letter-spacing: 1px;
    }
    
    .message {
        font-size: 1.1rem;
    }
    
    .tagline {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    
    .logo {
        max-width: 250px;
    }
    
    .content {
        padding: 30px 15px;
    }
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .message {
        font-size: 1rem;
    }
    
    .tagline {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .logo {
        max-width: 200px;
    }
}

/* Melhorias de Acessibilidade */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

