/* ===================================
   LAYOUT SEÇÃO CONFIANÇA & RECONHECIMENTO
   Desktop: Selo ao lado do texto (horizontal)
   Mobile: Selo acima do texto (vertical)
   =================================== */

/* Container principal */
.reconhecimentos-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Item individual (selo + texto) */
.reconhecimento-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    width: 100%;
    padding: 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reconhecimento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Container do selo */
.reconhecimento-item .selo-item {
    flex: 0 0 auto;
    min-width: 280px;
    max-width: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reconhecimento-item .selo-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.reconhecimento-item .selo-item a {
    display: block;
    width: 100%;
}

/* Container do texto */
.reconhecimento-item .reconhecimento-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.reconhecimento-item .reconhecimento-text p {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #2c5f4f;
    position: relative;
    padding-left: 2rem;
}

/* Ícone de check verde */
.reconhecimento-item .reconhecimento-text p::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #7cb342;
    font-weight: bold;
    font-size: 1.5rem;
}

.reconhecimento-item .reconhecimento-text strong {
    font-weight: 600;
    color: #1a4435;
}

/* ===================================
   RESPONSIVO - TABLET (max-width: 992px)
   =================================== */
@media (max-width: 992px) {
    .reconhecimentos-content {
        gap: 2.5rem;
    }
    
    .reconhecimento-item {
        gap: 2rem;
        padding: 1.25rem;
    }
    
    .reconhecimento-item .selo-item {
        min-width: 220px;
        max-width: 280px;
    }
    
    .reconhecimento-item .reconhecimento-text p {
        font-size: 1.05rem;
    }
}

/* ===================================
   RESPONSIVO - MOBILE (max-width: 768px)
   =================================== */
@media (max-width: 768px) {
    .reconhecimentos-content {
        gap: 2rem;
    }
    
    /* Layout vertical no mobile */
    .reconhecimento-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem 1rem;
    }
    
    .reconhecimento-item .selo-item {
        min-width: 250px;
        max-width: 300px;
    }
    
    .reconhecimento-item .reconhecimento-text {
        align-items: center;
    }
    
    .reconhecimento-item .reconhecimento-text p {
        font-size: 1rem;
        text-align: center;
        padding-left: 0;
        padding-top: 2rem;
    }
    
    /* Centralizar check no mobile */
    .reconhecimento-item .reconhecimento-text p::before {
        left: 50%;
        transform: translateX(-50%);
        top: -0.5rem;
    }
}

/* ===================================
   RESPONSIVO - MOBILE PEQUENO (max-width: 480px)
   =================================== */
@media (max-width: 480px) {
    .reconhecimentos-content {
        gap: 1.5rem;
    }
    
    .reconhecimento-item {
        gap: 1rem;
        padding: 1.25rem 0.75rem;
    }
    
    .reconhecimento-item .selo-item {
        min-width: 200px;
        max-width: 250px;
    }
    
    .reconhecimento-item .reconhecimento-text p {
        font-size: 0.95rem;
    }
}
