@charset "UTF-8";

/* Layout Principal */
.seo-page {
    overflow-x: hidden;
}

.seo-content {
    min-height: 100vh;
}

.seo-section {
    padding: 4rem 0;
}

/* Artigo Principal */
.seo-article {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Galeria */
.seo-gallery {
    margin-bottom: 2rem;
}

.gallery-link {
    display: block;
    transition: transform 0.3s ease;
}

.gallery-link:hover {
    transform: scale(1.02);
}

.gallery-image {
    width: 100%! important;
    height: 450px !important;
    border-radius: 8px;
    object-fit: contain !important;
}

@media (max-width: 768px) {
    .gallery-image {
        height: 200px;
    }
}

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

/* Conteúdo Expansível */
.seo-content-expandable {
    position: relative;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}

.seo-content-collapsed {
    max-height: 300px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.3s ease;
}

.seo-content-collapsed.expanded {
    max-height: none;
}

.seo-content-text {
    padding: 2rem;
    line-height: 1.8;
    color: #333;
}

.seo-content-text h1,
.seo-content-text h2,
.seo-content-text h3,
.seo-content-text h4,
.seo-content-text h5,
.seo-content-text h6 {
    color: #dc3545;
    margin-bottom: 1rem;
    font-weight: 600;
}

.seo-content-text p {
    margin-bottom: 1rem;
}

.seo-content-text ul,
.seo-content-text ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.seo-expand-btn {
    width: 100%;
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.seo-expand-btn:hover {
    background: linear-gradient(135deg, #c82333, #dc3545);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.seo-expand-btn i {
    transition: transform 0.3s ease;
}

.seo-expand-btn.expanded i {
    transform: rotate(180deg);
}

/* Sidebar */
.seo-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-menu {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.sidebar-title {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    color: #fff;
    margin: 0;
    padding: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    border-left: 4px solid #ffc107;
}

.sidebar-nav {
    padding: 1rem 0;
}

.sidebar-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-item {
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.3s ease;
}

.sidebar-item:last-child {
    border-bottom: none;
}

.sidebar-item:hover {
    background-color: #f8f9fa;
}

.sidebar-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.sidebar-link:hover {
    color: #dc3545;
    background-color: #f8f9fa;
    padding-left: 2rem;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #dc3545;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.sidebar-link:hover::before {
    transform: scaleY(1);
}

/* Swiper Customização */
.prodintSwiper {
    border-radius: 8px;
    overflow: hidden;
}

.prodintSwiper .swiper-button-next,
.prodintSwiper .swiper-button-prev {
    background: rgba(220, 53, 69, 0.8);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.prodintSwiper .swiper-button-next:hover,
.prodintSwiper .swiper-button-prev:hover {
    background: rgba(220, 53, 69, 1);
    transform: scale(1.1);
}

.prodintSwiper .swiper-pagination-bullet {
    background: #dc3545;
    opacity: 0.5;
}

.prodintSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #dc3545;
}

/* Responsividade */
@media (max-width: 768px) {
    .seo-section {
        padding: 2rem 0;
    }
    
    .seo-sidebar {
        margin-top: 2rem;
        position: static;
    }
    
    .sidebar-title {
        font-size: 1.1rem;
        padding: 1rem;
    }
    
    .sidebar-link {
        padding: 0.75rem 1rem;
    }
    
    .seo-content-text {
        padding: 1rem;
    }
    
    .seo-expand-btn {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .seo-section {
        padding: 1rem 0;
    }
    
    .seo-content-text {
        padding: 0.75rem;
    }
    
    .sidebar-title {
        font-size: 1rem;
        padding: 0.75rem;
    }
}

/* Estilos Legados (mantidos para compatibilidade) */
.menuLateral .title {
    border: none;
    color: #0056b3;
    border-left: 2px solid #ffc107;
    font-size: 22px;
    font-weight: 500;
    padding-left: 10px;
    transition: 0.4s;
}

.menuLateral li {
    padding: 3px 30px;
    list-style: none !important;
}

.menuLateral li a {
    line-height: 2.5;
    color: #444444;
    transition: 0.4s;
}

.hotline-area {
    color: #fff;
    background: red;
    position: relative;
    z-index: 1;
    padding: 3rem 0;
}

.hotline-area .hotline-area h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 45px;
    font-weight: 400;
}

.hotline-area .hotline-area span {
    font-size: 60px;
    font-weight: 800;
    font-family: "Rubik", sans-serif;
    margin-bottom: 28px;
    display: block;
}

.rowTab {
    display: flex;
    padding-top: 2rem;
}

.rowTab .col {
    flex: 1;
}

.rowTab .d-flex {
    display: flex;
}

.rowTab .col:last-child {
    margin-left: 1em;
}

.rowTab input {
    position: absolute;
    opacity: 0;
    z-index: -1;
}

.tabs {
    overflow: hidden;
}

.tab {
    width: 100%;
    color: white;
    overflow: hidden;
}

.tab-label {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: #2c3e50;
    font-weight: bold;
    cursor: pointer;
    font-size: 0.7rem;
}

.tab-label:hover {
    background: #1a252f;
}

.tab-label::after {
    content: "❯";
    width: 1em;
    height: 1em;
    text-align: center;
    transition: all 0.35s;
}

.tab-content {
    max-height: 0;
    padding: 0 1em;
    color: #2c3e50;
    background: white;
    transition: all 0.35s;
}

.tab-close {
    display: flex;
    justify-content: flex-end;
    padding: 1em;
    font-size: 0.75em;
    background: #2c3e50;
    cursor: pointer;
}

.tab-close:hover {
    background: #1a252f;
}

input:checked+.tab-label {
    background: #1a252f;
}

input:checked+.tab-label::after {
    transform: rotate(90deg);
}

input:checked~.tab-content {
    max-height: 100vh;
    padding: 1em;
}

@media (max-width: 768px) {
    .rowTab .d-flex {
        flex-direction: column;
    }
}

/*# sourceMappingURL=pg-seo.css.map */