102 lines
1.8 KiB
SCSS
102 lines
1.8 KiB
SCSS
.app-footer {
|
|
background-color: #fff;
|
|
padding: 0 0 32px 0;
|
|
margin-top: auto; /* Garante que fique no fim se o conteúdo for curto */
|
|
position: relative;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
|
|
/* Linha fina com gradiente da marca no topo */
|
|
.footer-line {
|
|
width: 100%;
|
|
height: 1px;
|
|
background: linear-gradient(90deg,
|
|
rgba(255,255,255,0) 0%,
|
|
rgba(227, 61, 207, 0.3) 50%,
|
|
rgba(255,255,255,0) 100%
|
|
);
|
|
margin-bottom: 32px;
|
|
}
|
|
|
|
.footer-inner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
gap: 24px;
|
|
|
|
/* Responsividade: Empilha no mobile */
|
|
@media (max-width: 992px) {
|
|
flex-direction: column;
|
|
text-align: center;
|
|
gap: 32px;
|
|
}
|
|
}
|
|
|
|
/* Identidade */
|
|
.footer-brand {
|
|
.logo-text {
|
|
font-size: 18px;
|
|
font-weight: 700;
|
|
color: var(--text-main, #0F172A);
|
|
margin-bottom: 4px;
|
|
|
|
span { color: #000; } /* ou mantenha a cor base */
|
|
}
|
|
|
|
.footer-tagline {
|
|
font-size: 13px;
|
|
color: var(--text-muted, #64748B);
|
|
margin: 0;
|
|
}
|
|
}
|
|
|
|
/* Navegação Central */
|
|
.footer-nav {
|
|
display: flex;
|
|
gap: 24px;
|
|
|
|
@media (max-width: 576px) {
|
|
flex-direction: column;
|
|
gap: 12px;
|
|
}
|
|
|
|
a {
|
|
text-decoration: none;
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
color: var(--text-muted, #64748B);
|
|
transition: color 0.2s ease;
|
|
|
|
&:hover {
|
|
color: var(--brand-primary, #E33DCF);
|
|
}
|
|
|
|
/* Estilo para links que ainda não existem (Termos/Privacidade) */
|
|
&.disabled-link {
|
|
cursor: default;
|
|
opacity: 0.6;
|
|
&:hover { color: var(--text-muted, #64748B); }
|
|
}
|
|
}
|
|
}
|
|
|
|
/* Copyright */
|
|
.footer-copy {
|
|
text-align: right;
|
|
|
|
@media (max-width: 992px) {
|
|
text-align: center;
|
|
}
|
|
|
|
p {
|
|
font-size: 12px;
|
|
color: rgba(0, 0, 0, 0.45);
|
|
margin: 0;
|
|
line-height: 1.5;
|
|
|
|
strong {
|
|
color: var(--text-main, #0F172A);
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
} |