/* Importa a fonte 'Montserrat' */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');

/* --- VARIÁVEIS DE COR--- */
:root {
    --cor-primaria: #0D1117;      /* Azul super escuro / Grafite */
    --cor-destaque: #3d7b8a;      /* Verde-azulado vibrante */
    --cor-contato: #3d7b8a;       /* Verde para botões de contato */
    --cor-texto-claro: #ffffff;   /* Branco */
    --cor-texto-escuro: #333333;  /* Cinza escuro para textos */
    --cor-fundo-claro: #f8f9fa;   /* Cinza muito claro para o fundo das seções */
    --cor-cinza-card: #e9ecef;    /* Cinza para o fundo de alguns cards */
}

/* --- ESTILOS GERAIS E SEGURANÇA VISUAL --- */
* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box;
    
    /* SEGURANÇA: IMPEDE SELEÇÃO DE TEXTO E IMAGEM */
    -webkit-user-select: none; /* Safari/Chrome */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* IE */
    user-select: none; /* Padrão */
}

/* Permite selecionar texto apenas em campos de formulário */
input, textarea, select {
    user-select: text !important;
}

html { scroll-behavior: smooth; }
body { font-family: 'Montserrat', sans-serif; background-color: var(--cor-fundo-claro); color: var(--cor-texto-escuro); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* --- CABEÇALHO--- */
header { background-color: var(--cor-primaria); padding: 15px 0; border-bottom: 1px solid #30363d; position: sticky; top: 0; z-index: 900; }
header .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-weight: 700; font-size: 24px; color: var(--cor-texto-claro); text-decoration: none; display: flex; align-items: center; gap: 10px; }
.logo img { height: 40px; }

header nav ul { list-style: none; display: flex; align-items: center; gap: 20px; margin: 0; }
header nav ul li { display: inline-block; }

/* Links normais do menu */
header nav a { text-decoration: none; color: #c9d1d9; font-size: 14px; font-weight: 700; text-transform: uppercase; padding-bottom: 5px; transition: color 0.3s ease; }
header nav a:not(.nav-contact-button):not(.nav-login-btn):hover { color: var(--cor-texto-claro); }

/* Botão cadastre-se */
.nav-contact-button { background-color: var(--cor-contato); color: var(--cor-texto-claro) !important; padding: 10px 20px; border-radius: 5px; transition: background-color 0.3s ease; }
.nav-contact-button:hover { background-color: #2a5a66; } 

/* Botão Área do Cliente */
.nav-login-btn {
    color: #c9d1d9 !important; /* Força cor clara */
    border: 1px solid #30363d;
    padding: 8px 15px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.nav-login-btn:hover {
    border-color: var(--cor-destaque);
    color: var(--cor-destaque) !important;
    background: rgba(61, 123, 138, 0.1);
}

/* --- SEÇÃO HERO --- */
.hero { 
    position: relative; 
    height: 90vh; 
    background-image: url('https://images.unsplash.com/photo-1516321497487-e288fb19713f?q=80&w=2070'); 
    background-size: cover; 
    background-position: center; 
    display: flex;
    align-items: center;
    color: var(--cor-texto-claro); 
}
.hero-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background-color: rgba(13, 17, 23, 0.7); 
}
.hero-layout-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 colunas */
    align-items: center;
    gap: 40px;
}
.hero-text-content {
    text-align: left;
}
.hero-text-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero-text-content .hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #f0f0f0; 
    margin-bottom: 20px;
}
.hero-text-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #d0d0d0;
}
.hero .cta-button { 
    display: inline-block; 
    background-color: var(--cor-destaque); 
    color: var(--cor-texto-claro); 
    font-weight: 700; 
    text-decoration: none; 
    padding: 15px 45px; 
    margin-top: 35px;
    border-radius: 5px; 
    text-transform: uppercase; 
    transition: background-color 0.3s ease; 
    border: none; 
}
.hero .cta-button:hover { 
    background-color: #2a5a66; 
}

