/* ═══════════════════════════════════════════════════════════
   Ammoria — Trust Bar Shortcode
   Franja horizontal de confianza (4 elementos)
   ═══════════════════════════════════════════════════════════ */

/* Franja de ancho completo (fondo rosa claro) */
.atb {
    background: #fbeeee;
    width: 100%;
}

/* Grupo centrado con 4 columnas iguales */
.atb-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
    padding: 28px 24px;
}

/* Columna individual (todo centrado) */
.atb-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

/* Separador vertical entre columnas (~60% de alto) */
.atb-item + .atb-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: #e6c4c9;
}

/* Ícono */
.atb-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    line-height: 0;
}

.atb-item__icon img {
    width: 34px;
    height: 34px;
}

/* Título */
.atb-item__title {
    margin: 0 0 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6b2737;
    line-height: 1.3;
}

/* Descripción */
.atb-item__desc {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #8a6a72;
    line-height: 1.4;
    max-width: 240px;
}

/* ═══════════════════════════════════════════════════════════
   Responsive
   ═══════════════════════════════════════════════════════════ */

/* Tablet: 2 columnas × 2 filas */
@media (max-width: 768px) {
    .atb-bar {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px;
    }

    /* El 3er elemento inicia una fila nueva: quitar su separador */
    .atb-item:nth-child(3)::before {
        display: none;
    }
}

/* Móvil: 1 columna, sin separadores verticales */
@media (max-width: 480px) {
    .atb-bar {
        grid-template-columns: 1fr;
        row-gap: 20px;
    }

    .atb-item + .atb-item::before {
        display: none;
    }
}
