/* ==========================================================
   SOBRE
========================================================== */

.sobre{
    background:linear-gradient(to bottom,#f4f6fb,#ffffff);
    padding:60px 0;
}

/* ==========================================================
   TÍTULO
========================================================== */

.sobre-titulo{
    font-weight:800;
    color:#2c2c2c;
}

.sobre-subtitulo{
    color:#666;
}

.section-title{
    font-size:2rem;
    font-weight:700;
    position:relative;
    display:inline-block;
}

/* ==========================================================
   HERO
========================================================== */

.sobre-img{
    text-align:center;
}

.sobre-img img{
    width:100%;
    max-width:700px;
    height:auto;
    padding:14px;
    border-radius:16px;
    background:#fff;
    box-shadow:0 12px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.sobre-img img:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0,0,0,.18);
}

.sobre-texto p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

/* ==========================================================
   ESTATÍSTICAS
========================================================== */

.estatisticas-loja {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0 10px;
}

.estatistica-card {
    flex: 1 1 150px;
    max-width: 200px;
    padding: 20px 15px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    background: linear-gradient(145deg, #2b2d42, #1e1f2e);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: default;
    position: relative;
    overflow: hidden;
}

/* Efeito de brilho ao passar o mouse */
.estatistica-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.estatistica-card:hover::after {
    opacity: 1;
}

.estatistica-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Cores personalizadas */
.estatistica-card.bg-primary {
    background: linear-gradient(135deg, #0077b6, #00b4d8);
}

.estatistica-card.bg-success {
    background: linear-gradient(135deg, #2a9d8f, #52b788);
}

.estatistica-card.bg-warning {
    background: linear-gradient(135deg, #e9c46a, #f4a261);
    color: #1e1f2e;
}

/* Número */
.estatistica-card .numero {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    display: block;
}

/* Texto */
.estatistica-card .texto {
    margin-top: 8px;
    font-size: 1rem;
    font-weight: 600;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ícone opcional (pode adicionar via pseudo-elemento ou HTML) */
.estatistica-card .icone {
    font-size: 2rem;
    display: block;
    margin-bottom: 6px;
}
/*video no youtub*/
.video-thumb{
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 15px;
    height: 250px;

    /* NOVO */
    background: #000;
}

.video-thumb img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumb iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
    background:#000;
}

.play-btn{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(255,0,0,.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    transition: .3s;
}

.video-thumb:hover .play-btn{
    transform: translate(-50%, -50%) scale(1.1);
}

/* Responsividade */
@media (max-width: 600px) {
    .estatistica-card {
        flex: 1 1 120px;
        padding: 15px 10px;
    }
    .estatistica-card .numero {
        font-size: 2rem;
    }
    .estatistica-card .texto {
        font-size: 0.85rem;
    }
}

/* ==========================================================
   GALERIA
========================================================== */

.galeria-container{
    margin-top:10px;
}

.galeria-card{
    border:none;
    border-radius:18px;
    overflow:hidden;
    background:#fff;
    transition:.35s;
}

.galeria-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.15)!important;
}

.galeria-card img{
    transition:.35s;
}

.galeria-card:hover img{
    transform:scale(1.06);
}

.galeria-card .card-body{
    padding:16px;
    text-align:center;
    background:#fff;
}

.galeria-titulo{
    font-size:16px;
    font-weight:700;
    color:#1f3c88;
    margin-bottom:18px;
    line-height:1.4;
}

/* ==========================================================
   BOTÕES
========================================================== */

.btn-produto{
    display:inline-block;
    margin-top:auto;

    padding:8px 22px;

    background:linear-gradient(135deg,#3470F3,#2458d6);
    color:#fff;

    border:2px solid #d6d6d6;
    border-radius:9px;

    font-size:14px;
    font-weight:700;
    text-decoration:none;
    white-space:nowrap;
    cursor:pointer;

    transition:.3s;
}

.btn-produto:hover{
    background:linear-gradient(135deg,#4a83ff,#2b61e2);
    color:#fff;
    transform:translateY(-2px);
    box-shadow:0 8px 18px rgba(52,112,243,.25);
}

.btn-produto i{
    margin-right:6px;
}

/* ==========================================================
   VÍDEOS
========================================================== */

/* ==========================================================
   VÍDEOS
========================================================== */

.video-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e8e8e8;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.video-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

.video-container{
    width:100%;
    height:380px; /* ajuste como quiser */
    overflow:hidden;
    border-radius:15px;
}

.video-container iframe{
    width:100%;
    height:100%;
    border:0;
}



.video-info{
    padding:18px;
}

.video-info h5{
    font-size:20px;
    font-weight:700;
    color:#222;
    margin-bottom:10px;
}

.video-info p{
    color:#666;
    font-size:15px;
    line-height:1.7;
    margin-bottom:0;
}

/* ==========================================================
   MISSÃO • VISÃO • VALORES
========================================================== */

.sobre-card{
    background:#f8f9fa;
    border-radius:18px;
    transition:.3s;
}

.sobre-card:hover{
    transform:translateY(-6px);
    box-shadow:0 12px 30px rgba(0,0,0,.12)!important;
}

.sobre-card i{
    font-size:42px;
    margin-bottom:15px;
}

.sobre-card h4{
    font-weight:700;
    margin-bottom:12px;
}

.sobre-card p{
    color:#666;
    line-height:1.7;
    margin-bottom:0;
}

/* ==========================================================
   DIFERENCIAIS
========================================================== */

.sobre-diferenciais{
    background:#fff;
      margin-top:70px;
}

.diferencial-card{
    background:#f8f9fa;
    border:1px solid #e9ecef;
    border-radius:16px;
    padding:25px 20px;
    text-align:center;
    height:100%;
    transition:.3s;
}

.diferencial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,.12);
}

.diferencial-card i{
    font-size:40px;
    margin-bottom:15px;
}

.diferencial-card h5{
    color:#222;
    font-size:1rem;
    font-weight:700;
    margin-bottom:10px;
}

.diferencial-card p{
    color:#666;
    font-size:14px;
    line-height:1.6;
    margin-bottom:0;
}

.diferenciais-row{
    row-gap:40px;      /* espaço entre a primeira e segunda linha */
    margin-top:40px;
}
/*----------------------------*/
.video-loading{
    position:absolute;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.35);
    z-index:10;
}
/*----------------------------*/

/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width:992px){

    .sobre-img{
        margin-bottom:30px;
    }

    .estatisticas-loja{
        justify-content:center;
    }

}

@media (max-width:768px){

    .section-title{
        font-size:1.7rem;
    }

    .estatisticas-loja{
        gap:15px;
    }

    .estatistica-card{
        width:100%;
        max-width:280px;
    }

    .diferencial-card{
        padding:20px 15px;
    }

    .diferencial-card i{
        font-size:34px;
    }

    .galeria-card{
        margin-bottom:10px;
    }

}

@media (max-width:576px){

    .sobre{
        padding:40px 0;
    }

    .sobre-img img{
        max-width:300px;
    }

    .btn-produto{
        width:100%;
    }

}