/* ========================================
   GRAVAÇÕES PAGE STYLES - Promofy Theme
   Estilos específicos da página de gravações
   ======================================== */

/* ========================================
   BANNER SECTION
   ======================================== */

.banner-gravacoes {
    width: 100%;
    overflow: hidden;
}

.banner-gravacoes .banner-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   TIPOS DE GRAVAÇÃO SECTION
   ======================================== */

.tipos-gravacao-section {
    padding: 60px 0;
    background-color: #000;
    margin-top: 40px;
}

.section-subtitle {
    color: #fff;
    font-size: 23.56px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 800;
    line-height: 40.99px;
    text-align: center;
}

.gravacoes-slider {
    position: relative;
    padding: 0 60px;
}

.gravacoes-grid {
    display: flex;
    align-items: flex-end;
    gap: 35px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0 10px;
    scroll-snap-type: x mandatory;
}

.gravacao-item {
    scroll-snap-align: start;
}

.gravacoes-grid::-webkit-scrollbar {
    display: none;
}

.gravacao-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: var(--Black, #282828);
    transition: all 0.3s;
    padding: 12px 6px;
    border-radius: 15px;
    border: 2px solid transparent;
    margin: 5px 0;
    cursor: pointer;
    flex-shrink: 0;
}

.gravacao-item:hover {
    border: 2px solid #fff;
}

.gravacao-item:hover .gravacao-name {
    color: #ffffff;
    font-weight: 700;
}

.gravacao-icon {
    width: 95px;
    height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.gravacao-item.active {
    color: #ffffff;
    font-weight: 700;
    border: 2px solid #fff;
}

.gravacao-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.gravacao-name {
    color: #fff;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    font-weight: 400;
    transition: all 0.3s;
}

/* Slider Navigation Buttons */
.tipos-gravacao-section .slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    border: none;
    background-color: transparent;
    color: #fff;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    padding: 0;
    z-index: 10;
}

.tipos-gravacao-section .slider-nav.prev {
    left: 10px;
}

.tipos-gravacao-section .slider-nav.next {
    right: 10px;
}

.tipos-gravacao-section .slider-nav img {
    width: 20px;
    height: 20px;
    display: block;
    filter: brightness(0) invert(1);
}

.tipos-gravacao-section .slider-nav:hover {
    opacity: 0.7;
}

.tipos-gravacao-section .slider-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* ========================================
   DETALHES DA GRAVAÇÃO SECTION
   ======================================== */

.detalhes-gravacao-section {
    padding: 60px 0 0 0;
    background-color: #fff;
}

.gravacao-info {
    margin-bottom: 80px;
    max-width: 100%;
    transition: opacity 0.3s ease;
}

.gravacao-description {
    color: #040404;
    font-size: 20.03px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 36.05px;
    margin-bottom: 30px;
}

.gravacao-description strong {
    font-weight: 700;
}

.gravacao-sugestoes {
    color: #040404;
    font-size: 20.03px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    line-height: 36.05px;
    margin: 0;
}

.gravacao-sugestoes strong {
    font-weight: 700;
}

.gravacao-image-wrapper {
    width: 100%;
    transition: opacity 0.3s ease;
}

.gravacao-detail-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}

.gravacao-image-placeholder {
    width: 100%;
    height: 638px;
    background-color: #D9D9D9;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    text-align: center;
    color: #000;
    font-size: 65.81px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600;
    line-height: 70.41px;
    margin: 0;
}

/* ========================================
   PRODUTOS RECOMENDADOS SECTION
   ======================================== */

.produtos-recomendados-section {
    padding: 80px 0;
    background-color: #fff;
}

.produtos-recomendados-section .section-title {
    margin-bottom: 40px;
}

#produtos-container {
    transition: opacity 0.3s ease;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablets */
@media (max-width: 992px) {
    .gravacoes-grid {
        gap: 25px;
    }

    .gravacao-icon {
        width: 80px;
        height: 80px;
    }

    .gravacao-icon img {
        width: 60px;
        height: 60px;
    }

    .gravacao-name {
        font-size: 18px;
    }

    .gravacao-info {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .gravacao-image-placeholder {
        height: 400px;
    }

    .placeholder-text {
        font-size: 45px;
    }

    .produtos-recomendados-section .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .tipos-gravacao-section {
        padding: 40px 0;
    }

    .gravacoes-grid {
        gap: 20px;
    }

    .gravacao-icon {
        width: 70px;
        height: 70px;
    }

    .gravacao-icon img {
        width: 50px;
        height: 50px;
    }

    .gravacao-name {
        font-size: 16px;
        line-height: 20px;
    }

    .detalhes-gravacao-section {
        padding: 50px 0;
    }

    .gravacao-description,
    .gravacao-sugestoes {
        font-size: 16px;
        line-height: 28px;
    }

    .gravacao-image-placeholder {
        height: 300px;
    }

    .placeholder-text {
        font-size: 32px;
        line-height: 40px;
    }

    .produtos-recomendados-section .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .produtos-recomendados-section .product-image {
        height: auto;
    }

    .produtos-recomendados-section .product-image img {
        height: auto;
        object-fit: contain;
    }

    .produtos-recomendados-section .product-title {
        font-size: 14px;
    }

    .produtos-recomendados-section .product-code {
        font-size: 13px;
    }

    .produtos-recomendados-section {
        padding: 40px 0;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .gravacoes-grid {
        gap: 15px;
    }

    .gravacao-icon {
        width: 60px;
        height: 60px;
    }

    .gravacao-icon img {
        width: 40px;
        height: 40px;
    }

    .gravacao-name {
        font-size: 14px;
    }

    .section-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
}
