/* Importação de fontes */
@import url('https://fonts.googleapis.com/css2?family=OpenSans:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200..700&display=swap');

:root {
    --primary-color: #F97316;
    --secondary-color: #FFF0E6;
    --text-color: #333333;
    --background-color: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    background: url('../images/bgteste3.png') no-repeat center center fixed;
    background-size: cover;
    color: var(--text-color);
}

@media (min-width: 768px) {
    body{
        margin-top: 20rem;
    }
}

.container-delivery {
    max-width: 46rem;
    background-color: rgba(255, 245, 235, 0.95) !important;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    padding: 0rem;
}

.entrega-header-background {
    background-color: var(--primary-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
    width: 100%;
    padding: 0.1rem 0rem; /* Ajuste o padding vertical */
    text-align: center;
    border-radius: 10px 10px 0 0;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2; /* Adiciona um z-index maior */
}

h1 {
    font-family: 'Oswald';
    font-weight: 500;
    font-size: 2.5em;
    color: white;
    text-wrap: nowrap;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    .container-delivery {
        margin-top: 6.5rem;
        max-width: 95%;
    }
}

.delivery-container {
    padding: 1rem 2rem;
}

.delivery-area {
    background: var(--background-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0.5rem;
}

.delivery-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.delivery-item:last-child {
    border-bottom: none;
}

.delivery-item:hover {
    background-color: var(--secondary-color);
    transform: translateX(5px);
}

.delivery-name {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 500;
}

.delivery-name i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.3rem;
}

.delivery-price {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 5px 10px;
    border-radius: 20px;
    text-wrap: nowrap;
}

@media (min-width: 768px) {
    body {
        margin-top: 17rem;
    }
    .container-delivery {
        margin-top: 2rem;
        margin-bottom: 4rem;
    }
}
