/* Estilos para a página de produto individual */
.product-banner {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-title {
    position: absolute;
    bottom: 40px;
    left: 0;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px 40px;
    min-width: 400px;
}

.banner-title h1 {
    color: #fff;
    font-family: var(--primary-font);
    font-size: 2.5rem;
    margin: 0;
    text-transform: uppercase;
}

/* Remover o gradiente escuro que estava sobre a imagem */
.banner-image::after {
    display: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding-bottom: 50px;
}

.banner-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.product-description {
    padding: 60px 0;
}

.product-description h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.main-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.specs-overview {
    background-color: #fff;
    padding: 20px 0;
    margin-top: 30px;
}

.specs-overview .spec-item {
    text-align: left;
    margin-bottom: 15px;
}

.specs-overview .spec-item span {
    display: block;
    font-family: var(--light-font);
    font-size: 1rem;
    color: #666;
    margin-bottom: 5px;
}

.specs-overview .spec-item strong {
    display: block;
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: #333;
}

.features-section {
    padding: 80px 0;
}

.features-section h2 {
    font-family: var(--primary-font);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-transform: uppercase;
}

.features-section .main-description {
    font-family: var(--primary-font);
    font-size: 1.2rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: #333;
}

.features-section p {
    font-family: var(--light-font);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 2rem;
}

.features-section ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.features-section li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 20px;
    font-family: var(--light-font);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

.features-section li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--jcb-orange);
    font-size: 1.5rem;
}

.features-section .product-image {
    max-height: 450px;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.features-section.bg-light {
    background-color: #f8f9fa;
}

.bg-light {
    background-color: #f8f9fa;
}

.cta-section {
    padding: 60px 0;
    background: #fff;
}

.btn-block {
    padding: 15px 30px;
    font-size: 1.1rem;
    margin: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-block i {
    margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .product-description h2 {
        font-size: 2rem;
    }

    .features-section {
        padding: 40px 0;
    }

    .features-section h2 {
        font-size: 2rem;
    }

    .features-section .main-description {
        font-size: 1.1rem;
    }

    .features-section p,
    .features-section li {
        font-size: 1rem;
    }

    .features-section .product-image {
        max-height: 350px;
        margin-bottom: 30px;
    }

    /* Ajuste para ordem das colunas em mobile */
    .features-section .row {
        flex-direction: column;
    }

    .features-section .row .col-md-6:first-child {
        order: 2;
    }

    .features-section .row .col-md-6:last-child {
        order: 1;
    }

    /* Exceção para seções onde a imagem já está à esquerda */
    .features-section .row.image-left .col-md-6:first-child {
        order: 1;
    }

    .features-section .row.image-left .col-md-6:last-child {
        order: 2;
    }

    .specs-overview .spec-item strong {
        font-size: 1.2rem;
    }

    .banner-title {
        padding: 15px 25px;
        min-width: 300px;
    }

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

@media (max-width: 576px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .spec-item {
        padding: 15px;
    }

    .spec-item p {
        font-size: 1.5rem;
    }

    .banner-title {
        padding: 10px 20px;
        min-width: 250px;
    }

    .banner-title h1 {
        font-size: 1.8rem;
    }
}

/* Fontes */
@font-face {
    font-family: 'JCB Euro';
    src: url('../fontes-jcb/JCBER___.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'JCB Euro Light';
    src: url('../fontes-jcb/JCBEL___.TTF') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Gill JCB';
    src: url('../fontes-jcb/GILLJCB_.TTF') format('truetype');
    font-weight: normal;
    font-style: normal;
}

:root {
    --primary-font: 'JCB Euro', sans-serif;
    --secondary-font: 'Gill JCB', sans-serif;
    --light-font: 'JCB Euro Light', sans-serif;
    --dark-gray: #333;
    --jcb-orange: #FFB81C;
}

/* Ajuste do tamanho das imagens nas seções */
.features-section img,
.section-image {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Container do título */
.products-title-container {
    background-color: #262626;
    width: 100%;
    padding: 1.5rem 0;
    margin-bottom: 0;
}

.products-title-container .action-link {
    color: #fff;
    text-decoration: none;
    font-family: var(--primary-font);
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.products-title-container .d-flex {
    gap: 8rem !important;
}

.products-title-container .action-link:hover {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
}

.products-title-container .action-link i {
    color: var(--jcb-orange);
    font-size: 1.2rem;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .products-title-container {
        padding: 1rem 0;
    }

    .products-title-container .row > div {
        margin-bottom: 1rem;
    }

    .products-title-container .row > div:last-child {
        margin-bottom: 0;
    }

    .products-title-container .action-link {
        font-size: 0.9rem;
    }
}

/* Faixa de Ações */
.action-stripe {
    background-color: #222;
    padding: 20px 0;
    font-family: var(--primary-font);
}

.action-stripe .btn {
    width: 100%;
    padding: 15px 25px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 500;
}

.action-stripe .btn i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Produtos Relacionados */
.product-list {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.product-list h2 {
    font-family: var(--primary-font);
    font-size: 2rem;
    color: #333;
    margin-bottom: 40px;
    text-align: center;
    text-transform: uppercase;
}

.product-item {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    padding: 20px;
}

.product-item .product-image {
    height: 250px;
    overflow: hidden;
    border-radius: 4px;
}

.product-item .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item .product-info {
    padding: 20px 0;
}

.product-item h3 {
    font-family: var(--primary-font);
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.product-item p {
    font-family: var(--light-font);
    font-size: 1rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.product-item .product-actions {
    margin-bottom: 20px;
}

.product-item .product-actions .btn {
    margin-right: 10px;
    margin-bottom: 10px;
    font-family: var(--primary-font);
    font-size: 0.9rem;
    padding: 10px 15px;
}

.product-item .product-specs {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 6px;
}

.product-item .product-specs .spec-item {
    margin-bottom: 10px;
}

.product-item .product-specs .spec-item:last-child {
    margin-bottom: 0;
}

.product-item .product-specs h4 {
    font-family: var(--light-font);
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
}

.product-item .product-specs p {
    font-family: var(--primary-font);
    font-size: 1rem;
    color: #333;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .products-title-container {
        padding: 1rem 0;
    }

    .products-title-container .row > div {
        margin-bottom: 1rem;
    }

    .products-title-container .row > div:last-child {
        margin-bottom: 0;
    }

    .products-title-container .action-link {
        font-size: 0.9rem;
    }

    .product-item .product-image {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .product-item .product-image {
        height: 180px;
    }
}

/* Ajustes gerais de fonte */
.features-section h2 {
    font-family: var(--primary-font);
}

.features-section p, 
.features-section li {
    font-family: var(--light-font);
}

.spec-item h3 {
    font-family: var(--secondary-font);
}

.spec-item p {
    font-family: var(--primary-font);
} 