:root {
    --vp-green: #2fa136;
    --vp-purple: #6a1b9a;
    --vp-orange: #f57c00;
    --vp-bg-light: #f4f4f0;
    /* Fundo texturizado/claro do layout */
    --vp-text-dark: #1a1a1a;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--vp-bg-light);
    color: var(--vp-text-dark);
    overflow-x: hidden;
}

/* Estilização básica para simular as fontes artísticas do layout */
.font-artistica {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.text-purple {
    color: var(--vp-purple);
}

.text-green {
    color: var(--vp-green);
}

.text-orange {
    color: var(--vp-orange);
}


.logo {
    height: 120px;
}

.pattern_v_l {
    position: absolute;
    rotate: 90deg;
    max-width: 600px;
    top: 220px;
    left: -290px;
}

.pattern_v_r {
    position: absolute;
    rotate: 90deg;
    max-width: 700px;
    top: -370px;
    right: -350px;
}

.pattern_h_l {
    position: absolute;
    bottom: 80px;
    width: 100%;
    max-width: 600px;
    object-fit: contain;
}

.pattern_h_r {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-width: 600px;
    object-fit: contain;
    right: 30px;
}

.pattern_canto_roxo {
    position: absolute;
    bottom: 0;
    max-width: 100%;
}

/* Navbar */
.navbar-nav .nav-link {
    color: #d32f2f;
    font-weight: bold;
    font-size: 0.9rem;
}

/* Hero / Banner Principal */
.hero-section {
    color: white;
    position: relative;
}

.bg-hero {
    height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bg-sobre-video {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Bordas com padrões/grafismos (Substituir por imagens de background repetidas) */
.pattern-border {
    height: 25px;
    background-color: var(--vp-purple);
    /* Placeholder para a faixa decorativa */
}

/* Seção Homenagem */

.bg-homenagem {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 700px;
    padding-top: 350px;
}

.img-homenageada {
    border-radius: 50% 50% 0 0;
    /* Simula o corte arredondado do topo se necessário */
    max-width: 100%;
    height: auto;
}

/* Footer */
footer {
    background-color: #ffffff;
    font-size: 0.85rem;
}