/* --- ESTILOS GERAIS DE SEÇÃO --- */
.page-section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.section-subtitle { text-align: center; font-size: 1rem; color: #888; margin-bottom: 50px; }
.center-button-wrapper { text-align: center; margin-top: 60px; }

/* --- SEÇÃO "SERVIÇOS" --- */
.homes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 40px; justify-items: center; }
.home-card { text-align: center; }
.home-card img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; border: 5px solid var(--cor-texto-claro); box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.home-card img:hover { transform: scale(1.05); }
.home-card h3 { margin-top: 20px; font-size: 1rem; font-weight: 700; text-transform: uppercase; }

/* --- SEÇÃO "PROJETOS" CORRIGIDA PARA 3x1 --- */

.projects-grid { 
    display: grid; 
    grid-template-columns: 1fr; /* Mobile: 1 coluna empilhada */
    gap: 30px; 
    margin-top: 40px;
}

.project-frame { 
    position: relative;
    border-radius: 15px; 
    overflow: hidden; 
    box-shadow: 0 10px 20px rgba(0,0,0,0.15); 
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block; 
    /* Padrão para mobile e para os 3 primeiros cards: Retrato/Vertical */
    aspect-ratio: 2 / 3; 
    width: 100%; 
}

a.project-frame { cursor: pointer; }
div.project-frame { cursor: default; }

.project-frame:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 15px 30px rgba(0,0,0,0.25); 
}

.project-frame img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; /* Garante que a imagem preencha o card sem distorcer */
    display: block; 
    transition: transform 0.5s ease; 
}

.project-frame:hover img { transform: scale(1.05); }

/* --- A MÁGICA ACONTECE AQUI (Desktop) --- */
@media (min-width: 768px) {
    .projects-grid { 
        /* Define 3 colunas iguais */
        grid-template-columns: repeat(3, 1fr); 
    }

    /* Seleciona APENAS o último card (o 4º, do muro) */
    .project-frame:last-child { 
        /* Faz ele ocupar o espaço de 3 colunas */
        grid-column: span 3; 
        
        /* MUITO IMPORTANTE: Muda o formato para WIDE (horizontal) */
        /* Se não mudar isso, ele ficará um retângulo vertical gigante */
        aspect-ratio: 21 / 9; 
    }
}
/* --- SEÇÃO "BENEFÍCIOS" --- */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.benefit-card { background-color: #D7C8B9; padding: 30px; border-radius: 8px; text-align: left; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.benefit-card:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.benefit-icon { font-size: 2.5rem; color: var(--cor-primaria); margin-bottom: 20px; }
.benefit-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 15px; color: var(--cor-texto-escuro); }
.benefit-card p { font-size: 0.9rem; line-height: 1.6; color: #444; }

/* --- SEÇÃO "SOBRE SAIREVAM" --- */
.about-sairevam-section { background-color: var(--cor-primaria); color: var(--cor-texto-claro); padding: 100px 0; }
.about-sairevam-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center; }
.about-sairevam-text h2 { font-size: 2rem; font-weight: 700; margin-bottom: 20px; line-height: 1.3; color: var(--cor-texto-claro); }
.about-sairevam-text p { font-size: 1rem; line-height: 1.7; margin-bottom: 20px; color: #c9d1d9; }
.about-sairevam-logo { height: 50px; }
.sairevam-tagline { font-size: 1.5rem; font-weight: 600; color: #f0f0f0; margin-bottom: 30px; letter-spacing: 2px; }
.about-sairevam-media { display: flex; justify-content: center; align-items: center; min-height: 350px; }

/* --- SEÇÃO "SAIREVAM EM AÇÃO" - VERSÃO CINEMA --- */

#sairevam-acao {
    padding: 0;
    background-color: #000; /* Fundo preto puro para eliminar bordas */
    width: 100%;
    overflow: hidden;
}

.sairevam-acao-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    /* Aumentamos para 85% da altura da tela do usuário */
    height: 85vh; 
    min-height: 750px; /* Garante que não fique pequeno demais em telas menores */
}

