:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f2f3f5;
    --text-main: #141619;
    --text-muted: #5a5f67;
    --accent-dark: #1b1c20;
    --accent-silver: #c4cbd3;
    --accent-metallic: linear-gradient(135deg, #e4e7ea 0%, #b8bfc7 50%, #858f9b 100%);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

.ambient-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
    transition: background 0.1s ease-out;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.8) 0%, rgba(224, 226, 228, 0.4) 50%, rgba(235, 237, 239, 0) 80%);
}

.container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-container {
    margin-bottom: 3rem;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.logo {
    width: 100%;
    max-width: 380px;
    height: auto;
    filter: drop-shadow(0px 10px 20px rgba(0,0,0,0.08));
    transition: transform 0.4s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.elegant-loading {
    width: 100%;
    max-width: 340px;
    margin: 0 auto 2rem auto;
}

.loading-bar-wrapper {
    position: relative;
    height: 38px;
    background: #f0f2f5;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.loading-bar-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    background: linear-gradient(90deg, #e4e7ea 0%, #d1d5da 50%, #e4e7ea 100%);
    background-size: 200% 100%;
    animation: shimmerLoading 2.5s infinite linear;
    z-index: 1;
    border-radius: 0 20px 20px 0;
}

.loading-text {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
}

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

.title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.2rem, 3.5vw, 2.2rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-main);
    text-transform: none;
    letter-spacing: -0.5px;
}

/* Removido o gradient span do titulo pois a frase agora é texto limpo */

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem auto;
    font-weight: 300;
}

.progress-section {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 3rem auto;
}

.progress-container {
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 85%;
    background: var(--accent-dark);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(
        90deg,
        rgba(255,255,255, 0) 0%,
        rgba(255,255,255, 0.4) 50%,
        rgba(255,255,255, 0) 100%
    );
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.contact-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.contact-action p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.link-whatsapp {
    display: inline-flex;
    align-items: center;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.link-whatsapp:hover {
    opacity: 0.7;
}

footer {
    margin-top: 5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 300;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

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

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

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
    .title { font-size: 2rem; }
    .logo { max-width: 280px; }
    .container { padding: 1.5rem; }
}
