/* Sua fonte personalizada que já estava no arquivo */

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

.main {
    background-image: url("../../images/ARCO\ IRIS\ FUNDO\ DA\ PAGINA.png");
    background-size: cover;     
    background-position: center center;
    background-attachment: scroll;
    justify-content: flex-end;
}

.faixa {
    display: flex;
    justify-content: space-around; 
    align-items: center;
    padding: 40px;
    width: 100%;
    max-width: 1200px;
    margin: auto; 
}


.coluna-opcoes {
    width: 55%;
    display: flex;
    flex-direction: column; 
}

.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-shadoow);
    margin-bottom: 0px; 
}

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

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


.opcao-pizza {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;    
    border-bottom: 3px solid #6D4C25; 
}


.seletor-quantidade {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: #D32F2F solid 3px;    
    border-radius: 30px;
    padding: 8px;
    margin-right: 25px;
}

.seletor-quantidade button {
    background-color: #D32F2F; 
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    line-height: 35px; 
}

.seletor-quantidade button:focus {
    transform: scale(1.05); 
    transition: transform 0.3s ease; 
}
.seletor-quantidade input {
    width: 45px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 20px;
    font-weight: bold;
    color: #000;
}


.info-pizza h3 {
    font-family: 'AhsingRegular', sans-serif; 
    font-size: 2rem;
    font-weight: bold;
    font-style:italic;
    color: var(--texto-cor);
    text-shadow: var(--text-shadoow);
    margin: 0 0 5px 0;
    letter-spacing: 5px;
}

.info-pizza p {
    color: var(--texto-cor);
    text-shadow: var(--text-shadoow);
    margin: 0;
    font-size: 1rem;
}

.container-botao {
    text-align:right;
    margin-top: 20px;
    display: inline-block; 
}

.btn-avancar {
   
  background-color: #F37021;
  color: black;
  font-size: 25px;
  font-family: Arial Black, Impact, sans-serif;
  font-style: italic;
  font-weight: bold;
  padding: 12px 25px;  
  border-radius: 25px;
  border: 3px solid black;     
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-avancar:hover {
      background-color:#d45e14;
      transform: scale(1.1);
}

.coluna-imagem {
    width: 40%;
}

.coluna-imagem img {
    width: 100%;
    max-width: 500px;
    height: auto;
    transition: transform 0.3s ease;
}

.coluna-imagem img:hover {
    transform: scale(1.05);
}
