/* ==========================================================================
   QUEM SOMOS - STYLESHEET
   ========================================================================== */

/* Globals & Animations */
:root {
    --qs-wine: #4A1A2C;
    --qs-wine-dark: #2A0E18;
    --qs-gold: #D4AF37;
    --qs-gold-light: #F3E5AB;
    --qs-dark: #121212;
    --qs-text: rgba(255, 255, 255, 0.72);
}

.qs-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.qs-reveal.qs-visible {
    opacity: 1;
    transform: translateY(0);
}

.qs-stagger-1 {
    transition-delay: 100ms;
}

.qs-stagger-2 {
    transition-delay: 200ms;
}

.qs-stagger-3 {
    transition-delay: 300ms;
}

.qs-stagger-4 {
    transition-delay: 400ms;
}

.qs-stagger-5 {
    transition-delay: 500ms;
}

.qs-stagger-6 {
    transition-delay: 600ms;
}

.qs-stagger-7 {
    transition-delay: 700ms;
}

.qs-stagger-8 {
    transition-delay: 800ms;
}

/* 1. HERO SECTION (NOVA 2 COLUNAS) */
.qs-hero2 {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background-color: #1A0909;
    overflow: hidden;
    padding-top: 120px;
    padding-bottom: 60px;
}

.qs-hero2-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(90deg, rgba(22, 7, 7, 1) 0%, rgba(35, 8, 8, 0.94) 38%, rgba(35, 8, 8, 0.55) 68%, rgba(35, 8, 8, 0.10) 100%),
        url('../images/gallery/background-pagina-quem-somos-papai-noel-na-poltrona-criaacao-entretenimento.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 1;
}

.qs-container-1400 {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.qs-hero2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.qs-hero2-content {
    display: flex;
    flex-direction: column;
}

.qs-eyebrow {
    color: #D4A74C;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.qs-eyebrow::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: #D4A74C;
    box-shadow: 0 0 10px rgba(212, 167, 76, 0.6);
}

.qs-hero2-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(32px, 5vw, 64px);
    line-height: 1.05;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.qs-hero2-title span {
    color: #D4A74C;
}

.qs-hero2-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    margin-bottom: 40px;
}

.qs-hero2-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.qs-btn2-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #D4A74C;
    color: #1A0909;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qs-btn2-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 167, 76, 0.3);
    background: #F3E5AB;
}

/* Indicators */
.qs-indicators {
    background: rgba(48, 18, 18, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 167, 76, 0.25);
    border-radius: 28px;
    padding: 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 20px;
}

.qs-indicator-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qs-indicator-icon {
    color: #D4A74C;
}

.qs-indicator-title {
    color: #FFFFFF;
    font-weight: 800;
    font-size: 24px;
    line-height: 1.1;
}

.qs-indicator-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .qs-hero2-bg {
        background-image:
            linear-gradient(to bottom, rgba(22, 7, 7, 0.2) 0%, rgba(35, 8, 8, 0.2) 50%, rgba(35, 8, 8, 0) 100%),
            url('../images/gallery/mobile-background-pagina-quem-somos-papai-noel-na-poltrona-criaacao-entretenimento.png');
        background-position: center top;
    }

    .qs-hero2-grid {
        grid-template-columns: 1fr;
    }

    .qs-indicators {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
    }

    .qs-hero2-buttons {
        flex-direction: column;
    }

    .qs-btn2-primary {
        width: 100%;
    }
}

/* 2. NOSSA HISTÓRIA */
.qs-section {
    padding: 100px 20px;
    background-color: var(--qs-wine-dark);
}

.qs-section-alt {
    background-color: #1a0810;
}

.qs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.qs-title {
    color: var(--qs-gold);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 15px;
}

.qs-heading {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 30px;
}

.qs-text {
    color: var(--qs-text);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Timeline */
/* 2. NOSSA HISTÓRIA - TIMELINE PREMIUM */
.qs-timeline {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 40px 0;
}

.qs-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(212, 167, 76, 0.3);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(212, 167, 76, 0.4);
}

.qs-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}

.qs-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}

.qs-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}

.qs-timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot */
.qs-timeline-dot {
    position: absolute;
    top: 40px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D4A74C;
    box-shadow: 0 0 15px #D4A74C, 0 0 0 6px rgba(212, 167, 76, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.qs-timeline-item:nth-child(odd) .qs-timeline-dot {
    right: -10px;
}

.qs-timeline-item:nth-child(even) .qs-timeline-dot {
    left: -10px;
}

.qs-timeline-item:hover .qs-timeline-dot {
    transform: scale(1.3);
    box-shadow: 0 0 25px #D4A74C, 0 0 0 8px rgba(212, 167, 76, 0.3);
}

