/* Estilos específicos para a página de churrasqueiras */
.video-banner {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.video-banner iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    pointer-events: none; /* Impede interações com o vídeo */
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    padding: 0 20px;
    z-index: 1;
}

.banner-overlay h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.banner-overlay p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.feature-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 600px;
    width: 100%;
    overflow: hidden;
}

.feature-box:hover {
    transform: translateY(-10px);
}

.feature-box img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 40px;
    color: #dc3545;
    margin-bottom: 15px;
}

.btn-churrasqueira {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-churrasqueira:hover {
    background-color: #c82333;
    transform: scale(1.05);
    color: white;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: #dc3545;
}

/* Estilos para os sliders de produtos */
.product-slider {
    margin-bottom: 20px;
    height: 300px;
    width: 100%;
}

.product-slider .slick-slide {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.product-slider .slick-slide img {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: center;
}

.product-slider .slick-dots {
    bottom: -25px;
}

.product-slider .slick-dots li button:before {
    font-size: 12px;
    color: #dc3545;
}

.product-slider .slick-dots li.slick-active button:before {
    color: #dc3545;
}

@media (max-width: 768px) {
    .video-banner {
        height: 60vh;
    }

    .banner-overlay h1 {
        font-size: 2rem;
    }

    .banner-overlay p {
        font-size: 1.2rem;
    }

    .product-slider .slick-dots {
        bottom: -20px;
    }
}
