/**
 * Footer Custom CSS - Studio Vogt Theme
 * Estilos customizados para o footer seguindo padrões Bulma
 */

/* Footer responsivo conforme documentação Bulma */
.footer {
    padding: 1.25rem 1.5rem 1.25rem;
    background-color: #000000 !important;
    color: #ffffff;
    position: relative;
}

.footer .block {
    margin-bottom: 1.5rem;
}

.footer .block:last-child {
    margin-bottom: 0;
}

.footer .columns {
    margin-bottom: 0;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer a:hover {
    color: #1e3a8a;
    text-decoration: none;
}

.footer strong {
    color: #ffffff;
}

.footer p {
    color: #ffffff;
    margin-bottom: 0;
}

/* Boxes no footer conforme documentação Bulma */
.footer .box {
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 1.25rem;
}

.footer .box .title {
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Navbar no footer conforme documentação Bulma */
.footer .navbar {
    background-color: transparent;
    min-height: auto;
    padding: 0;
}

.footer .navbar-menu {
    box-shadow: none;
    padding: 0;
}

.footer .navbar-start {
    justify-content: center;
}

.footer .navbar-item {
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer .navbar-item:hover {
    background-color: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
}

/* Responsivo para navbar do footer */
@media screen and (max-width: 1023px) {
    .footer .navbar-start {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .footer .navbar-item {
        flex-grow: 0;
        flex-shrink: 0;
    }
}

/* Botões de redes sociais com ícones Font Awesome */
.footer .button.is-ghost {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.footer .button.is-ghost:hover {
    background-color: rgba(30, 58, 138, 0.2);
    border-color: #1e3a8a;
    color: #1e3a8a;
    transform: translateY(-2px);
    text-decoration: none;
}

.footer .button.is-ghost .icon {
    width: 1.25rem;
    height: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.footer .buttons.is-centered {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0;
}

.footer .buttons.is-centered .button {
    margin-bottom: 0.5rem;
}

/* Responsivo para botões de redes sociais */
@media screen and (max-width: 768px) {
    .footer .button.is-ghost {
        font-size: 0.875rem;
        padding: 0.5rem 0.75rem;
    }
    
    .footer .button.is-ghost .icon {
        width: 1rem;
        height: 1rem;
    }
}

/* Garantir que os ícones Font Awesome sejam exibidos corretamente */
.footer .icon i {
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    color: inherit;
    font-family: FontAwesome;
}

/* Garantir que ícones herdem cor do container */
.footer .icon .fa {
    color: inherit;
}

/* Traço de azul escuro no topo */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 50%, #1e3a8a 100%);
}
