/*
 * DENTCOMM - ESTILOS PADRONIZADOS PARA PÁGINAS DE PRODUTO
 * Versão: 1.0
 */

.product-page main {
    padding-top: var(--header-height);
}

.product-header .breadcrumb {
    display: inline-block;
    margin-bottom: 1.5rem;
    color: var(--primary-gray);
    font-weight: 500;
}
.product-header .breadcrumb:hover {
    color: var(--primary-cyan);
}

.product-header__objective {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

.product-details {
    padding: var(--section-padding);
}

.product-details__container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.product-details__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-details__visual {
    background-color: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.product-details__visual img, 
.product-details__visual video {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.info-block h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--primary-cyan);
    height: 100%;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.product-details__investment .investment-card {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 2px solid var(--primary-cyan);
}

.investment-card h3 {
    text-align: center;
    margin-bottom: 1rem;
}

.investment-card__price {
    font-size: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
}

.investment-card__details {
    margin-bottom: 2rem;
}
.investment-card__details p {
    margin-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(0,0,0,0.1);
    padding-bottom: 0.75rem;
}
[data-theme="dark"] .investment-card__details p {
    border-bottom-color: rgba(255,255,255,0.1);
}

.investment-card .btn {
    width: 100%;
}

.product-deliverables {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.deliverable-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-cyan);
    transition: var(--transition-smooth);
}
.deliverable-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.deliverable-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.deliverable-card__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 254, 237, 0.1);
    border-radius: 50%;
    color: var(--primary-cyan);
}

.deliverable-card h4 {
    margin-bottom: 0;
    font-size: 1.25rem;
}

.check-list {
    list-style: none;
    padding-left: 0;
}
.check-list li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.75rem;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-cyan);
    font-weight: bold;
    font-size: 1rem;
}

@media (max-width: 992px) {
    .product-details__container {
        grid-template-columns: 1fr;
    }
    .product-details__investment .investment-card {
        position: static;
        width: 100%;
    }
}