.side-media-container {
    width: 50%; /* Cada vídeo ocupa exatamente metade da tela */
    height: 100%;
    overflow: hidden;
}

/* --- SEÇÃO "SAIREVAM EM AÇÃO" - ZERO CORTE --- */

#sairevam-acao {
    padding: 0;
    background-color: #000; /* Fundo preto garante que, se sobrar espaço, ele suma */
    width: 100%;
    overflow: hidden;
}

.sairevam-acao-wrapper {
    display: flex;
    position: relative;
    width: 100%;
    /* Deixamos a altura automática baseada na proporção do vídeo */
    height: auto; 
    /* 16/9 é o padrão. Se seu vídeo for mais largo, use 21/9 ou 32/9 para os dois juntos */
    aspect-ratio: 32 / 9; 
    max-height: 90vh; 
}

.side-media-container {
    width: 50%;
    height: 100%;
    background-color: #000;
}

.full-media {
    width: 100%;
    height: 100%;
    /* MUDANÇA CHAVE: O 'contain' garante que 100% do vídeo apareça sem zoom */
    object-fit: contain; 
    display: block;
}

/* Efeito de fusão suave no meio */
.side-media-container:first-child {
    mask-image: linear-gradient(to right, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, black 85%, transparent);
}

.side-media-container:last-child {
    mask-image: linear-gradient(to left, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to left, black 85%, transparent);
}

.sairevam-acao-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 700px;
    background: transparent;
}

.sairevam-acao-center .section-title {
    color: #ffffff !important;
    font-size: clamp(1.8rem, 5vw, 4rem);
    font-weight: 900;
    text-shadow: 0 4px 25px rgba(0,0,0,1); /* Sombra mais forte para legibilidade */
    margin-bottom: 25px;
}
/* --- RECUPERANDO O BOTÃO SAIREVAM EM AÇÃO --- */

.sairevam-acao-center .cta-button-green {
    display: inline-block;
    /* Cor oficial que você usa no projeto */
    background-color: #3d7b8a !important; 
    color: #ffffff !important;
    
    /* Espaçamento e forma */
    padding: 18px 55px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    font-size: 1.1rem;
    
    /* Sombra para destacar do vídeo */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    
    /* Transição suave */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    
    /* Garante que o botão seja clicável sobre o vídeo */
    position: relative;
    z-index: 20;
}

.sairevam-acao-center .cta-button-green:hover {
    background-color: #2a5a66 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(61, 123, 138, 0.5);
}

/* Ajuste rápido para o container central não bloquear o clique nos vídeos se necessário */
.sairevam-acao-center {
    pointer-events: none; /* O container em si não bloqueia */
}

.sairevam-acao-center .section-title,
.sairevam-acao-center .cta-button-green {
    pointer-events: auto; /* Mas o título e o botão aceitam interação */
}
/* Responsividade */
@media (max-width: 768px) {
    .sairevam-acao-wrapper {
        height: 500px;
    }
    .sairevam-acao-center .section-title {
        font-size: 2rem;
    }
}

