@charset "utf-8";
/* ============================================
   PÁGINA SOBRE NÓS - Estilos Específicos
   ============================================ */

/* Breadcrumb */
.breadcrumb {
    background: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
    font-size: 13px;
    color: #666;
}

.breadcrumb a {
    color: #f5a623;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #e09513;
    text-decoration: underline;
}

.breadcrumb span {
    color: #333;
    font-weight: 600;
}

/* Conteúdo Principal */
.sobre-content {
    padding: 40px 0;
    background: #ffffff;
}

.page-title {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
    border-bottom: 3px solid #f5a623;
    padding-bottom: 10px;
    display: inline-block;
}

.sobre-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

/* Seções Sobre */
.sobre-section {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.sobre-section:last-child {
    border-bottom: none;
}

.sobre-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
}

.sobre-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.sobre-section strong {
    color: #f5a623;
}

/* Lista de Valores */
.valores-lista {
    list-style: none;
    padding: 0;
}

.valores-lista li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.valores-lista li:last-child {
    border-bottom: none;
}

.valores-lista li strong {
    color: #f5a623;
    display: block;
    margin-bottom: 5px;
}

/* Sidebar */
.sobre-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 700;
    border-bottom: 2px solid #f5a623;
    padding-bottom: 8px;
}

.loja-foto {
    margin-bottom: 15px;
}

.foto-placeholder {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.sidebar-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.sidebar-box p strong {
    color: #333;
}

/* Serviços Lista */
.servicos-lista {
    list-style: none;
    padding: 0;
}

.servicos-lista li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.servicos-lista li:last-child {
    border-bottom: none;
}

/* Redes Sociais */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-btn {
    display: block;
    padding: 12px 15px;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.facebook {
    background: #3b5998;
}

.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.whatsapp {
    background: #25d366;
}

/* Responsive */
@media (max-width: 768px) {
    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 24px;
    }

    .sobre-section h2 {
        font-size: 20px;
    }
}