/* --- ESTILOS GERAIS E FONTES --- */
*, *::before, *::after { box-sizing: border-box; }

body {
    background-color: #f9f9f9; 
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}
.font-montserrat { font-family: 'Montserrat', sans-serif; }

/* --- ESTRUTURA PRINCIPAL --- */
.container-principal {
    width: 100%;
    min-height: 100vh;
    background-color: #f9f9f9;
}

/* --- CABEÇALHO E MENU (Estilos reutilizados) --- */
.cabecalho {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 93px;
    padding: 0 1rem;
    background-color: white;
    border-bottom: 1px solid #EDEDED;
    z-index: 30;
}

.logo { height: 60px;
    width: auto;
    margin-top: 8px;; 
}

.botao-menu-hamburguer {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.375rem; /* 6px */
    margin-right: 10px;
    transition: background-color 0.2s;
    background-color: white;
    cursor: pointer;
}

.botao-menu-hamburguer:hover { 
    background-color: #f3f4f6; 
}

.icone-menu { 
    width: 1.5rem; height: 1.5rem; color: #2A487A; 
}

.menu-fundo-overlay {
    position: fixed; 
    inset: 0; 
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 40; 
    transition: opacity 0.3s ease-in-out;
}

.menu-fundo-overlay.hidden { 
    display: none; 
}

.menu-lateral {
    position: fixed; 
    top: 0; right: 0; 
    width: 265px; 
    height: auto;
    background-color: white; 
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
    z-index: 50; 
    transform: translateX(100%); 
    transition: transform 0.3s ease-in-out;
    border-bottom-left-radius: 12px; 
    border-bottom-right-radius: 12px;
}
.menu-lateral.menu-aberto { 
    transform: translateX(0); 
}
.menu-conteudo { 
    display: flex; flex-direction: column; 

}
.menu-cabecalho-interno {
    display: flex; 
    justify-content: flex-end; 
    align-items: center;
    padding: 0.2rem 0.5rem 0 0.5rem; 
    border-bottom: 1px solid #EDEDED;
}
.botao-fechar-menu { 
    padding: 0.5rem; 
    background: none; 
    border: none; 
    cursor: pointer; 
}

.icone-fechar { 
    width: 1.75rem; 
    height: 1.75rem; 
    color: #C2C2C2; 
    transition: color 0.2s; 
}

.icone-fechar:hover { 
    color: #606060; 
}

.menu-opcoes { 
    width: 100%; 
    padding: 0 0 1rem 0; 
}

.menu-item-borda { 
    border-bottom: 1px solid #EDEDED; 
}

.accordion-toggle, .menu-link-direto {
    width: 100%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    text-align: left;
    color: #2A487A; 
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600;
    font-size: 0.75rem; 
    text-transform: uppercase; 
    padding: 0.8rem 1.5rem;
    transition: background-color 0.2s; 
    background: none; 
    border: none; 
    cursor: pointer;
    text-decoration: none;
}
.accordion-toggle:hover, .menu-link-direto:hover { 
    background-color: #f9fafb; 
}

.arrow { 
    width: 1rem; 
    height: 1rem; 
    color: #C2C2C2; 
    transition: 
    transform 0.3s; 
}

.arrow.rotate-90 { 
    transform: rotate(90deg); 
}

.submenu-item {
    display: block; 
    text-align: left; 
    color: #496BA5; 
    background-color: #f8f9fa;
    font-family: 'Montserrat', sans-serif; 
    font-weight: 600; 
    font-size: 10px;
    padding: 0.75rem 2rem; 
    border-top: 1px solid #EDEDED; 
    transition: background-color 0.2s;
    text-decoration: none;
}
.submenu-item:hover { background-color: #e5e7eb; }

/* --- ESTILOS PARA CONTEÚDO RETRÁTIL (USADO NO MENU E NA GALERIA) --- */
.collapsible-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

/* --- ESTILOS DA NOVA PÁGINA --- */
.cartao-destaque {
    width: 100%;
    height: 348px;
    position: relative; /* ESSENCIAL: para posicionar o texto dentro dele */

    /* Substitua pela URL da imagem que você criou no Passo 1 */
    background-image: url(../assets/BackgroundComercial.jpg) ;
    background-size: cover;
    background-position: center;
}

/* 2. O TEXTO AGORA "FLUTUA" SOBRE O FUNDO */
.cartao-destaque-texto {
    position: absolute;
    top: 30px; /* Distância do topo do card */
    left: 0;
    width: 100%;
    padding: 0 2rem; /* Mantém o espaçamento lateral */
    text-align: left;
}

/* 3. O SUBTÍTULO, COM MARGEM ZERADA */
.subtitulo-destaque {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: white;
    font-size: 12px; /* 14px */
    margin: 0;
}

/* 4. O TÍTULO, COM UMA PEQUENA MARGEM PARA SEPARAR DO SUBTÍTULO */
.titulo-destaque {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #FFDD00;
    font-size: 28px;
    line-height: 35px;
    margin: 0;
    margin-top: 0.25rem; /* Espaço de 4px entre os títulos */
}

.imagem-destaque {
    width: 348px;
    height: 178px;
    border-radius: 10px;
    margin: 0 auto;
    display: block;
}

.conteudo-pagina { padding: 1.5rem; 
}

.titulo-pagina {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    color: #FFDD00;
    font-size: 24px;
    margin-top: 0px;
}
.texto-pagina {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem; /* 12px */
    color: #979797;
    margin-top: 0.5rem;
}

.secao-repertorio { 
    margin-top: 2rem; 
}

.galeria-repertorio { 
    margin-top: 1rem; 
}

.galeria-item {
    text-align: center; 
}

.galeria-item img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.galeria-item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #979797;
    margin-top: 0.5rem;
}

.galeria-grid-oculto {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.container-ver-mais {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 1.5rem;
}
.linha-divisoria {
    flex-grow: 1;
    height: 1px;
    background-color: #C2C2C2;
}
.botao-ver-mais {
    flex-shrink: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #979797;
    text-transform: uppercase;
    margin: 0 1rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.botao-ver-mais:hover { 
    color: black; 
}

.container-botao-final {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}
.botao-orcamento {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 48px;
    padding: 0 0.75rem;
    background-color: #00FF77;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0, 255, 119, 0.4);
    transition: background-color 0.2s;
    text-decoration: none;
}
.botao-orcamento:hover { background-color: #00e66b; }
.icone-balao {
    width: 30px;
    height: auto;
    margin-right: 0.5rem;
}
.texto-botao-orcamento {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 0.875rem;
    color: white;
    letter-spacing: 0.05em;
}

.rodape {
    width: 100%;
    background-color: #2A487A;
    padding: 1rem;
    text-align: center;
}
.rodape p {
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 0.75rem;
}
