.produto-container {
    margin-top: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 0 2rem 2rem;
}

.produto-imagem {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.produto-imagem img {
    width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 600px;
}

.produto-detalhes {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 8px 24px,
                rgba(17, 17, 26, 0.1) 0px 16px 56px,
                rgba(17, 17, 26, 0.1) 0px 24px 80px;
}

.produto-detalhes h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 2rem;
}

.opcoes {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.tamanho-opcao, .numero-opcao {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tamanho-opcao label, .numero-opcao label {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.tamanho-opcao select, .numero-opcao input {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.tamanho-opcao select:focus, .numero-opcao input:focus {
    border-color: var(--secondary-color);
}

.voltar-btn {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    transition: color 0.3s;
}

.voltar-btn:hover {
    color: var(--secondary-color);
}

#comprar-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.2rem;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    margin-top: 1rem;
}

#comprar-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(224, 27, 133, 0.3);
}

/* Ajustes de responsividade */
@media (max-width: 1024px) {
    .produto-container {
        padding: 80px 1.5rem 2rem;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .produto-container {
        margin-top: 1.5rem;
        grid-template-columns: 1fr;
        padding: 0 1rem 1rem;
    }

    .produto-imagem {
        padding: 0.5rem;
    }

    .produto-imagem img {
        max-height: 400px;
    }

    .produto-detalhes {
        padding: 1rem;
    }

    .produto-detalhes h1 {
        font-size: 1.5rem;
    }

    .opcao-item label {
        padding: 0.8rem;
    }

    .aviso-compra {
        margin: 1.5rem 0 1rem 0;
        padding: 0.8rem;
    }

    .aviso-compra p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .produto-container {
        margin-top: 1rem;
        padding: 0 0.5rem 0.5rem;
    }

    .produto-imagem img {
        max-height: 300px;
    }

    .produto-detalhes h1 {
        font-size: 1.2rem;
    }

    .opcao-titulo, .opcao-preco {
        font-size: 0.9rem;
    }

    #comprar-btn {
        font-size: 1rem;
        padding: 0.8rem;
    }
}

.produto-descricao {
    margin-bottom: 2rem;
    color: #666;
    line-height: 1.6;
}

.caracteristicas {
    list-style: none;
    margin-top: 1rem;
}

.caracteristicas li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #444;
}

.caracteristicas i {
    color: var(--secondary-color);
}

.info-adicional {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.info-adicional p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #666;
}

.info-adicional i {
    color: var(--secondary-color);
}

#comprar-btn i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

/* Header da página de produto */
.navbar {
    position: relative;
    background-color: var(--primary-color) !important;
    padding: 1.5rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Sobrescrever estilos do header da página inicial */
.navbar:not(.scrolled) {
    background: var(--primary-color) !important;
}

/* Remover gradiente */
.navbar::before,
.navbar::after {
    display: none;
}

/* Adicionar os estilos para as opções de compra */
.opcoes-compra {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.opcao-item {
    position: relative;
}

.opcao-item input[type="radio"] {
    display: none;
}

.opcao-item label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
}

.opcao-item input[type="radio"]:checked + label {
    border-color: var(--secondary-color);
    background-color: rgba(224, 27, 133, 0.05);
}

.opcao-titulo {
    font-weight: bold;
    color: var(--primary-color);
}

.opcao-preco {
    color: var(--secondary-color);
    font-weight: bold;
}

.nome-opcao {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.nome-opcao label {
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nome-opcao input {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s;
}

.nome-opcao input:focus {
    border-color: var(--secondary-color);
}

.aviso-compra {
    margin: 2rem 0 1rem 0;
    padding: 1rem;
    background-color: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
}

.aviso-compra p {
    margin: 8px 0;
    color: #495057;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aviso-compra i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.aviso-compra .fa-info-circle {
    color: var(--secondary-color);
}

.aviso-compra .fa-whatsapp {
    color: #25D366;
}

/* Adiciona uma sutil animação de hover */
.aviso-compra:hover {
    background-color: #e9ecef;
    transition: background-color 0.3s ease;
}