/* Timeline Card */
.qs-timeline-card {
    background: rgba(48, 18, 18, 0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 167, 76, 0.25);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.qs-timeline-item:nth-child(odd) .qs-timeline-card {
    align-items: flex-end;
}

.qs-timeline-item:nth-child(even) .qs-timeline-card {
    align-items: flex-start;
}

.qs-timeline-item:hover .qs-timeline-card {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 15px rgba(212, 167, 76, 0.15);
}

.qs-timeline-year {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 3rem;
    color: #D4A74C;
    line-height: 1;
}

.qs-timeline-title {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.qs-timeline-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.6;
}

.qs-timeline-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.qs-visible.slide-in-left,
.qs-visible.slide-in-right {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .qs-timeline::before {
        left: 20px;
    }

    .qs-timeline-item {
        width: 100%;
        padding: 0 0 0 50px;
    }

    .qs-timeline-item:nth-child(odd),
    .qs-timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }

    .qs-timeline-item:nth-child(odd) .qs-timeline-dot,
    .qs-timeline-item:nth-child(even) .qs-timeline-dot {
        left: 10px;
        right: auto;
    }

    .qs-timeline-item:nth-child(odd) .qs-timeline-card,
    .qs-timeline-item:nth-child(even) .qs-timeline-card {
        align-items: flex-start;
        padding: 30px 20px;
    }

    .slide-in-left,
    .slide-in-right {
        transform: translateY(30px);
    }

    .qs-visible.slide-in-left,
    .qs-visible.slide-in-right {
        transform: translateY(0);
    }
}

/* 3. NOSSOS NÚMEROS - PREMIUM PARALLAX */
.qs-numbers-parallax {
    position: relative;
    background-image: linear-gradient(to bottom, rgba(26, 9, 9, 0.92), rgba(26, 9, 9, 0.85)), url('../images/gallery/papai-noel-shopping-rio-mar-fortaleza-criaacao-entretenimento.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.qs-numbers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.qs-number-card {
    background: rgba(48, 18, 18, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(212, 167, 76, 0.2);
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.qs-number-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 167, 76, 0.5);
    background: rgba(48, 18, 18, 0.6);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 167, 76, 0.1);
}

.qs-number-icon {
    color: #D4A74C;
    margin-bottom: 20px;
    opacity: 0.9;
}

.qs-number-value {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #D4A74C;
    margin-bottom: 15px;
    line-height: 1;
    text-shadow: 0 0 20px rgba(212, 167, 76, 0.4);
}

.qs-number-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .qs-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .qs-numbers-grid {
        grid-template-columns: 1fr;
    }

    .qs-numbers-parallax {
        background-attachment: scroll;
    }
}

/* 4. NOSSO PROPÓSITO PREMIUM */
.qs-purpose {
    padding: 120px 0;
    overflow: hidden;
}

.qs-purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qs-purpose-content {
    padding-right: 40px;
}

.qs-purpose-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    color: #fff;
    padding-left: 30px;
    border-left: 4px solid #D4A74C;
}

.qs-purpose-quote span {
    color: #D4A74C;
}

.qs-purpose-text {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
}

.qs-purpose-text strong {
    color: #D4A74C;
    font-weight: 600;
}

/* Image Collage */
.qs-purpose-images {
    position: relative;
    height: 600px;
}

.qs-purpose-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(212, 167, 76, 0.3);
    z-index: 1;
}

.qs-purpose-img-float {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 167, 76, 0.15);
    border: 2px solid rgba(212, 167, 76, 0.6);
    z-index: 2;
}

@media (max-width: 991px) {
    .qs-purpose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .qs-purpose-content {
        padding-right: 0;
    }

    .qs-purpose-images {
        height: 500px;
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .qs-purpose-images {
        height: 400px;
    }

    .qs-purpose-img-main {
        width: 90%;
        height: 75%;
    }

    .qs-purpose-img-float {
        width: 65%;
        height: 50%;
    }
}

/* 5. MISSÃO, VISÃO E VALORES */
.qs-mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.qs-mvv-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.qs-mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--qs-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.qs-mvv-card:hover::before {
    transform: scaleX(1);
}

.qs-mvv-title {
    color: var(--qs-gold);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.qs-mvv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qs-mvv-list li {
    background: rgba(212, 175, 55, 0.1);
    color: var(--qs-gold-light);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.qs-mvv-list li:hover {
    background: var(--qs-gold);
    color: var(--qs-dark);
}

/* 6. DIFERENCIAIS */
.qs-diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.qs-diff-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.qs-diff-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
}

.qs-diff-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    color: var(--qs-gold);
    flex-shrink: 0;
}

.qs-diff-text {
    color: #fff;
    font-weight: 500;
}

/* 7. QUEM CONFIA */
.qs-trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.qs-trust-tag {
    padding: 15px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: default;
}

.qs-trust-tag:hover {
    background: var(--qs-gold);
    color: var(--qs-dark);
    border-color: var(--qs-gold);
    transform: translateY(-5px);
}

/* 8. NOSSA ESTRUTURA */
.qs-struct-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.qs-struct-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.qs-struct-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.qs-struct-card:hover img {
    transform: scale(1.1);
}

.qs-struct-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.qs-struct-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
}

/* 9. ENCERRAMENTO */
.qs-cta {
    background: linear-gradient(135deg, var(--qs-wine-dark) 0%, var(--qs-wine) 100%);
    text-align: center;
    padding: 120px 20px;
}

.qs-cta-title {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 900px;
    margin: 0 auto 20px;
}

.qs-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.qs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.qs-btn-primary {
    background: var(--qs-gold);
    color: var(--qs-dark);
}

.qs-btn-primary:hover {
    background: var(--qs-gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.qs-btn-outline {
    border: 2px solid var(--qs-gold);
    color: var(--qs-gold);
}

.qs-btn-outline:hover {
    background: var(--qs-gold);
    color: var(--qs-dark);
}