/* ALERTAS */
.container_alertas {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}

.data_alerta {
    align-items: end;
    justify-content: end;
    display: flex;
    margin-top: 0.5rem;
}

.card_alerta {
    background: #ffffff;
    color: #000000;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.card_alerta>span {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
}

/* ALERTAS */

/* PERFIL */
.perfil_header {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    background: #ffffff;
    border-radius: 10px;
    padding: 0.8rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.div_foto_perfil {
    position: relative;
}

.div_espaco_perfil {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_foto_perfil img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid #000000;
    position: relative;
}

.icone_camera {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #ffffff;
    color: #1b1f2a;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.foto_input {
    display: none;
}

.dados_usuario h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
}

.dados_usuario span {
    font-size: 0.9rem;
    color: #aaa;
}

.secao_perfil {
    background: #ffffff;
    border-radius: 10px;
    padding: 1rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.secao_perfil h3 {
    margin-bottom: 0.7rem;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
}

.div_inputs_perfil {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.div_dois_perfil_vertical {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 140px;
}

.div_dois_perfil_vertical span {
    font-size: 14px;
}

.div_dois_perfil_vertical input {
    width: 100%;
    padding: 8px 8px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
}

.div_dois_perfil_vertical input:focus {
    outline: 1px solid #00000070;
}

.acoes_perfil {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn_padrao {
    border: none;
    border-radius: 8px;
    font-size: 14px;
    padding: 0.7rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn_salvar {
    background: #0081FF;
    color: #ffffff;
}

.btn_logout {
    background: #212224;
    color: #ffffff;
}

.btn_excluir {
    background: #ff0000;
    color: #ffffff;
}

.linha_dupla {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.linha_dupla .div_dois_perfil_vertical {
    flex: 1;
}

.modal {
    display: none;
    position: fixed;
    z-index: 20;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal.hide {
    opacity: 0;
}

.modal-content {
    background-color: #3F444A;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 1.8rem 1.4rem;
    text-align: center;
    color: white;
    width: 90%;
    max-width: 330px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    animation: fadeInScale 0.3s ease forwards;
    transform: scale(0.9);
    box-sizing: border-box;
}

.modal-content h2 {
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #EAEAEA;
}

.icon-sucesso,
.icon-erro {
    font-size: 52px;
    margin-bottom: 1rem;
}

.icon-sucesso {
    color: #ddb40e;
}

.icon-erro {
    color: #ff4f4f;
}



.btn_modal {
    margin-top: 1rem;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 500;
    padding: 0.7rem 1.5rem;
    cursor: pointer;
    width: 100%;
    transition: 0.2s ease;
}

.btn_modal_erro {
    background-color: #E53935;
}

.btn_modal_sucesso {
    background: #0081FF;
    color: #ffffff;
}

.info_perfil {
    background: #f5f5f5;
    padding: 10px;
    border-radius: 6px;
    font-size: 14px;
    color: #555;
}

.card_termos {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 10px;
    padding: 14px;
    cursor: pointer;
    transition: 0.2s;
}

.modal-content-termos {
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 1rem;
    text-align: center;
    color: rgb(0, 0, 0);
    width: 90%;
    max-width: 400px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
    animation: fadeInScale 0.3s ease forwards;
    transform: scale(0.9);
    box-sizing: border-box;
    max-height: 80vh;
    overflow-y: auto;
    scrollbar-width: none;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card_termos_icon {
    font-size: 22px;
    color: #0081FF;
}

.card_termos_texto {
    flex: 1;
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.card_termos_texto span {
    font-size: 12px;
    color: #777;
}

.card_termos_seta {
    color: #999;
}

.select_perfil {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.65rem 1rem;
    padding-right: 2.5rem;
    background-image: url(../img/flecha_select.png);
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    outline: none;
    flex: 1;
    width: 100%;
    padding: 8px 8px;
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-radius: 8px;
    font-size: 0.9rem;
    background-color: white;
    box-sizing: border-box;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.87);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* PERFIL */


/* INDEX*/
.container_eventos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card_eventos {
    display: flex;
    flex-direction: column;
}

.img_card {
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.select_flecha_sem_borda {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.65rem 1rem;
    padding-right: 2.5rem;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background-image: url(../img/flecha_select.png);
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    outline: none;
    flex: 1;
}

.select_flecha_sem_sombra {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding: 0.65rem 1rem;
    padding-right: 2.5rem;
    border-radius: 10px;
    font-size: 14px;
    background-color: #fff;
    color: #333;
    cursor: pointer;
    background-image: url(../img/flecha_select.png);
    border: 1px solid rgba(0, 0, 0, 0.20);
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 12px;
    outline: none;
    flex: 1;
}

.div_search_sem_borda {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    color: #333;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    outline: none;
}

.div_search_sem_borda i {
    width: 16px;
    height: 16px;
    color: #6b7280;
}

.div_search_sem_borda input {
    border: none;
    outline: none;
    font-size: 14px;
    width: 100%;
}

.conteudo_card_evento {
    background-color: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border: 1px solid rgba(0, 0, 0, 0.20);
    border-top: none;
}

.div_data_local_evento {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.titulo_evento_card {
    color: #0081FF;
    font-size: 18px;
    font-weight: 500;
}

.btn_detalhes {
    background: #0081FF;
    border-radius: 8px;
    width: 100%;
    padding: 0.5rem;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    font-weight: 500;
    cursor: pointer;
}

.data_evento {
    color: #EF9440;
    font-size: 14px;
    font-weight: 500;
}

.cidade_evento {
    color: white;
    background-color: #797979;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 12px;
}

.descricao_evento {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 14px;
}

.div_img_eventos {
    position: relative;
    display: flex;
}

.icone_favoritar {
    position: absolute;
    font-size: 18px;
    color: white;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.icone_favoritado {
    position: absolute;
    font-size: 18px;
    color: red;
    top: 12px;
    right: 12px;
    cursor: pointer;
}

.ordenar_data {
    font-size: 14px;
    font-weight: 400;
    text-align: end;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: end;
}

.ordenar_data i {
    color: black;
}

.vagas_evento {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: #000000;
    background-color: #ffffff;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 12px;
}

.btn_ordenar {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filtros_principais {
    display: flex;
    gap: 10px;
}

.filtros_principais select {
    flex: 1;
}

.modal_filtros {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.conteudo_filtros {
    background: white;
    width: 90%;
    max-width: 400px;
    box-sizing: border-box;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.conteudo_filtros h3 {
    font-weight: 600;
    font-size: 16px;
}

.btn_aplicar_filtro {
    background: #0081FF;
    border-radius: 6px;
    width: 100%;
    padding: 0.5rem;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    font-weight: 500;
    cursor: pointer;
}

.btn_filtro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    flex: 1;
    cursor: pointer;
    color: #333;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    outline: none;
    justify-content: center;
}

.input_data_filtro {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    padding: 0.65rem 0.8rem;
    border-radius: 12px;
    flex: 1;
    color: #333;
    outline: none;
    border: 1px solid rgba(0, 0, 0, 0.20);
    justify-content: center;
    min-width: fit-content;
    width: 100%;
    box-sizing: border-box;
}

.div_input_data_filtro {
    width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.div_input_data_filtro span {
    font-size: 14px;
}

.btn_fechar_filtro {
    background: #3F444A;
    border-radius: 6px;
    width: 100%;
    padding: 0.5rem;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    font-weight: 500;
    cursor: pointer;
}

.div_categorias {
    display: flex;
    gap: 0.5rem;
}

.categoria_preco {
    color: white;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 12px;
}

.categoria_preco.pago {
    background-color: #EF9440;
}

.categoria_preco.gratis {
    background-color: #16a34a;
}

/* INDEX*/


/* EVENTOS DETALHES */
.div_img_detalhes_evento {
    display: flex;
    flex-direction: column;
}

.div_img_detalhes_evento img {
    min-width: 100%;
    height: auto;
    scroll-snap-align: start;
    object-fit: cover;
    border-radius: 0px;
    aspect-ratio: 2 / 1;
}

.titulo_evento_detalhes {
    padding: 0.6rem 0.4rem;
    background-color: white;
    color: #0081FF;
    font-weight: 500;
    font-size: 16px;
}

.subtitulos_detalhes_eventos {
    font-weight: 500;
    font-size: 16px;
}

.texto_vagas_preenchidas {
    font-size: 0.75rem;
    color: #666;
    text-align: right;
}

.progresso_vagas {
    height: 8px;
    background: #E0E0E0;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 0.3rem;
    margin-bottom: 0.3rem;
}

.quantidade_preenchida_vagas {
    height: 100%;
    background: #0081FF;
    border-radius: 4px;
    width: 50%;
}

.titulo_vagas {
    display: flex;
}

.div_vagas_evento {
    display: flex;
    justify-content: space-between;
}

.contato_evento i {
    color: #5D5D5D;
}

.info_data div {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.lote_item.lotado {
    text-decoration: line-through;
    color: grey;
}

.lote_item.lotado .valor_lote {
    color: grey;
}

.lote_item.lotado .vagas_lote {
    color: grey;
}

.card_evento {
    background: white;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 14px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.card_evento h3 {
    font-weight: 500;
    font-size: 14px;
}

.item_info_evento {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.galeria_evento {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 0.4rem;
}

.galeria_evento img {
    height: 180px;
    border-radius: 8px;
}

.lista_evento {
    padding-left: 18px;
    list-style: disc;
}

.status_evento {
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.status_evento.disponivel {
    background: #2ecc71;
}

.status_evento.esgotado {
    background: #e74c3c;
}

.status_evento.cancelado {
    background: #f39c12;
}

.status_evento.encerrado {
    background: #6b7280;
}

.btn_mapa {
    display: inline-block;
    background: #0081FF;
    color: white;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
}

.info_banner_evento {
    display: flex;
    flex-direction: column;
}

.data_evento_card {
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

.info_data {
    display: flex;
    align-items: center;
    gap: 10px;
}

.titulo_info {
    font-size: 12px;
    color: #777;
    display: block;
}

.valor_info {
    font-size: 14px;
    font-weight: 500;
}

.lote_item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.lote_info {
    display: flex;
    flex-direction: column;
}

.periodo_lote {
    font-size: 12px;
    color: #777;
}

.vagas_lote {
    font-size: 12px;
    color: #e67e22;
}

.valor_lote {
    font-weight: 500;
    font-size: 16px;
    color: #0081FF;
}

.btn_voltar_evento {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 16px;
    background: linear-gradient(#007CFA, #013378);
    color: white;
    border-radius: 6px;
    cursor: pointer;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn_compartilhar {
    font-size: 16px;
    background: white;
    color: #013378;
    border-radius: 6px;
    cursor: pointer;
    height: 28px;
    width: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 12px;
    right: 12px;
}

.metodos_pagamento {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 6px;
}

.metodo_pagamento {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    color: #444;
}

.area_compra_evento {
    background: white;
    padding: 16px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    font-size: 14px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.preco_evento {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.label_preco {
    font-size: 12px;
    color: #777;
}

.valor_preco {
    font-size: 22px;
    font-weight: 600;
    color: #0081FF;
}

.metodos_pagamento {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.metodo_pagamento {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
}

.metodo_pagamento input {
    display: none;
}

.metodo_pagamento:has(input:checked) {
    background: #0081FF;
    color: white;
}

.metodo_pagamento:has(input:checked) i {
    color: white;
}

.btn_participar {
    margin-top: 6px;
}

.metodo_pagamento i {
    color: #0081FF;
}

.campos_cartao {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.input_cartao {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.linha_cartao {
    display: flex;
    gap: 8px;
}

.linha_cartao input {
    flex: 1;
    width: 100%;
}

/* EVENTOS DETALHES */


/* COMPRAS */
.titulo_compras {
    color: #333;
    font-weight: 400;
    padding: 0.6rem;
    border-radius: 10px;
    font-size: 16px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.nav_compras {
    color: #333;
    font-weight: 400;
    padding: 0.6rem;
    border-radius: 10px;
    flex: 1;
    font-size: 14px;
    text-align: center;
    background-color: #ffffff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    cursor: pointer;
}

.nav_compras.selecionado {
    background-color: #0081FF;
    color: white;
}

.card_eventos {
    position: relative;
}

.card_eventos.encerrado {
    opacity: 0.8;
}

.card_eventos.encerrado::after {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.btn_detalhes_pedido {
    background: #0081FF;
    border-radius: 8px;
    width: 100%;
    padding: 0.5rem;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    font-weight: 500;
    cursor: pointer;
    box-sizing: border-box;
}

.modal_ingresso {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.conteudo_modal_ingresso {
    width: 90%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
    gap: 14px;
}

.header_modal_ingresso {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.fechar_modal_ingresso {
    cursor: pointer;
}

.info_evento_modal {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.titulo_modal_evento {
    font-size: 14px;
    font-weight: 600;
}

.linha_modal {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #555;
}

.qr_ingresso {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.qr_ingresso img {
    width: 150px;
}

.texto_qr {
    font-size: 12px;
    color: #777;
}

.dados_pagamento_modal {
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.linha_pagamento {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 4px;
}

.status_pago {
    color: #2ecc71;
    font-weight: 600;
}

.btn_comprovante {
    background: #0081FF;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 6px;
    cursor: pointer;
}

.btn_cancelar_evento {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.dados_pagamento_modal h3 {
    font-size: 14px;
    font-weight: 600;
}

.evento_em_breve {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: #2ecc71;
}

.evento_finalizado {
    position: absolute;
    bottom: 12px;
    right: 12px;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    background: #e74c3c;
}

.card_pedido {
    background: white;
    padding: 16px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 8px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    box-sizing: border-box;
}

.header_pedido {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
}

.status_pedido {
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 6px;
    color: white;
}

.status_pedido.realizado {
    background: #9b59b6;
}

.status_pedido.aprovado {
    background: #27ae60;
}

.status_pedido.enviado {
    background: #3498db;
}

.status_pedido.entregue {
    background: #2ecc71;
}

.status_pedido.cancelado {
    background: #e74c3c;
}

.produto_pedido {
    display: flex;
    gap: 10px;
    align-items: center;
}

.produto_pedido img {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    object-fit: cover;
}

.info_produto_pedido {
    display: flex;
    flex-direction: column;
    font-size: 14px;
}

.data_compra {
    font-size: 12px;
    color: #777;
}

.timeline_pedido {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 8px;
}

.etapa {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #777;
}

.bolinha {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
}

.etapa.concluido .bolinha {
    background: #2ecc71;
}

.etapa.ativo .bolinha {
    background: #0081FF;
}

.lista_produtos_pedido {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-top: 1px solid #eee;
    padding-top: 10px;
}

.item_produto_pedido {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.nome_item {
    flex: 1;
}

.quantidade_item {
    color: #777;
    margin-right: 10px;
}

.valor_item {
    font-weight: 600;
    color: #0081FF;
}

.modal_pedido {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.conteudo_modal_pedido {
    width: 90%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 90vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.header_modal_pedido {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
}

.fechar_modal_pedido {
    cursor: pointer;
}

.secao_modal {
    border-top: 1px solid #eee;
    padding-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.secao_modal h3 {
    font-size: 14px;
    font-weight: 600;
}

.lista_produtos_pedido_detalhes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.container_produtos {
    flex-direction: column;
    gap: 1rem;
}

.btn_avaliar {
    background: #f39c12;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

.modal_avaliacao {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.conteudo_modal_avaliacao {
    width: 90%;
    max-width: 420px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-sizing: border-box;
}

.estrelas {
    display: flex;
    gap: 8px;
    font-size: 26px;
    color: #ccc;
}

.estrelas i {
    cursor: pointer;
}

.estrelas i.ativo {
    color: #f39c12;
}

.textarea_avaliacao {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
    resize: none;
    height: 90px;
    font-family: inherit;
}

.btn_enviar_avaliacao {
    background: #0081FF;
    border: none;
    color: white;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
}

.fechar_modal_avaliacao {
    cursor: pointer;
}

/* COMPRAS */

/* DÚVIDAS */
.faq_container {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq_item {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.faq_pergunta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
    gap: 1rems;
}

.faq_pergunta i {
    transition: 0.3s;
}

.faq_item.ativo .faq_pergunta i {
    transform: rotate(180deg);
}

.faq_resposta {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 14px;
    font-size: 14px;
    color: #555;
}

.faq_item.ativo .faq_resposta {
    padding: 0 14px 14px 14px;
    max-height: 200px;
}

.suporte_whatsapp {
    display: flex;
    justify-content: center;
}

.btn_whatsapp {
    background: #25D366;
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    text-decoration: none;
}

.btn_whatsapp i {
    font-size: 16px;
}

/* DÚVIDAS */

/* LOJA */
.categorias_topo {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    margin-top: -0.5rem;
    margin-bottom: -0.5rem;
}

.categoria_card {
    min-width: 140px;
    background: #ffffff;
    border-radius: 16px;
    padding: 12px;
    text-align: center;
    color: #1e1f1c;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.25s ease;
    box-sizing: border-box;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.categoria_card.selecionado {
    color: white;
    background-color: #0081FF;
}

.card_produto_grade {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
    padding: 1rem;
}

.produto_imagem_container img {
    width: 100%;
}

.produto_imagem_container {
    position: relative;
    height: 160px;
    overflow: hidden;
    padding: 1rem;
}

.preco_atual {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    display: block;
}

.parcela_produto {
    color: grey;
    font-weight: 500;
    font-size: 14px;
}

.produto_preco.desconto {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.preco_antigo {
    text-decoration: line-through;
    color: grey;
    font-weight: 500;
}

.btn_adicionar_carrinho {
    background: linear-gradient(#007CFA, #013378);
    color: white;
    border: none;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    width: 100%;
    margin-top: 0.5rem;
}

.produto_descricao {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto_nome {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e1f1c;
    line-height: 1.3;
}

.div_carrinho {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    background: linear-gradient(#007CFA, #013378);
    position: fixed;
    bottom: calc(85px);
    right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 10;
}

.quantidade_carrinho {
    background-color: red;
    border-radius: 50%;
    position: absolute;
    height: 20px;
    width: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    right: -4px;
}

.container_produtos {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 1.5rem;
}

.produto_categoria {
    color: white;
    background-color: #AAB8C1;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 14px;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.produto_info {
    padding: 1rem;
    flex-grow: 1;
}

.produto_imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.container_produtos_grade {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.card_produto {
    min-width: 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.card_produto_grade {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

/* LOJA */


/* LOJA DETALHES */
.container_produtos_relacionados {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scrollbar-width: none;
    margin-bottom: 1.5rem;
}

.card_produto {
    min-width: 280px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto_imagem_container {
    position: relative;
    height: 160px;
    overflow: hidden;
    padding: 1rem;
}

.produto_imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produto_info {
    padding: 1rem;
    flex-grow: 1;
}

.produto_categoria {
    color: white;
    background-color: #AAB8C1;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 14px;
    width: fit-content;
    margin-bottom: 0.5rem;
}

.produto_nome {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e1f1c;
    line-height: 1.3;
}

.produto_descricao {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.produto_preco.desconto {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.preco_antigo {
    text-decoration: line-through;
    color: grey;
    font-weight: 500;
}

.preco_atual {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    display: block;
}

.btn_adicionar_carrinho {
    background: linear-gradient(#007CFA, #013378);
    color: white;
    border: none;
    padding: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 14px;
    width: 100%;
    margin-top: 0.5rem;
}

.galeria_produto {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.imagem_principal_container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagem_principal {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    padding: 2rem;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.miniaturas_container {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scrollbar-width: none;
}

.miniatura_item {
    min-width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.miniatura_item.ativo {
    border-color: #0081FF;
}

.miniatura_imagem {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 0.5rem;
    box-sizing: border-box;
}

.informacoes_produto {
    border-radius: 16px;
    background-color: #ffffff;
    padding: 1rem;
    box-sizing: border-box;
    border: 1px solid rgba(0, 0, 0, 0.20);
}

.produto_titulo {
    font-size: 24px;
    font-weight: 700;
    color: #1e1f1c;
    line-height: 1.3;
    margin-bottom: 0.75rem;
}

.produto_preco_detalhe {
    margin: 1rem 0;
}

.preco_antigo {
    text-decoration: line-through;
    color: grey;
    font-weight: 500;
}

.seletor_cores {
    margin: 1rem 0;
}

.seletor_titulo {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 4px;
    color: #1e1f1c;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cores_container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.controles_compra {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.quantidade_container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantidade_controles {
    display: flex;
    align-items: center;
    background-color: white;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0.5rem 1rem;
}

.quantidade_btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #f5f5f5;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
    border: 1px solid #ddd;
}

.quantidade_valor {
    font-size: 18px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.btn_comprar {
    background: linear-gradient(#007CFA, #013378);
    color: white;
    border: none;
    padding: 12px;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-radius: 12px;
    width: 100%;
    box-shadow: 0 4px 12px rgba(107, 125, 58, 0.3);
}

.relacionados_titulo {
    font-size: 16px;
    font-weight: 600;
    color: #1e1f1c;
    margin-bottom: 0.5rem;
}

.cor_item {
    min-width: 110px;
    height: 44px;
    border-radius: 22px;
    padding: 0 8px;
    font-size: 14px;
    font-weight: 500;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #0000002e;
}

.cor_item.ativo {
    background: linear-gradient(#007CFA, #013378);
    color: #fff;
    border-color: #0081FF;
}

.btn_voltar {
    margin-bottom: 0px;
}

.parcela_produto {
    color: grey;
    font-weight: 500;
    font-size: 14px;
}

.quantidade_carrinho {
    background-color: red;
    border-radius: 50%;
    position: absolute;
    height: 20px;
    width: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: -4px;
    right: -4px;
}

.tamanho_item {
    min-width: 60px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    cursor: pointer;
    background-color: #ffffff;
    border: 1px solid #0000002e;
}

.tamanho_item.ativo {
    background: linear-gradient(#007CFA, #013378);
    color: #fff;
    border-color: #0081FF;
}

.tamanho_item.oculto {
    display: none;
}

.quantidade_estoque {
    width: fit-content;
    min-width: 40px;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #ffffff;
}

.container_avaliacoes {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card_avaliacao {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    border: 1px solid #ddd;
}

.header_avaliacao {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar_avaliacao {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.nome_usuario {
    font-weight: 600;
    font-size: 14px;
}

.estrelas_avaliacao {
    color: #f39c12;
    font-size: 13px;
}

.comentario_avaliacao {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

.container_avaliacoes {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 302px;
    overflow: auto;
}

.produto_preco_relacionado {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

/* LOJA DETALHES */

/* CARRINHO */
.carrinho_container {
    display: flex;
    gap: 2rem;
    flex-direction: column;
}

.carrinho_itens {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.carrinho_vazio {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.carrinho_vazio i {
    font-size: 4rem;
    color: #ddd;
}

.carrinho_vazio h3 {
    font-size: 1.5rem;
    color: #666;
}

.carrinho_vazio p {
    color: #888;
}

.btn_continuar_comprando {
    background: linear-gradient(90deg, #6b7d3a, #4e5c28);
    color: white;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.carrinho_item {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

@media(min-width:768px) {
    .carrinho_item {
        flex-direction: row;
        align-items: center;
    }
}

.carrinho_item_remover {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #e53935;
    font-size: 1.2rem;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrinho_item_imagem {
    width: 120px;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.carrinho_item_imagem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.carrinho_item_info {
    flex-grow: 1;
}

.carrinho_item_nome {
    font-size: 18px;
    font-weight: 600;
    color: #1e1f1c;
    margin-bottom: 0.5rem;
}

.carrinho_item_atributos {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.carrinho_item_atributo {
    font-size: 14px;
    color: #666;
    background: #f5f5f5;
    padding: 4px 10px;
    border-radius: 20px;
}

.carrinho_item_atributo strong {
    color: #0081FF;
}

.carrinho_item_controles {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.carrinho_item_quantidade {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 50px;
    padding: 0.5rem;
}

.carrinho_item_qtd_btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f5f5f5;
    border: none;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
}

.carrinho_item_qtd_valor {
    font-size: 18px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

.preco_antigo {
    text-decoration: line-through;
    color: grey;
    font-weight: 500;
}

.preco_atual {
    font-size: 20px;
    font-weight: 600;
    color: #000;
}

.parcela_produto {
    color: grey;
    font-weight: 500;
    font-size: 14px;
}

.resumo_pedido {
    background: white;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    width: 100%;
    box-sizing: border-box;
}

.resumo_titulo {
    font-size: 16px;
    font-weight: 600;
}

.resumo_detalhes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.resumo_linha {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.resumo_total .resumo_linha_label {
    font-weight: 600;
}

.resumo_total .resumo_linha_valor {
    font-weight: 600;
    color: #0081FF;
}

.resumo_desconto {
    background: #e6ecf7;
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.resumo_desconto_titulo {
    font-size: 14px;
    font-weight: 600;
    color: #0081FF;
    margin-bottom: 0.5rem;
}

.input_cupom {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.input_cupom input {
    flex-grow: 1;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
}

.btn_aplicar_cupom {
    background: #0081FF;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}

.btn_finalizar_compra {
    background: #0081FF;
    color: white;
    border: none;
    padding: 0.6rem;
    font-size: 16px;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
}

.lista_produtos_pedido_detalhes {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.item_produto_pedido {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

.quantidade_item {
    color: #777;
    margin-right: 10px;
}

.valor_item {
    font-weight: 600;
    color: #0081FF;
}

.metodos_pagamento {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-bottom: 1rem;
}

.metodo_pagamento {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #f3f4f6;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    cursor: pointer;
    color: #444;
}

.metodo_pagamento input {
    display: none;
}

.metodo_pagamento i {
    color: #0081FF;
}

.metodo_pagamento:has(input:checked) {
    background: #0081FF;
    color: white;
}

.metodo_pagamento:has(input:checked) i {
    color: white;
}

.campos_cartao {
    display: none;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
}

.input_cartao {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.linha_cartao {
    display: flex;
    gap: 8px;
}

.endereco_entrega {
    margin-bottom: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #eaeaea;
}

.titulo_endereco {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.input_endereco {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
    width: 100%;
}

.linha_endereco {
    display: flex;
    gap: 8px;
}

.btn_voltar {
    margin-bottom: 0;
}

#carrinhoItens {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
/* CARRINHO */