/* --- RODAPÉ FINAL --- */
.site-footer { position: relative; overflow: hidden; background-color: var(--cor-primaria); color: #c9d1d9; }
.footer-background-video { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); min-width: 100%; min-height: 100%; width: auto; height: auto; z-index: 1; object-fit: cover; }
.site-footer .footer-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(13, 17, 23, 0.85); z-index: 2; }
.site-footer .footer-content, .site-footer .footer-bottom { position: relative; z-index: 3; }
.site-footer .footer-content { padding: 60px 0 0 0; }
.footer-top { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; text-align: center; padding-bottom: 40px; }
.footer-contact-item i { font-size: 2rem; color: var(--cor-destaque); }
.footer-contact-item span { font-size: 0.8rem; text-transform: uppercase; font-weight: 600; color: #8b949e; }
.footer-contact-item a, .footer-contact-item p { font-size: 1rem; color: #c9d1d9; text-decoration: none; font-weight: 600; margin: 0; }
.footer-social { text-align: center; padding: 40px 0; }
.social-icon { display: inline-block; width: 45px; height: 45px; border-radius: 50%; margin: 0 10px; color: var(--cor-primaria); line-height: 45px; text-align: center; font-size: 1.2rem; transition: transform 0.3s ease; background-color: #c9d1d9; }
.social-icon:hover { transform: translateY(-5px); background-color: white; }
.footer-bottom { padding: 20px 0; border-top: 1px solid #30363d; }
.footer-bottom-container { display: flex; justify-content: space-between; align-items: center; }
.update-info { color: #8b949e; font-size: 0.8rem; }
.back-to-top { color: #8b949e; font-size: 1.2rem; text-decoration: none; border: 2px solid #30363d; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; }
.back-to-top:hover { color: var(--cor-texto-claro); border-color: var(--cor-texto-claro); }

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) { 
    .about-sairevam-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-sairevam-text { text-align: center; }
    .about-sairevam-logo { margin: 0 auto 10px auto; }
}
@media (max-width: 768px) {
    .hero-layout-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-text-content { text-align: center; }
    .hero-image-placeholder { display: none; }
    .hero-text-content h1 { font-size: 2rem; }
    header nav ul { gap: 15px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom-container { flex-direction: column; gap: 20px; text-align: center; }
}

/* --- MODAL DE LOGIN -- */
.modal-overlay {
    display: none; 
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6); 
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    backdrop-filter: blur(3px); /* Efeito de desfoque no fundo */
}

.modal-box {
    background: #fdfdfd;
    width: 380px;
    border-radius: 8px; /* Bordas mais arredondadas */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.3s ease;
}

/* Cabeçalho do Modal */
.modal-header {
    background-color: var(--cor-destaque); /* Verde-azulado */
    color: white;
    text-align: center;
    padding: 20px;
}

.modal-header h2 { margin: 0; font-weight: 600; font-size: 24px; }

.modal-body { padding: 25px 30px 30px 30px; }
.logo-area { text-align: center; margin-bottom: 20px; }
.logo-img { max-width: 120px; }

.form-group { margin-bottom: 15px; }
.form-group label { display: block; color: #555; font-weight: 600; font-size: 14px; margin-bottom: 5px; }
.form-group input, .form-group select {
    width: 100%; padding: 12px; border: 1px solid #ddd;
    background-color: #f5f7f9; border-radius: 4px; font-size: 14px;
    color: #333; box-sizing: border-box;
}

.password-wrapper { position: relative; display: flex; }
.btn-eye { position: absolute; right: 1px; top: 1px; height: 95%; width: 40px; border: none; background: transparent; cursor: pointer; display: flex; align-items: center; justify-content: center; }

/* Botão Entrar do Modal */
.btn-entrar {
    width: 100%; padding: 12px;
    background-color: var(--cor-destaque); /* Mesmo verde-azulado */
    color: white; border: none; border-radius: 4px;
    font-size: 16px; font-weight: 700; cursor: pointer;
    margin-top: 10px; transition: background 0.2s;
}
.btn-entrar:hover { background-color: #2a5a66; }

.modal-footer-links { display: flex; justify-content: space-between; margin-top: 15px; font-size: 13px; }
.modal-footer-links a, .modal-footer-sair a { color: var(--cor-destaque); text-decoration: none; }
.modal-footer-sair { text-align: center; margin-top: 15px; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- ESTILOS DA PÁGINA DE POLÍTICA --- */
.policy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.policy-content h1, .policy-content h2, .policy-content h3 { font-weight: 700; color: var(--cor-texto-escuro); margin-bottom: 15px; margin-top: 25px; }
.policy-content h1 { font-size: 2rem; }
.policy-content h2 { font-size: 1.5rem; }
.policy-content h3 { font-size: 1.2rem; }
.policy-content p { font-size: 1rem; line-height: 1.7; color: #555; margin-bottom: 20px; }
.policy-content ul { list-style-type: none; padding-left: 15px; margin-bottom: 20px; }
.policy-content li { font-size: 1rem; line-height: 1.7; color: #555; position: relative; padding-left: 20px; margin-bottom: 10px; }
.policy-content li::before { content: '•'; position: absolute; left: 0; color: var(--cor-destaque); font-weight: 700; }
.policy-content li strong { color: var(--cor-texto-escuro); }
.policy-content a { color: var(--cor-destaque); font-weight: 600; text-decoration: none; }
.policy-content a:hover { text-decoration: underline; }

.back-button {
    display: inline-block;
    background-color: var(--cor-primaria);
    color: var(--cor-texto-claro);
    font-weight: 700;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 5px;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    font-size: 0.9rem;
}
.back-button:hover { background-color: #333; }
.back-button i { margin-right: 8px; }

/* --- PÁGINA DE PARCEIROS --- */
.section-header-parceiros {
    margin-bottom: 50px;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

.partner-card {
    background-color: #161b22;
    border: 1px solid #30363d;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.partner-card:hover {
    transform: translateY(-8px);
    border-color: var(--cor-destaque);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.partner-banner {
    position: relative;
    width: 100%;
    height: 160px;
    background-color: #000;
}

.partner-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.partner-status {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #4cd137;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid #4cd137;
}

.partner-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.partner-info h3 {
    color: var(--cor-texto-claro);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.partner-info p {
    color: #8b949e;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-chat-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--cor-destaque);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    border-top: 1px solid #30363d;
    padding-top: 15px;
    transition: color 0.3s;
}

.partner-card:hover .btn-chat-call {
    color: #ffffff;
}

#chat-container {
    display: none;
    flex-direction: column;
}

#chat-messages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 15px;
    scrollbar-width: thin;
    scrollbar-color: #30363d #0d1117;
}

.msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.msg-me {
    align-self: flex-end;
    background-color: #3d7b8a;
    color: white;
    border-bottom-right-radius: 2px;
}

.msg-partner {
    align-self: flex-start;
    background-color: #30363d;
    color: #c9d1d9;
    border-bottom-left-radius: 2px;
}

/* --- AJUSTE DE RESPONSIVIDADE DO CABEÇALHO --- */
@media (max-width: 768px) {
    header {
        padding: 10px 0;
    }

    header .container {
        flex-direction: column; /* Coloca a logo em cima e o menu embaixo */
        gap: 15px;
    }

    header nav ul {
        flex-wrap: wrap; /* Permite que os itens pulem para a linha de baixo se não couberem */
        justify-content: center;
        gap: 10px;
        padding: 0 10px;
    }

    header nav a {
        font-size: 12px; /* Diminui um pouco a fonte no celular */
        padding: 5px 2px;
    }

    .nav-contact-button, .nav-login-btn {
        padding: 6px 12px !important; /* Diminui o preenchimento dos botões */
        font-size: 11px !important;
    }

    .logo {
        font-size: 20px;
    }
    
    .logo img {
        height: 30px;
    }

    /* Ajuste da Hero para celular */
    .hero-layout-grid {
        grid-template-columns: 1fr; /* Transforma as 2 colunas da hero em 1 */
        text-align: center;
    }

    .hero-text-content {
        text-align: center;
    }

    .hero-text-content h1 {
        font-size: 2rem;
    }
}

/* Ajuste extra para telas muito pequenas (iPhone SE, etc) */
@media (max-width: 480px) {
    header nav ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Cria duas colunas de links */
        text-align: center;
    }
    
    .nav-contact-button, .nav-login-btn {
        grid-column: span 1;
        justify-content: center;
    }
}
