  .checkout-area .row {
    display: flex;
}

.checkout-area .col-lg-8 {
    border-right: 2px solid #ccc; 
    padding-right: 30px; 
}

.checkout-area .col-lg-4 {
    padding-left: 30px; 
}

    .checkout-product {
    display: flex;
    flex-direction: column; /* Organiza os itens de forma vertical */
    align-items: center; /* Centraliza os itens */
    padding: 10px;
}

.checkout-product-img {
    width: 100%; /* A imagem ocupa toda a largura */
    text-align: center; /* Centraliza a imagem */
}

.checkout-product-img img {
    width: 100%; /* Faz a imagem se ajustar ao container */
    max-width: 500px; /* Limita o tamanho máximo da imagem */
    height: 200px; /* Mantém a proporção da imagem */
}

.event-info {
    text-align: center;
    margin-top: 15px; /* Espaço entre a imagem e as informações */
}

.event-name {
    font-size: 1.5em;
    font-weight: bold;
    margin-bottom: 10px;
}

.event-location {
    font-size: 1.1em;
    color: #777;
}

.event-location i {
    margin-right: 5px; /* Espaçamento entre o ícone e o texto */
}

 
/* Estrutura geral */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #fafafa;
    margin: 0;
    padding: 0;
}

/* Botões e Links */
.theme-btn {
    background-color: #22B0AF;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.theme-btn:hover {
    background-color: #1f9a98;
    transform: scale(1.1);
}

/* Banners */
.page-banner {
    background-size: cover;
    background-position: center center;
    padding-top: 140px;
    padding-bottom: 130px;
    text-align: center;
    color: white;
}

.page-banner h2 {
    font-size: 50px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-banner .breadcrumb {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 0;
    font-size: 16px;
}

.page-banner .breadcrumb li {
    margin: 0 15px;
}

.page-banner .breadcrumb a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-banner .breadcrumb a:hover {
    color: #22B0AF;
}

/* Formulário de Checkout */
.checkout-area {
    background-color: white;
    padding-top: 100px;
    padding-bottom: 90px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.checkout-area h3 {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}

.input-effect {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border 0.3s ease;
}

.input-effect:focus {
    border: 2px solid #22B0AF;
}

/* Resumo do Pedido */

.checkout-product-img img:hover {
    transform: scale(1.05);
}

/* Animações */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.checkout-area {
    animation: fadeIn 1s ease-out;
}

/* Responsividade */
@media (max-width: 768px) {
    .checkout-area .container {
        padding: 10px;
    }

    .col-lg-8, .col-lg-4 {
        width: 100%;
    }

    .theme-btn {
        width: 100%;
    }

    .page-banner h2 {
        font-size: 30px;
    }
}


/* Alinha as informações de evento lado a lado */
.event-details {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
}

/* Estilo para os ícones e texto */
.event-details span {
    font-size: 14px;
    color: #555;
}

/* Estilo para os ícones dentro das informações */
.event-details i {
    margin-right: 5px;
}

/* Estilo das listas de detalhes do pedido */
.package-summary ul {
    list-style: none;
    padding: 0;
}

.package-summary li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.package-summary .text {
    font-weight: 600;
    color: #333;
}

.package-summary .number {
    font-weight: 500;
    color: #000;
}

/* Estilo para o botão de pagamento */
.theme-btn {
    background-color: #22B0AF; /* Cor principal */
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.theme-btn:hover {
    background-color: #1A8C7C; /* Tom mais escuro para hover */
    transform: scale(1.05); /* Pequeno aumento no botão */
}

/* Estilo do box que envolve a seção */
.checkout-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra leve */
    border: 1px solid #ddd; /* Borda sutil */
}


