/* Seção de Restaurantes */
#restaurantes {
    scroll-margin-top: 100px;
    padding: 60px 7% 80px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
}

.restaurants-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header alinhado à esquerda */
.restaurants-header {
    text-align: left;
    margin-bottom: 20px;
}

/* Kicker pequeno em teal */
.section-kicker {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #0f7f86;
    margin-bottom: 4px;
}

/* Título mais limpo */
.section-title {
    font-size: 2.1rem;
    font-weight: 600;
    color: #222222;
    margin: 0 0 6px 0;
}

/* Subtítulo curto e suave */
.section-subtitle {
    font-size: 0.95rem;
    color: #6e7477;
    margin: 0;
    max-width: 520px;
}

/* Mantém o resto (slider, cards, botões) igual */
.restaurant-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0 55px;
    margin-top: 10px;
}

/* Trilho dos cards */
.restaurant-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease-in-out;
}

/* Card do restaurante */
.restaurant-item {
    position: relative;
    flex: 0 0 410px;        
    max-width: 450px;       
    overflow: hidden;
    border-radius: 18px;
    background-color: #ffffff;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.restaurant-item img {
    width: 100%;
    height: 300px;          
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

/* Info sempre visível */
.restaurant-item .info {
    padding: 14px 16px 12px;
    text-align: left;
}

.restaurant-item .info h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #222222;
    margin-bottom: 4px;
}

.restaurant-item .info span {
    font-size: 0.9rem;
    color: #777777;
}

/* Overlay com descrição no hover */
.restaurant-item .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 22px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.restaurant-item .overlay p {
    font-size: 1.1rem;      
    line-height: 1.55;
    margin-bottom: 14px;
}

/* Botão Saiba Mais */
.saiba-mais {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background-color: #ffc700;
    color: #222222;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}

.saiba-mais:hover {
    background-color: #e0af00;
    transform: translateY(-1px);
}

/* Hover do card */
.restaurant-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.14);
}

.restaurant-item:hover img {
    transform: scale(1.05);
}

.restaurant-item:hover .overlay {
    opacity: 1;
}

/* Botões do slider */
/* Botões do slider - estilo Shopping Plaza */
.slider-btn {
    position: absolute;
    bottom: 10px;               /* fica na parte inferior */
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 10px;        /* quadradinho com canto arredondado */
    background-color: #0f7f86;  /* teal */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease;
    padding: 0;
}

/* Animação hover (desktop) */
.slider-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Posiciona os dois lado a lado no canto inferior direito */
.slider-btn.prev {
    right: 60px;
}

.slider-btn.next {
    right: 10px;
}

/* Ajuste no container para caber os botões sem cortar */
.restaurant-slider {
    position: relative;
    overflow: hidden;
    padding: 10px 0 55px; /* espaço extra embaixo pros botões */
}

/* Wave bottom da seção de Restaurantes */
.custom-shape-divider-bottom-restaurantes {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 1;
}

.custom-shape-divider-bottom-restaurantes svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 70px; /* ajusta se quiser maior/menor */
}

.custom-shape-divider-bottom-restaurantes .shape-fill {
    /* cor da próxima seção / fundo abaixo da onda */
    fill: #E8F5F7; /* usa aquela cor clarinha que você pegou */
}


/* MOBILE: botões um pouco menores, ainda no canto inferior direito */
@media (max-width: 768px) {
    .slider-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
        bottom: 8px;
    }

    .slider-btn.prev {
        right: 54px;
    }

    .slider-btn.next {
        right: 12px;
    }

    .restaurant-slider {
        padding-bottom: 50px;
    }
}

@media (max-width: 480px) {
    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 15px;
        bottom: 6px;
    }

    .slider-btn.prev {
        right: 50px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .restaurant-slider {
        padding-bottom: 48px;
    }
}

