/* Custom CSS for Apolo Partners - Em Construção */

:root {
    --color-bg: #f7f4eb;         /* Creme/bege quente original do logotipo */
    --color-primary: #0f291e;    /* Verde floresta profundo */
    --color-accent: #9e6335;     /* Bronze/cobre metálico */
    --color-accent-light: #c88958; /* Bronze mais claro para hover */
    --color-text-dark: #1f2b24;   /* Texto escuro */
    --color-text-muted: #5e6b63;  /* Texto secundário/mutado */
    
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Montserrat', sans-serif;
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset de estilos */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-dark);
    font-family: var(--font-sans);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
}

/* Fundo decorativo sutil - Gradiente suave radial para dar profundidade premium */
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.4) 0%, rgba(247, 244, 235, 0) 70%);
    pointer-events: none;
    z-index: 1;
}

/* Container Principal */
.construction-container {
    width: 100%;
    max-width: 750px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: class;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Linha de destaque superior */
.top-accent-line {
    width: 80px;
    height: 3px;
    background-color: var(--color-accent);
    margin-bottom: 2.5rem;
    border-radius: 2px;
}

/* Logo Wrapper */
.logo-wrapper {
    margin-bottom: 2.5rem;
    width: 100%;
    display: flex;
    justify-content: center;
}

.brand-logo {
    max-width: 480px;
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Sombras suaves para dar destaque de forma integrada ao fundo */
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.03));
}

/* Seção de Conteúdo */
.content-wrapper {
    margin-bottom: 3.5rem;
    width: 100%;
}

.status-title {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--color-primary);
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.status-description {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 580px;
    margin: 0 auto 2.5rem auto;
    font-weight: 300;
}

.status-description .highlight {
    font-weight: 500;
    color: var(--color-primary);
}

/* Barra de Progresso Minimalista */
.progress-bar-container {
    width: 180px;
    height: 2px;
    background-color: rgba(158, 99, 53, 0.15); /* Cor bronze com opacidade */
    margin: 0 auto 0.75rem auto;
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-bar-fill {
    height: 100%;
    width: 40%;
    background-color: var(--color-accent);
    border-radius: 2px;
    animation: pulse-progress 3s ease-in-out infinite alternate;
}

.progress-label {
    font-size: 0.75rem;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Footer & Contatos */
.contact-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(15, 41, 30, 0.08);
    padding-top: 2rem;
}

.contact-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    margin-bottom: 2rem;
}

.contact-button:hover {
    background-color: var(--color-primary);
    color: var(--color-bg);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 41, 30, 0.15);
}

.contact-button i {
    font-size: 0.95rem;
}

/* Redes Sociais */
.social-links {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.social-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(15, 41, 30, 0.15);
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
}

.social-icon:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-3px);
}

.copyright {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    letter-spacing: 0.5px;
}

/* Animações */
@keyframes pulse-progress {
    0% {
        left: 0;
        width: 30%;
    }
    100% {
        left: 70%;
        width: 30%;
    }
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(20px);
    animation: slideUp 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
    animation-delay: 0.2s;
}

.animate-fade-in-delayed {
    opacity: 0;
    animation: fadeIn 1.2s forwards cubic-bezier(0.16, 1, 0.3, 1);
    animation-delay: 0.4s;
}

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

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

/* Responsividade */
@media (max-width: 768px) {
    .construction-container {
        padding: 2rem 1.25rem;
    }
    
    .top-accent-line {
        margin-bottom: 2rem;
    }
    
    .brand-logo {
        max-width: 100%;
    }
    
    .status-title {
        font-size: 1.6rem;
    }
    
    .status-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .contact-button {
        width: 100%;
        justify-content: center;
    }
}
