/* Estilos e utilitários complementares extraídos do index.html */
::selection {
    background-color: #0033FF;
    color: #FFFFFF;
}

body {
    background-color: #FFFFFF;
    color: #0A0A0A;
    overflow-x: hidden;
}

/* Linhas estruturais para dar o tom arquitetônico */
.structural-border {
    border: 2px solid #0A0A0A;
}

.structural-border-b {
    border-bottom: 2px solid #0A0A0A;
}

/* Classe para o JS animar os elementos no scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Efeito de hover nos botões que preenche de preto */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.btn-hover-effect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #0A0A0A;
    transition: all 0.3s ease;
    z-index: -1;
}
.btn-hover-effect:hover::after {
    height: 100%;
}

/* Imagem com recorte angulado remetendo a tendas */
.clip-tent {
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
