* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif !important;
    background-color: #f7f9fc !important;
}

.section-header {
    text-align: center;
    font-size: 24px;
    color: #0099a9;
    font-weight: bold;
    margin-top: 20px;
}

/* Container do carrossel */
.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.grid-container {
    display: flex;
    transition: transform 0.6s ease;
    gap: 20px;
}

/* Card */
.card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    min-width: 270px;
    max-width: 280px;
    height: 460px;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}

.card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.card-content {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card-title {
    font-size: 18px;
    color: #333 !important;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-price {
    font-size: 16px;
    color: #0099a9;
    font-weight: bold;
    margin-bottom: 8px;
}

.card-description {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Botões */
.button-group {
    display: flex;
    gap: 10px;
    margin-top: auto;
}

.button {
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    text-align: center;
    flex: 1;
    text-decoration: none;
    padding: 10px;
}

.button-primary {
    background-color: #0099a9;
    color: #fff;
}

.button-secondary {
    background-color: #ff5a5f;
    color: #fff;
}

/* Navegação do carrossel */
.carousel-btn {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    font-size: 24px;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 10px;
    border-radius: 50%;
    z-index: 5;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* Ajuste da posição */
.posicaoCard {
    left: -184px;
}

.conteinerCard {
    padding-bottom: 0px !important;
    padding-top: 0px !important;
}

/* Responsividade para celular */
@media (max-width: 700px) {
    .carousel-container {
        padding: 0 10px;
    }

    .grid-container {
        justify-content: center;
    }

    .card {
        min-width: 90%;
        max-width: 320px;
        height: auto;
    }

    .card img {
        height: 180px;
    }

    .button-group {
        flex-direction: column;
        gap: 8px;
    }

    .button {
        width: 100%;
    }
}
