/* Quem Somos V2 - Corporate Readability and Premium Aesthetic */

/* Base & Typography */
:root {
    --primary-color: #3b82f6;
    --primary-hover: #2563eb;
    --dark-bg: #0f172a;
    --dark-card: #1e293b;
    --text-muted: #94a3b8;
    --text-light: #f8fafc;
    --border-color: #334155;
}

body.header-sticky {
    font-family: 'Inter', sans-serif !important;
}

/* Typography Overrides for V2 Sections */
.qs2-hero-title, .qs2-section-title, .qs2-subtitle {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.5px;
}

/* Hero Section V2 (Dark Premium) */
.qs2-hero {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.5) 100%), url('../images/parallax/03.jpg') no-repeat center center/cover;
    padding: 130px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.qs2-hero-breadcrumbs {
    display: inline-flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 25px;
}

.qs2-hero-breadcrumbs a, .qs2-hero-breadcrumbs span {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qs2-hero-breadcrumbs a:hover {
    color: #fff;
}

.qs2-hero-title {
    color: #fff;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #FFFFFF 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Split Layout: Nossa História */
.qs2-story-section {
    padding: 100px 0;
    background: #f8fafc;
}

.qs2-story-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.qs2-story-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.5s ease;
}

.qs2-story-image:hover img {
    transform: scale(1.05);
}

.qs2-story-content {
    padding-left: 50px;
}

@media (max-width: 991px) {
    .qs2-story-content {
        padding-left: 15px;
        margin-top: 40px;
    }
    .qs2-hero-title { font-size: 40px; }
}

.qs2-section-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.qs2-story-text {
    font-size: 16px;
    line-height: 1.8;
    color: #475569;
}

.qs2-story-text p {
    margin-bottom: 12px;
}

.qs2-story-text p:first-child {
    font-size: 18px;
    font-weight: 500;
    color: #334155;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

/* Custom Bullet Points */
.qs2-bullet {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 8px;
    margin-bottom: 12px;
    font-size: 15px;
    color: #334155;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease;
}

.qs2-bullet:hover {
    transform: translateX(5px);
    border-color: #cbd5e1;
}

.qs2-bullet i {
    color: #10b981; /* Emerald green */
    font-size: 18px;
    min-width: 25px;
}

/* Corporate Pillars Sections */
.qs2-pillars-section {
    background: #ffffff;
    padding: 100px 0 70px;
}

.qs2-pillar-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.qs2-pillar-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
    border-color: #bfdbfe;
}

.qs2-icon-circle {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.qs2-icon-circle i {
    font-size: 24px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.qs2-pillar-card:hover .qs2-icon-circle {
    background: var(--primary-color);
}

.qs2-pillar-card:hover .qs2-icon-circle i {
    color: #fff;
}

.qs2-pillar-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.qs2-pillar-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
    flex-grow: 1;
}

/* Testimonials V2 */
.qs2-testimonials-section {
    background: #f8fafc;
    padding: 100px 0;
}

.qs2-testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    position: relative;
    margin-bottom: 30px;
    border-top: 4px solid var(--primary-color);
    height: 100%;
}

.qs2-testimonial-card i.quote {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 40px;
    color: #f1f5f9;
}

.qs2-testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    font-style: italic;
    color: #475569;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.qs2-testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    position: relative;
    z-index: 2;
}

.qs2-testimonial-author h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 5px;
}

.qs2-testimonial-author p {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Utilities */
.text-center { text-align: center; }
.mb-5 { margin-bottom: 50px !important; }
.row-flex { display: flex; flex-wrap: wrap; }

/* --- Stats Section V2 (Glassmorphism Counters) --- */
.qs2-stats-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Subtle background glow effect */
.qs2-stats-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.15) 0%, transparent 70%);
    z-index: 1;
}

.qs2-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.qs2-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qs2-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-10px);
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.qs2-stat-icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #22d3ee 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.3));
}

.qs2-stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1;
    font-family: 'Outfit', sans-serif;
}

.qs2-stat-number .suffix {
    font-size: 1.8rem;
    margin-left: 2px;
    color: #3b82f6;
}

.qs2-stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 700;
    line-height: 1.4;
}

@media (max-width: 991px) {
    .qs2-stat-number { font-size: 3rem; }
}

@media (max-width: 768px) {
    .qs2-stats-section { padding: 60px 0; }
    .qs2-stat-card { padding: 35px 20px; }
    .qs2-stat-number { font-size: 2.5rem; }
}

