/* Quem Somos Page Styles */

.sobre-page {
    padding-top: 80px;
    background: #ffffff;
    min-height: 100vh;
}

.sobre-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px 60px;
}

.sobre-page-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 36px;
}

/* Text Content */
.sobre-text p {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sobre-text h2 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-top: 32px;
    margin-bottom: 12px;
}

/* Feature Cards */
.sobre-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
}

.sobre-feature-card {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
}

.sobre-feature-icon {
    width: 52px;
    height: 52px;
    background: #fff3e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.sobre-feature-card p {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* WhatsApp CTA */
.sobre-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-whatsapp-sobre {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp-sobre:hover {
    background: #1fb855;
    transform: translateY(-2px);
}

.btn-whatsapp-sobre .whatsapp-icon {
    width: 22px;
    height: 22px;
}

/* Responsive */
@media (max-width: 1024px) {
    .sobre-page {
        padding-top: 76px;
    }
}

@media (max-width: 768px) {
    .sobre-page-title {
        font-size: 26px;
    }

    .sobre-text h2 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .sobre-features {
        grid-template-columns: 1fr;
    }

    .sobre-page-title {
        font-size: 22px;
    }

    .btn-whatsapp-sobre {
        padding: 12px 24px;
        font-size: 15px;
    }
}