* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    color: #2d3e1f;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow-x: hidden;
    position: relative;
}

/* Decoração de fundo animada */
.background-decoration {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.1), rgba(107, 142, 79, 0.05));
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: 10%;
    left: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(30px, 50px) scale(1.05);
        opacity: 0.5;
    }
}

.container {
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: fadeIn 1s ease-in;
    position: relative;
    z-index: 1;
}

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

.logo-container {
    margin-bottom: 30px;
    animation: slideDown 1s ease-out;
}

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

.logo-img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(85, 107, 47, 0.3));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 25px rgba(85, 107, 47, 0.4));
}

/* Título da empresa */
.company-title {
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.title-main {
    font-size: 4rem;
    font-weight: 900;
    color: #3d5a2a;
    margin-bottom: 10px;
    letter-spacing: 8px;
    text-transform: uppercase;
    background: linear-gradient(135deg, #3d5a2a 0%, #556B2F 50%, #6B8E4F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleGlow 3s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(85, 107, 47, 0.3);
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.2);
    }
}

.title-subtitle {
    font-size: 1.3rem;
    color: #4a6b35;
    font-weight: 300;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.content {
    animation: fadeInUp 1s ease-out 0.9s both;
}

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

.status-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3d5a2a;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: slideInLeft 1s ease-out 1.1s both;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.subtitle {
    font-size: 1.2rem;
    color: #4a6b35;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    line-height: 1.8;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
}

.subtitle .char {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px) rotateX(90deg);
    animation: charReveal 0.5s ease-out forwards;
    position: relative;
}

.subtitle .char.space {
    width: 0.3em;
}

.subtitle .char::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.3), rgba(107, 142, 79, 0.3));
    opacity: 0;
    animation: charGlow 0.6s ease-out forwards;
    border-radius: 2px;
    z-index: -1;
}

@keyframes charReveal {
    0% {
        opacity: 0;
        transform: translateY(20px) rotateX(90deg) scale(0.8);
    }
    50% {
        transform: translateY(-5px) rotateX(0deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

@keyframes charGlow {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
    100% {
        opacity: 0;
        transform: scale(1);
    }
}

/* Efeito de brilho contínuo sutil no texto completo */
.subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(85, 107, 47, 0.1), 
        transparent
    );
    animation: textShine 4s infinite;
    pointer-events: none;
}

@keyframes textShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

.cursor {
    display: inline-block;
    color: #556B2F;
    font-weight: bold;
    margin-left: 2px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

.status-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: linear-gradient(135deg, rgba(85, 107, 47, 0.15), rgba(107, 142, 79, 0.15));
    border: 2px solid #556B2F;
    border-radius: 50px;
    font-size: 1.1rem;
    color: #3d5a2a;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(85, 107, 47, 0.2);
    animation: badgeBounce 1s ease-out 1.5s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
    max-width: 100%;
}

.status-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(85, 107, 47, 0.3);
}

@keyframes badgeBounce {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(20px);
    }
    50% {
        transform: scale(1.05) translateY(-5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.status-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(85, 107, 47, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

.badge-text {
    position: relative;
    z-index: 1;
}

/* Barra de progresso */
.progress-container {
    margin: 40px auto;
    max-width: 400px;
    animation: fadeInUp 1s ease-out 1.7s both;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(85, 107, 47, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #556B2F, #6B8E4F, #556B2F);
    background-size: 200% 100%;
    border-radius: 10px;
    animation: progressLoad 3s ease-out forwards, progressShine 2s infinite;
    width: 0;
}

@keyframes progressLoad {
    to {
        width: 75%;
    }
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.progress-text {
    font-size: 0.9rem;
    color: #4a6b35;
    font-weight: 500;
    animation: pulseText 2s infinite;
}

@keyframes pulseText {
    0%, 100% {
        opacity: 0.7;
    }
    50% {
        opacity: 1;
    }
}

.message {
    font-size: 1rem;
    color: #4a6b35;
    line-height: 1.8;
    margin-top: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 1.9s both;
}

.contact-info {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(85, 107, 47, 0.2);
    color: #4a6b35;
    font-size: 0.95rem;
    animation: fadeInUp 1s ease-out 2.1s both;
}

.contact-info p {
    margin: 10px 0;
}

.company-name {
    font-size: 1.1rem;
    color: #3d5a2a;
    animation: fadeIn 1s ease-out 2.3s both;
}

.pulse {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #556B2F;
    border-radius: 50%;
    margin-right: 10px;
    animation: pulse 2s infinite;
    position: relative;
    z-index: 1;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(85, 107, 47, 0.7);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(85, 107, 47, 0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .title-main {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .title-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .status-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
        white-space: normal;
    }

    .subtitle {
        min-height: auto;
    }
    
    .subtitle .char {
        animation-duration: 0.4s;
    }

    .logo-img {
        max-width: 300px;
    }

    .status-badge {
        padding: 12px 30px;
        font-size: 1rem;
        margin: 30px auto;
        width: fit-content;
        max-width: 90%;
    }

    .message {
        font-size: 0.9rem;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .status-title {
        font-size: 1.5rem;
    }

    .logo-img {
        max-width: 250px;
    }

    .progress-container {
        max-width: 300px;
    }
}
