/* ── SOBRE (intro) ── */
.about-section {
    background: var(--navy-dark);
}

.about-title {
    margin-bottom: 70px;
    /* igual ao .section-header em inicio.css */
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.45fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Coluna 1 — texto */
.about-text p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 24px;
}

.about-text p:last-child {
    margin-bottom: 0;
}


/* Coluna 2 — imagem + selo de vídeo (esquema "bloco atrás") */
.about-media {
    position: relative;
    padding: 0px 0 64px 32px;
    /* topo / direita / base(selo) / esquerda */
}

.about-media-block {
    position: absolute;
    inset: 0;
    background: var(--cyan);
    z-index: 0;
    border-radius: 4px;
}

.about-media-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4 / 5;
    background: var(--navy-mid);
}

.about-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    filter: grayscale(100%);
    transition: .6s;
}

.about-media:hover img {

    transform: scale(1.06);

}

.about-video-badge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 64px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 32px;
    color: var(--navy-dark);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: gap 0.2s ease;
}

.about-video-badge:hover {
    gap: 14px;
}

.about-video-badge .play-icon {
    font-size: 12px;
}

@media (max-width: 768px) {
    .about-media {
        padding: 24px 0 56px 24px;
    }

    .about-video-badge {
        height: 56px;
        padding-left: 24px;
    }

    .about-media-frame {
        aspect-ratio: 4 / 3;
    }
}

/* Coluna 3 — diferenciais */
.about-features {
    list-style: none;
}

.about-features li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 40px;
}

.about-features li:last-child {
    margin-bottom: 0;
}



.about-features h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.about-features p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
}

/* ── SOBRE (empresa) — específicos que faltavam ── */
.sobre-eyebrow::before {
    content: 'Sobre nós';
}

.sobre-title {
    font-size: clamp(36px, 4vw, 52px);
    margin-top: 14px;
    margin-bottom: 8px;
}

.sobre-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.sobre-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 16px;
}

.sobre-text:last-of-type {
    margin-bottom: 0;
}

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

.sobre-img-wrap {
    position: relative;
}

.sobre-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.sobre-stats-box {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: var(--navy-dark);
    border: 1px solid var(--border-subtle);
    display: flex;
    flex-direction: column;
    padding: 24px 32px;
}

.sobre-stat {
    margin-bottom: 20px;
}

.sobre-stat:last-child {
    margin-bottom: 0;
}

.sobre-stat-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.sobre-stat-val {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
}

/* ── RESPONSIVO — mesmos breakpoints do navbar.css/inicio.css ── */
@media (max-width: 1024px) {
    .about-title {
        margin-bottom: 50px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sobre-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-title {
        margin-bottom: 40px;
    }

    .about-media-frame {
        aspect-ratio: 16 / 10;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sobre-title {
        font-size: clamp(28px, 8vw, 38px);
    }

    .sobre-img {
        height: 260px;
    }

    .sobre-stats-box {
        position: static;
        width: 100%;
        margin-top: 2px;
        flex-direction: row;
        gap: 32px;
        padding: 20px 24px;
    }

    .sobre-stat {
        margin-bottom: 0;
    }
}

@media (max-width: 400px) {
    .sobre-stats-box {
        flex-direction: column;
        gap: 16px;
    }
}

/* Indicadores */

.about-stats {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 16px;

    margin-top: 40px;

}

.stat-card {

    padding: 22px;

    background: #152339;

    border: 1px solid rgba(255, 255, 255, .05);

    border-radius: 8px;

}

.stat-card span {

    display: block;

    font-size: 42px;

    font-family: 'Barlow Condensed';

    font-weight: 800;

    color: var(--cyan);

}

.stat-card small {

    color: #b8c3d1;

    font-size: 13px;

}

.about-features {

    display: flex;

    flex-direction: column;

    gap: 22px;

}

.feature-card {
    padding: 26px;
    border: 1px solid rgba(255, 255, 255, .06);
    background: #142135;
    border-radius: 10px;
    transition: .35s;
    position:relative;
    overflow:hidden;

}

.feature-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:4px;
    height:100%;
    background:var(--cyan);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
}

.feature-card h3 {

    margin: 12px 0;

}

.feature-card p {

    margin: 0;

}

.section-tag{
    display: inline-block;
    margin-bottom: 24px; /* espaço entre QUEM SOMOS e o texto */
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cyan{
    color: var(--cyan);
}

/* Vídeo */
/* ===== Modal ===== */

.video-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.85);

    display:flex;

    align-items:center;

    justify-content:center;

    opacity:0;

    visibility:hidden;

    transition:.3s;

    z-index:9999;

}

.video-modal.active{

    opacity:1;

    visibility:visible;

}

.video-modal-content{

    position:relative;

    width:min(90%,1000px);

    aspect-ratio:16/9;

}

.video-modal iframe{

    width:100%;

    height:100%;

    border:none;

    border-radius:8px;

}

.video-close{

    position:absolute;

    top:-45px;

    right:0;

    width:38px;

    height:38px;

    border:none;

    border-radius:50%;

    background:white;

    color:#000;

    cursor:pointer;

    font-size:26px;

    line-height:38px;

    transition:.2s;

}

.video-close:hover{

    transform:scale(1.1);

}