@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* Reset e Configurações Globais */
* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #ffffff !important;
    /* Cor exata do fundo da logo */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Navbar Customizada */
.navbar.navbar-custom {
    background-color: #4e0624 !important;
    /* Vinho Original */
    width: 100%;
    border: none;
    padding: 0.8rem 1.5rem !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Botão como Texto Elegante */
.btn.btn-custom {
    color: #ecb446 !important;
    /* Dourado Original */
    background-color: transparent !important;
    border: none !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: none !important;
    outline: none !important;
}

.btn.btn-custom:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Conteúdo Principal Centralizado */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-box {
    width: 100%;
    max-width: 450px;
    /* Tamanho elegante para desktop */
    text-align: center;
}

@media (max-width: 576px) {
    .logo-box {
        max-width: 85%;
        /* Ajuste automático para celulares */
    }
}