@charset "UTF-8";

/* ==========================================================================
   PG-SEO DESIGN & LAYOUT STYLES (CORES OFICIAIS DO SITE)
   Primary: #035874 | Dark: #003547 | Accent: #ffc107 | Light Bg: #f8fafc
   ========================================================================== */

.seo {
    background-color: #f8fafc;
}

/* Sidebar Menu Lateral */
.menuLateral {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    display: flex;
    flex-direction: column;
}

.menuLateral .title {
    display: block;
    color: #035874;
    border: none;
    border-left: 4px solid #ffc107;
    font-size: 20px;
    font-weight: 700;
    padding-left: 12px;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.menuLateral ul {
    padding-left: 0;
    margin-bottom: 0;
    overflow-y: auto;
    padding-right: 5px;
}

.menuLateral ul::-webkit-scrollbar {
    width: 5px;
}

.menuLateral ul::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.menuLateral ul::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.menuLateral li {
    padding: 0;
    margin-bottom: 4px;
    list-style: none;
}

.menuLateral li a {
    display: block;
    padding: 9px 14px;
    border-radius: 8px;
    color: #323232;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.25s ease;
    text-decoration: none;
}

.menuLateral li a:hover {
    color: #035874;
    background-color: #f0f7f9;
    padding-left: 18px;
}

.menuLateral li.active a {
    color: #ffffff;
    background-color: #035874;
    font-weight: 700;
    border-left: 4px solid #ffc107;
}

/* Card Principal de Conteúdo */
.seo-content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

/* Galeria de Imagens */
.galleryImages {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 25px;
}

.galleryImages .main-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    background-color: #f1f5f9;
    max-height: 420px;
}

.galleryImages .main-image img {
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.thumbnail-container {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 90px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    border-color: #035874;
    transform: translateY(-2px);
    opacity: 0.9;
}

/* Quick CTA Bar no Topo */
.seo-quick-cta {
    background: #f0f7f9;
    border-left: 4px solid #035874;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-top: 1px solid #d0e1e7;
    border-right: 1px solid #d0e1e7;
    border-bottom: 1px solid #d0e1e7;
}

.seo-quick-cta-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #003547;
    margin: 0;
}

.seo-quick-cta-sub {
    font-size: 0.875rem;
    color: #475569;
    margin: 0;
}

.btn-cta-zap {
    background-color: #25d366;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 9px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
}

.btn-cta-zap:hover {
    background-color: #1eb956;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 211, 102, 0.4);
}

.btn-cta-email {
    background-color: #035874;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 8px;
    padding: 9px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(3, 88, 116, 0.3);
}

.btn-cta-email:hover {
    background-color: #003547;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 53, 71, 0.4);
}

/* Conteúdo Formatado da API */
.seo-content-body {
    color: #323232;
    font-size: 1.05rem;
    line-height: 1.8;
}

.seo-content-body h1,
.seo-content-body h2,
.seo-content-body h3,
.seo-content-body h4 {
    color: #003547;
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.seo-content-body h2 {
    font-size: 1.65rem;
    border-bottom: 2px solid #035874;
    padding-bottom: 8px;
}

.seo-content-body h3 {
    font-size: 1.35rem;
}

.seo-content-body p {
    margin-bottom: 1.25rem;
}

.seo-content-body ul,
.seo-content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.seo-content-body li {
    margin-bottom: 0.5rem;
}

/* Banner de Conversão (Lead CTA Banner) */
.seo-lead-banner {
    background: linear-gradient(135deg, #003547 0%, #035874 100%);
    border-radius: 16px;
    padding: 35px 30px;
    margin-top: 40px;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0, 53, 71, 0.25);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.seo-lead-banner::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: rgba(255, 193, 7, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.seo-lead-badge {
    background-color: #ffc107;
    color: #003547;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-block;
    margin-bottom: 12px;
}

.seo-lead-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.seo-lead-desc {
    font-size: 0.95rem;
    color: #e2e8f0;
    margin-bottom: 20px;
}

.seo-lead-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 20px;
}

.seo-lead-feature-item {
    font-size: 0.85rem;
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.seo-lead-feature-item i {
    color: #ffc107;
}

.btn-lead-action {
    background-color: #ffc107;
    color: #003547 !important;
    font-size: 1.05rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(255, 193, 7, 0.35);
    width: 100%;
}

.btn-lead-action:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(255, 193, 7, 0.45);
}

/* Accordion de Regiões Atendidas */
.regions-section {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.regions-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #003547;
    text-align: center;
    margin-bottom: 25px;
}

.rowTab {
    display: flex;
    flex-direction: column;
}

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

.tabs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
}

.tab {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    background: #ffffff;
}

.tab-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: #003547;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 0;
    transition: background 0.3s ease;
}

.tab-label:hover {
    background: #035874;
}

.tab-label::after {
    content: "❯";
    width: 1.2em;
    height: 1.2em;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: transform 0.35s ease;
}

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

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

.tab-content {
    max-height: 0;
    padding: 0 16px;
    color: #323232;
    background: #ffffff;
    transition: all 0.35s ease;
    overflow: hidden;
}

input:checked ~ .tab-content {
    max-height: 350px;
    padding: 16px;
    overflow-y: auto;
    border-top: 1px solid #e2e8f0;
}

.tab-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.tab-content li {
    padding: 5px 0;
    font-size: 0.85rem;
    border-bottom: 1px dashed #f1f5f9;
}

.tab-content li:last-child {
    border-bottom: none;
}

.tab-content li strong {
    color: #323232;
    font-weight: 600;
}

/* Responsividade */
@media (max-width: 991px) {
    .menuLateral {
        position: static;
        max-height: 350px;
        margin-bottom: 30px;
    }
    
    .seo-lead-banner {
        padding: 25px 20px;
    }
    
    .seo-lead-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 576px) {
    .seo-content-card {
        padding: 18px;
    }
    
    .seo-quick-cta {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
    
    .seo-quick-cta-actions {
        width: 100%;
        justify-content: center;
    }
    
    .tabs-grid {
        grid-template-columns: 1fr;
    }
}