
@font-face {
    font-family: 'AhsingRegular';
    src: 
      
        url('/assets/fonts/AhsingRegular.woff2') format('woff2'),
        
       
        url('/assets/fonts/AhsingRegular.woff') format('woff'),
        
       
        url('/assets/fonts/AhsingRegular.otf') format('opentype');
}
.container-titulo {
    display: flex;
    align-items: center;
    gap: 15px; 
    margin-bottom: 25px;
}

.titulo-escolha {
    font-family: 'AhsingRegular', Impact, sans-serif;
    color: var(--texto-cor);
    text-shadow: var(--text-shadoow);
    font-size: 50px;
    margin-bottom: 0px; 
}

.estrela {
    width: 50px;
    height: auto;
    transition: transform 0.3s ease;
}

.estrela:hover {
   transform: scale(1.15);
}

.cards-container {
    display: flex; 
    justify-content: center; 
    gap: 80px; 
    padding: 20px;    
   
    margin-bottom: 30px;
}
.cards-container :hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.card {
    position: relative; 
    width: 400px; 
    border: 3px solid white; 
}

.card img {
    width: 100%; 
    display: block; 
}

.btn-finalizar {
   
    position: absolute;   
    bottom: 20px;         
    left: 50%;            
    transform: translateX(-50%);    
    background-color: #ff8c00; 
    color: black;
    font-size: 25px;
    font-family: Arial Black, Impact, sans-serif;
    font-style: italic;
    font-weight: bold;  
    padding: 10px 40px;
    border: 3px solid black;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap; 
}
.btn-finalizar:hover {
    background-color: #e67600; 
    transform: translateX(-50%) scale(1.05);     
}

.faixa{
    background-image: url("../../images/ARCO\ IRIS\ FUNDO\ DA\ PAGINA.png");
    background-size: cover;     
    background-position-y: -200px;
    background-color: var(--cor-fundo);     
      
    width: 100%; 
}
.faixa {
    display: flex;
    justify-content: center;     
    align-items: center;        
    gap: 50px;                   
    padding: 50px 30px;    
}