@font-face {
    font-family:'AhsingRegular';
    src: url(../../fonts/AhsingRegular.otf) format('opentype'); 
    font-weight: normal;
    font-style: normal;
}


.main-fundo{
    background-image: url("../../images/ARCO\ IRIS\ FUNDO\ DA\ PAGINA.png");
    background-size: cover;     
    background-position: center;
    background-color: var(--cor-fundo); 
}
.container-titulo {
    display: flex;
    align-items: center;
    gap: 15px; 
    margin-bottom: 25px;
}

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

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

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

.container-main {
    display: flex;
    flex-wrap: wrap; 
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    margin-top: 30px;
    padding: 0 20px; 
}

.seletores {    
    background-color: rgb(193, 24, 24);
    padding: 40px 20px 100px 20px; 
    border: rgb(207, 6, 6) solid 3px;    
    
    
    display: flex;
    flex-direction: column;
    align-items: center; 
    text-align: center; 
    width: 350px; 
    box-sizing: border-box; 
    position: relative; 
}

.seletores h2 {
    font-family: 'AhsingRegular', Impact, sans-serif;
    color: black;
    font-size: 50px;
    margin-bottom: 20px; 
    text-stroke: 1.5px white;
}

.seletores h4 {
    font-family: 'AhsingRegular', Impact, sans-serif;
    color: white;
    font-size: 30px;
    margin-bottom: 20px;  
   
    -webkit-text-stroke: 1.5px black; 
    text-stroke: 1.5px black;
}

.seletores p {
    font-family: 'Montserrat-Italic', Arial, sans-serif;
    color: white;
    font-size: 20px;
    margin-bottom: 20px;  
}

.btn-finalizar {        
    
    position: absolute; 
    bottom: 30px; 
    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;
    font-size: 1.2em;
    padding: 10px 40px;
    border: 3px solid black;
    border-radius: 25px;
    cursor: pointer;
    text-transform: uppercase;
    white-space: nowrap; 
    transition: all 0.2s ease-in-out; 
}

.btn-finalizar:hover {
    background-color: #e67600; 
    transform: translateX(-50%) scale(1.05); 
}

