/* Estilos para a página de orçamento */
.quote-header {
    background-color: #1a1a1a;
    padding: 3rem 0;
    text-align: center;
}

.quote-header h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.quote-products {
    padding: 4rem 0;
}

.product-selector h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-selector p {
    color: #666;
    margin-bottom: 2rem;
}

/* Carrossel de linhas de produtos */
.product-lines-carousel {
    position: relative;
    margin: 2rem 0;
    width: 100%;
}

.carousel-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 10;
    pointer-events: none;
    display: flex;
    gap: 1rem;
}

.nav-prev, .nav-next {
    background: none;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-prev {
    left: -20px;
}

.nav-next {
    right: -20px;
}

.nav-prev:hover, .nav-next:hover {
    color: var(--jcb-orange);
    background: #fff;
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.product-lines {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; /* Para iOS */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE e Edge */
    width: 100%;
    padding: 0 1rem;
}

/* Esconde a scrollbar mas mantém a funcionalidade */
.product-lines::-webkit-scrollbar {
    display: none;
}

.product-line {
    flex: 0 0 280px;
    min-width: 280px;
    padding: 2rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-line:hover {
    border-color: var(--jcb-orange);
}

.line-icon {
    margin-bottom: 1.5rem;
}

.line-icon img {
    width: 120px;
    height: auto;
}

.product-line h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

/* Formulário */
.quote-form {
    max-width: 600px;
    margin: 3rem auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.btn-submit {
    background-color: var(--jcb-orange);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: darken(var(--jcb-orange), 10%);
}

/* Produtos específicos */
.specific-products {
    margin-top: 4rem;
    display: none;
}

.specific-products-title {
    margin-bottom: 2rem;
    text-align: center;
}

.specific-products-title h3 {
    font-size: 24px;
    color: #333;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem 0;
}

.product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.product-image {
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.product-card h4 {
    font-size: 20px;
    margin-bottom: 1rem;
    color: #333;
}

.btn-quote {
    display: inline-block;
    background-color: var(--jcb-orange);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-quote:hover {
    background-color: darken(var(--jcb-orange), 10%);
    color: #fff;
    text-decoration: none;
}

/* Card ativo */
.product-line.active {
    border-color: var(--jcb-orange);
    background-color: rgba(252, 174, 38, 0.1);
}

/* Media Queries para responsividade */
@media (max-width: 1400px) {
    .product-lines {
        width: calc(280px * 3 + 2rem * 2); /* 3 cards + 2 gaps */
        margin: 0 auto;
    }
}

@media (max-width: 1100px) {
    .product-lines {
        width: calc(280px * 2 + 2rem); /* 2 cards + 1 gap */
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .product-lines {
        width: 100%;
        margin: 0;
        padding: 0 1rem;
        gap: 1rem;
    }

    .carousel-navigation {
        display: none; /* Esconde as setas em mobile */
    }

    .product-line {
        flex: 0 0 260px;
        min-width: 260px;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .product-line {
        flex: 0 0 240px;
        min-width: 240px;
        padding: 1rem;
    }

    .line-icon img {
        width: 80px;
    }

    .product-line h3 {
        font-size: 14px;
    }
} 