﻿.div-tipo-pedido {
    width: 100%;
    height: 140px;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.img-fundo-tipo-pedido {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    z-index: 1;
}

.div-botoes-tipo {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.btn-tipo {
    border-radius: 10px;
    border: 2px solid white;
    font-weight: 600;
    font-size: 15px;
    padding: 6px 20px ;
    color: white;
    background: transparent;
    transition: 0.3s ease;
}

    .btn-tipo:hover {
        opacity: 0.9;
    }

.btn-entrega.ativo,
.btn-retirar.ativo {
    background: white;
    color: black;
}


.canto-direito {
    bottom: 5px;
    right: 5px;
}

.canto-esquerdo {
    bottom: 20px;
    left: 20px;
}


.entrega-container {
    font-family: Arial, sans-serif;
}

.titulo {
    color: #2e7d32;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.opcoes-entrega {
    display: flex;
    gap: 15px;
}

.opcao {
    padding-top: 5px;
    padding-bottom: 5px;
    background: #fff;
    border-radius: 12px;
    border: 2px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: 0.2s;
}

    .opcao img {
        width: 40px;
        margin-bottom: 10px;
    }

    .opcao span {
        font-size: 14px;
        color: #000;
    }

    .opcao.ativo {
        border: 2px solid #2e7d32;
        background: #f7fff7;
    }