/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA DE page ===== */
.post-content header {
    background:#ffffff
}


/* Breadcrumb */
.breadcrumb {
    background-color: #f8f9fa;
    padding: 15px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb-item {
    margin-right: 10px;
    font-size: 14px;
    color: #6c757d;
}

.breadcrumb-item:not(:last-child)::after {
    content: "›";
    margin-left: 10px;
    color: #6c757d;
}

.breadcrumb-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #495057;
    font-weight: 500;
}

/* Conteúdo do Post */
.page-post {
    padding: 20px 0 40px;
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 40px;
}

.post-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 2px solid #f8f9fa;
    padding-bottom: 25px;
}

.post-header h1 {
    color: #2c3e50;
    font-size: 2.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    color: #6c757d;
    font-size: 14px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-meta i {
    color: #007bff;
}

.post-image {
    margin: 30px 0;
    text-align: center;
}

.featured-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-body {
    line-height: 1.7;
    color: #444;
    font-size: 16px;
}

.post-body h2 {
    color: #2c3e50;
    margin: 35px 0 20px;
    font-size: 1.8rem;
    font-weight: 600;
    border-bottom: 2px solid #007bff;
    padding-bottom: 8px;
}

.post-body h3 {
    color: #34495e;
    margin: 30px 0 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.post-body h4 {
    color: #2c3e50;
    margin: 20px 0 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.post-body p {
    margin-bottom: 20px;
    text-align: justify;
}

.post-body ul, .post-body ol {
    margin: 20px 0;
    padding-left: 25px;
}

.post-body li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.post-body strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Cards de Tratamento */
.treatment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.treatment-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.treatment-card h4 {
    color: #007bff;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.treatment-card p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Call-to-Action do Post */
.post-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.post-cta h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.post-cta p {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.9;
}
/* Tags do Post */
.post-tags {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.post-tags span {
    font-weight: 600;
    color: #2c3e50;
}

.post-tags a {
    background: #e9ecef;
    color: #495057;
    padding: 5px 12px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: #007bff;
    color: white;
}

/* Produtos Relacionados */
.related-products {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #f8f9fa;
}

.related-products .section-title {
    text-align: center;
    margin-bottom: 30px;
    color: #2c3e50;
    font-size: 1.8rem;
}

/* Ajustes para o Carrossel na página de page */
.page-post .carousel {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.page-post .carousel-container {
    display: flex;
    transition: transform 0.3s ease;
    gap: 20px;
    padding: 10px 0;
}

.page-post .product-card {
    flex: 0 0 calc(33.333% - 14px);
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-post .product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
}

.page-post .product-image {
    margin-bottom: 15px;
}

.page-post .product-image img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    border-radius: 8px;
}

.page-post .product-name {
    font-size: 1rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
}

.page-post .product-description {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.page-post .product-price {
    font-size: 1.2rem;
    color: #007bff;
    font-weight: 700;
    margin-bottom: 15px;
}

.page-post .buy-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
}

.page-post .buy-button:hover {
    background: transparent;
    color: #007bff;
}

.page-post .carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.page-post .carousel-control {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    color: #007bff;
}

.page-post .carousel-control:hover {
    background: #007bff;
    color: white;
    transform: scale(1.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .post-content {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .post-header h1 {
        font-size: 2rem;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
    
    .treatment-options {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-button {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .post-tags {
        justify-content: center;
        text-align: center;
    }
    
    .page-post .product-card {
        flex: 0 0 calc(100% - 20px);
    }
    
    .breadcrumb-list {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .post-header h1 {
        font-size: 1.6rem;
    }
    
    .post-body h2 {
        font-size: 1.4rem;
    }
    
    .post-body h3 {
        font-size: 1.2rem;
    }
    
    .post-content {
        padding: 20px 15px;
    }
}

/* Animações suaves */
.post-content {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.treatment-card, .product-card {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Melhorias de acessibilidade */
.post-body a {
    color: #007bff;
    text-decoration: underline;
}

.post-body a:focus,
.cta-button:focus,
.carousel-control:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}

/* Estilo para blocos de citação (se necessário no futuro) */
.post-body blockquote {
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin: 25px 0;
    font-style: italic;
    color: #555;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 0 8px 8px 0;
}