/* ========================================
   Sobre JZDS Page Styles
   ======================================== */

/* Hero Sobre */
.about-hero-jzds {
    padding: 120px 20px;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: transparent;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-text {
    flex: 1.2;
}

.about-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 14px;
    display: block;
    margin-bottom: 20px;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--jz-white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 5px;
}

.about-visual {
    flex: 0.8;
    position: relative;
}

.visual-frame {
    width: 100%;
    aspect-ratio: 1/1;
    background: var(--jz-glass);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.border-lime {
    border-color: rgba(221, 255, 25, 0.2);
}

.visual-placeholder {
    font-weight: 900;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.05);
    font-size: 2rem;
}

.visual-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--jz-teal);
    filter: blur(100px);
    opacity: 0.2;
    bottom: -50px;
    right: -50px;
}

/* Pilares Section */
.pillars-section {
    padding: 80px 20px;
    background: transparent;
}

.pillars-container {
    max-width: 1200px;
    margin: 0 auto;
}

.pillars-header {
    text-align: center;
    margin-bottom: 60px;
}

.pillars-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--jz-white);
    font-weight: 900;
    margin-bottom: 20px;
}

.pillars-subtitle {
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    background: var(--jz-glass);
    padding: 50px 40px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card:hover {
    transform: translateY(-10px);
    background: var(--jz-glass-light);
}

.border-teal:hover {
    border-color: var(--jz-teal);
}

.border-lime:hover {
    border-color: var(--jz-lime);
}

.pillar-icon {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    opacity: 0.8;
}

.pillar-card h3 {
    color: var(--jz-white);
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.pillar-card p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 1rem;
}

/* CTA Sobre */
.about-cta-jzds {
    padding: 100px 20px;
    background: transparent;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-cta-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.about-cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 350px;
    background: radial-gradient(circle, rgba(3, 180, 178, 0.12) 0%, rgba(221, 255, 25, 0.04) 100%);
    filter: blur(100px);
    z-index: -1;
}

.about-cta-eyebrow {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 800;
    font-size: 13px;
    display: block;
    margin-bottom: 20px;
}

.about-cta-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: var(--jz-white);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
}

.about-cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.about-cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.jz-btn {
    text-decoration: none;
    padding: 18px 38px;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
}

.btn-lime-full {
    background: var(--jz-lime);
    color: var(--jz-black);
}

.btn-lime-full:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(221, 255, 25, 0.3);
    background: var(--jz-white);
}

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

.btn-teal-outline:hover {
    transform: translateY(-8px);
    background: var(--jz-teal);
    color: var(--jz-white);
    box-shadow: 0 15px 30px rgba(3, 180, 178, 0.3);
}

.about-cta-availability {
    margin-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
    .about-flex {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .about-stats {
        justify-content: center;
    }

    .visual-frame {
        max-width: 400px;
        margin: 0 auto;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .about-cta-actions {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .jz-btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }
}
