:root {
    /* Cores Galtex */
    --primary-color: #1A3A6E;
    --secondary-color: #E31937;
    --accent-color: #F8A61B;
    --text-color: #2C2C2C;
    --light-text: #5A5A5A;
    --background-color: #FFFFFF;
    --white: #FFFFFF;
    --instagram-gradient: linear-gradient(45deg, #405DE6, #5851DB, #833AB4, #C13584, #E1306C, #FD1D1D);
}

/* Reset e configurações gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

/* Container principal */
.coming-soon-container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
    background-color: var(--background-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Estilos da logo */
.brand-header {
    margin-bottom: 3rem;
}

.brand-logo {
    max-width: 220px;
    height: auto;
    transition: transform 0.3s ease;
}

.brand-logo:hover {
    transform: scale(1.05);
}

/* Conteúdo textual */
.title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.2;
}

.subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 2.5rem;
}

/* Botão do Instagram */
.instagram-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: linear-gradient(45deg, #405DE6, #E1306C);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    gap: 8px; /* Espaço moderno entre elementos */
}

.instagram-cta i {
    font-size: 1.2em; /* Tamanho do ícone */
}


.instagram-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Rodapé e animações */
.footer {
    margin-top: 4rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

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

/* Responsividade */
@media (max-width: 768px) {
    .coming-soon-container {
        padding: 2rem 1.5rem;
    }
    .title {
        font-size: 2rem;
    }
    .subtitle {
        font-size: 1rem;
    }
    .brand-logo {
        max-width: 180px;
    }
}
